advise
01Command Claude Code
Principal-architect intake — frame a feature's architecture (seams, future-proofing) and seed its implementation plan before planning.
6 tagged mud, measured the same way as everything else here.
Browse within: csharp 6mud-server 6rpg 6text-based-game 6text-game 6
Command Claude Code
Principal-architect intake — frame a feature's architecture (seams, future-proofing) and seed its implementation plan before planning.
Command
The command framework sits between the session transport and the domain layer. A raw input line in → a resolved, authorized, argument-parsed command execution out. No command body ever calls session.SendLineAsync or branches on verb strings — INV-11.
Command
Every interaction a player or admin can make with the game world is a command. A player types look, kill goblin, or cast mend; the framework routes that string through a deterministic pipeline and invokes the right ICommand implementation. Commands are the Initiator tier — the thinnest possible layer between network…