In Swift 6.2 the compiler complains about statements like this
static let commands: [ParsableCommand.Type] = [ ... ]
It believes them to be unsafe, because the metadata type ParsableCommand.Type is no longer assumed to be Sendable. Would be possible to make ParsableArguments inherit from SendableMetatype? This way the warning will be gone.