What problem does it solve?
This Skill helps diagnose why Titan TUI slash commands fail to appear in autocomplete or behave inconsistently across the Python command registry, the TUI gateway, and the Ink/TypeScript frontend.
Core Features & Use Cases
- Cross-layer command tracing: Identify mismatches between the canonical
COMMAND_REGISTRY in Titan_cli/commands.py, gateway dispatch in tui_gateway/, and UI handlers in ui-tui/src/app/slash/.
- Autocomplete repair: Ensure the command is registered with the correct canonical name, description, args hint, and subcommands so TUI suggestions match backend definitions.
- Live UI behavior fixes: Verify that config persistence updates the correct nanostore/UI state immediately, preventing “saved but not applied” scenarios in the TUI.
- End-to-end validation: Rebuild the UI and confirm behavior on
Titan --tui, and—when applicable—validate gateway behavior on a messaging platform or gateway tests.
Quick Start
Use debugging-Titan-tui-commands when a slash command works in the CLI but is missing in Titan TUI autocomplete or doesn’t dispatch correctly, then compare the Python registry entry with the corresponding TypeScript/gateway handlers.