Formax slash command workflow
Goal
Use this skill when changing slash command discovery, dispatch, overlay dismissal output, or next-turn injection behavior.
Read First
docs/contracts/slash-command-contract.mddocs/contracts/semantics-contract.mdwhen command behavior crosses canonical UI messages or routingdocs/contracts/config-settings-contract.mdwhen the change touches/config
These docs are canonical. If stable behavior changes, update them before or with code.
Code Map
1) Command discovery + dispatch
packages/core/src/features/commands/registry.ts: command list/suggest/dispatch wiringpackages/core/src/features/commands/CommandStore.ts: disk scanning + precedence (project overrides user)packages/core/src/features/semantics/core/commandRouting.ts: exact/clear//compactand command-dispatch routing boundary
2) Command result contract (UI vs model)
packages/core/src/features/commands/contracts.ts:UiEffect/UiMessage/ModelEffectshapespackages/core/src/features/commands/adapter.ts: maps command execution output →CommandResultpackages/core/src/features/repl/controller/send/send.ts: consumed slash handling,local_async, and injected-block plumbing
3) Overlay dismissal “subline output”
packages/core/src/features/repl/controller/ui/overlays.ts: overlay open/close + append “dismissed” sublines
4) REPL message plumbing + rendering
packages/core/src/features/repl/controller/send/send.ts: appliesUiEffect.appendMessagestoMsgpackages/core/src/screens/REPL.tsx: rendermsg.ui.kind === 'command_subline'as⎿ ...(no⏺)packages/core/src/screens/REPL.slashSuggestions.test.tsx: duplicate command selection /preferredSlashSpecId
High-Signal Patterns
- Pattern A: one-line overlay dismissal
- append a single assistant
Msgwithui.kind='command_subline' - keep copy stable unless the user explicitly requests copy changes
- append a single assistant
- Pattern B: multi-line local output
- split output into multiple
command_sublinerows - this is UI only; model injection remains separately controlled
- split output into multiple
- Pattern C: inject-but-don't-spam
- when a command needs to inform the model, keep UI output minimal and preserve
recordForNextTurn/ injected-block behavior separately
- when a command needs to inform the model, keep UI output minimal and preserve
Minimal Workflow
- Classify the change first: discovery / precedence, local UI output, next-turn injection, or overlay dismiss behavior.
- Update the slash command contract first.
- Preserve “show in UI” vs “inject into model context” as separate concerns; local output alone must not imply injection.
- Use
command_sublinefor Claude-style sublines; do not invent new message shapes. - Run the minimum regression set below before review.
Minimum Regression
bun run test -- packages/core/src/features/commands/registry.test.ts packages/core/src/features/commands/CommandStore.test.ts packages/core/src/features/commands/adapter.test.ts packages/core/src/features/commands/contracts.test.tsbun run test -- packages/core/src/features/repl/controller/ui/overlays.test.tsxbun run test -- packages/core/src/features/repl/controller/send/send.test.ts packages/core/src/features/repl/useReplController.test.tsxbun run test -- packages/core/src/screens/REPL.slashSuggestions.test.tsx packages/core/src/screens/repl/inputHint.test.tsbun run type-checkwhen command shapes or routing plumbing changes
Guardrails
- Do not add bespoke
commandSubLines-style structures; useMsg.ui.kind='command_subline'. - Do not change UI copy / spacing / colors as a side-effect of routing changes.
- Do not patch only overlay output if the real bug is discovery or dispatch precedence.
- If behavior is unclear, add or extend an Ink test first; tests are not the only spec, but they should lock the visible key path.