🛠️ Debugging Hermes Tui Commands
Hermesのテキストベースの操作画面(T
📺 まず動画で見る(YouTube)
▶ 【衝撃】最強のAIエージェント「Claude Code」の最新機能・使い方・プログラミングをAIで効率化する超実践術を解説! ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Debug Hermes TUI slash commands: Python, gateway, Ink UI.
🇯🇵 日本人クリエイター向け解説
Hermesのテキストベースの操作画面(T
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o debugging-hermes-tui-commands.zip https://jpskill.com/download/1244.zip && unzip -o debugging-hermes-tui-commands.zip && rm debugging-hermes-tui-commands.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/1244.zip -OutFile "$d\debugging-hermes-tui-commands.zip"; Expand-Archive "$d\debugging-hermes-tui-commands.zip" -DestinationPath $d -Force; ri "$d\debugging-hermes-tui-commands.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
debugging-hermes-tui-commands.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
debugging-hermes-tui-commandsフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Debugging Hermes Tui Commands を使って、最小構成のサンプルコードを示して
- › Debugging Hermes Tui Commands の主な使い方と注意点を教えて
- › Debugging Hermes Tui Commands を既存プロジェクトに組み込む方法を教えて
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Debugging Hermes TUI Slash Commands
Overview
Hermes slash commands span three layers — Python command registry, tui_gateway JSON-RPC bridge, and the Ink/TypeScript frontend. When a command misbehaves (missing from autocomplete, works in CLI but not TUI, config persists but UI doesn't update), the bug is almost always one layer being out of sync with another.
Use this skill when you encounter issues with slash commands in the Hermes TUI, particularly when commands aren't showing in autocomplete, aren't working properly in the TUI, or need to be added/updated.
When to Use
- A slash command exists in one part of the codebase but doesn't work fully
- A command needs to be added to both backend and frontend
- Command autocomplete isn't working for specific commands
- Command behavior is inconsistent between CLI and TUI
- A command persists config but doesn't apply live in the TUI
Architecture Overview
Python backend (hermes_cli/commands.py) <- canonical COMMAND_REGISTRY
│
▼
TUI gateway (tui_gateway/server.py) <- slash.exec / command.dispatch
│
▼
TUI frontend (ui-tui/src/app/slash/) <- local handlers + fallthrough
Command definitions must be registered consistently across Python and TypeScript to work properly. The Python COMMAND_REGISTRY is the source of truth for: CLI dispatch, gateway help, Telegram BotCommand menu, Slack subcommand map, and autocomplete data shipped to Ink.
Investigation Steps
-
Check if the command exists in the TUI frontend:
search_files --pattern "/commandname" --file_glob "*.ts" --path ui-tui/ search_files --pattern "/commandname" --file_glob "*.tsx" --path ui-tui/ -
Examine the TUI command definition:
read_file ui-tui/src/app/slash/commands/core.ts # If not there: search_files --pattern "commandname" --path ui-tui/src/app/slash/commands --target files -
Check if the command exists in the Python backend:
search_files --pattern "CommandDef" --file_glob "*.py" --path hermes_cli/ search_files --pattern "commandname" --path hermes_cli/commands.py --context 3 -
Examine the gateway implementation:
search_files --pattern "complete.slash|slash.exec" --path tui_gateway/
Fix: Missing Command Autocomplete
If a command exists in the TUI but doesn't show in autocomplete:
-
Add a
CommandDefentry toCOMMAND_REGISTRYinhermes_cli/commands.py:CommandDef("commandname", "Description of the command", "Session", cli_only=True, aliases=("alias",), args_hint="[arg1|arg2|arg3]", subcommands=("arg1", "arg2", "arg3")), -
Pick
cli_onlyvs gateway availability carefully:cli_only=True— only in the interactive CLI/TUIgateway_only=True— only in messaging platforms- neither — available everywhere
gateway_config_gate="display.foo"— config-gated availability in the gateway
-
Ensure
subcommandsmatches the expected tab-completion options shown by the TUI. -
If the command runs server-side, add a handler in
HermesCLI.process_command()incli.py:elif canonical == "commandname": self._handle_commandname(cmd_original) -
For gateway-available commands, add a handler in
gateway/run.py:if canonical == "commandname": return await self._handle_commandname(event)
Common Issues
-
Command shows in TUI but not in autocomplete. The command is defined in the TUI codebase but missing from
COMMAND_REGISTRYinhermes_cli/commands.py. Autocomplete data ships from Python. -
Command shows in autocomplete but doesn't work. Check the command handler in
tui_gateway/server.pyand the frontend handler inui-tui/src/app/createSlashHandler.ts. If the command is local-only in Ink, it must be handled inapp.tsxbuilt-in branch; otherwise it falls through toslash.execand must have a Python handler. -
Command behavior differs between CLI and TUI. The command might have different implementations. Check both
cli.py::process_commandand the TUI's local handler. Local TUI handlers take precedence over gateway dispatch. -
Command persists config but doesn't apply live. For TUI-local commands, updating
config.setis not enough. Also patch the relevant nanostore state immediately (usuallypatchUiState(...)) and pass any new state through rendering components. Example:/details collapsedmust update live detail visibility, not just savedetails_mode; in-session global/details <mode>may need a separate command-override flag so live commands can override built-in section defaults while startup/config sync preserves default-expanded thinking/tools behavior. -
Gateway dispatch silently ignores the command. The gateway only dispatches commands it knows about. Check
GATEWAY_KNOWN_COMMANDS(derived fromCOMMAND_REGISTRYautomatically) includes the canonical name. If the command iscli_onlywith agateway_config_gate, verify the gated config value is truthy.
Debugging Tactics
When surface-level inspection doesn't reveal the bug:
- Python side hangs or misbehaves: use the
python-debugpyskill to break inside_SlashWorker.execor the command handler.remote-pdbset at the handler entry is the fastest path. - Ink side not reacting: use the
node-inspect-debuggerskill to break inapp.tsx's slash dispatch or the local command branch.sb('dist/app.js', <line>)afternpm run build. - Registry mismatch / unclear which side is wrong: compare the canonical
COMMAND_REGISTRYentry against the TUI's local command list side-by-side.
Pitfalls
- Don't forget to set the appropriate category for the command in
CommandDef(e.g., "Session", "Configuration", "Tools & Skills", "Info", "Exit") - Make sure any aliases are properly registered in the
aliasestuple — no other file changes are needed, everything downstream (Telegram menu, Slack mapping, autocomplete, help) derives from it - For commands with subcommands, ensure the
subcommandstuple inCommandDefmatches what's in the TUI code cli_only=Truecommands won't work in gateway/messaging platforms — unless you add agateway_config_gateand the gate is truthy- After adding live UI state, search every consumer of the old prop/helper and thread the new state through all render paths, not just the active streaming path. TUI detail rendering has at least two important paths: live
StreamingAssistant/ToolTrailand transcript/pendingMessageLinerows. A/cleanpass should explicitly check both. - Rebuild the TUI (
npm --prefix ui-tui run build) before testing — tsx watch mode may lag on first launch
Verification
After fixing:
-
Rebuild the TUI:
cd /home/bb/hermes-agent && npm --prefix ui-tui run build -
Run the TUI and test the command:
hermes --tui -
Type
/and verify the command appears in autocomplete suggestions with the expected description and args hint. -
Execute the command and confirm:
- Expected behavior fires
- Any persisted config updates correctly (
read_file ~/.hermes/config.yaml) - Live UI state reflects the change immediately (not just after restart)
-
If the command is also gateway-available, test it from at least one messaging platform (or run the gateway tests:
scripts/run_tests.sh tests/gateway/).