advise
01Command Claude Code
Principal-architect intake — frame a feature's architecture (seams, future-proofing) and seed its implementation plan before planning.
Command Claude Code
Principal-architect intake — frame a feature's architecture (seams, future-proofing) and seed its implementation plan before planning.
Command Claude Code
Run an architecture review on the current branch's diff against master.
Command Claude Code
Turn a gameplay idea into a docs/implementation-plans/ file + build plan.
Command Claude Code
Requirements intake — flesh a high-level outcome into a grounded, detailed requirements outline before /advise and /new-plan.
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…