用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lukemcqueen/hermes-cortex --skill agent-ergonomic-cli-output命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Cross-server agent health monitoring using binary status vectors — deploy health endpoints on each agent, poll from orchestrator, alert on state transitions.
Wire a self-hosted Langfuse instance to Hermes Agent — generate API keys, configure env vars, enable the bundled plugin, install SDK, and verify traces flow.
Use before enforcement code changes or shared-repo commits.
正在显示 SKILL.md
| name | agent-ergonomic-cli-output |
| description | Agent-facing CLI output: token-lean by design (AXI/TOON). |
| version | 1.0.0 |
| author | Hermes Cortex (Esther) |
| license | MIT |
| platforms | ["linux","macos"] |
| metadata | {"hermes":{"tags":["cli","output","tokens","toon","axi","agent-facing","ergonomics"],"related_skills":["cron-format-standard","change-checklist"]}} |
AXI (Agent eXperience Interface) principles distilled for fleet scripts:
make agent-facing CLI output token-lean and decision-ready. The expensive
token cost is not a longer response — it is the FOLLOW-UP CALL. Every
principle below eliminates one. Deep reference (full mapping to Cortex
surfaces, ranked quick wins): ~/hermes-cortex/docs/axi-agent-ergonomics.md.
name[N]{fields}: header + CSV rows, ~40% token savings. Convert at the output boundary; keep JSON internally.--fields to request more; default limits cover common cases in one call.... (truncated, N chars total) + --full escape hatch. Never omit large fields entirely.count: 30 of 847 total) and derived statuses (checks: 3/3 passed); include what agents would otherwise round-trip for.queue: 0 messages with context; never bare empty output (agents re-run to verify ambiguity).<id> for runtime values); omit when output is self-contained; on errors suggest the fixing command, not --help.--help (flags + defaults, 2-3 examples); fast bare --version (keep the version in a leaf module so the CLI graph never loads for a probe).cron-format-standard already conforms (Result: verdict, [SILENT] empty state, cost footer aggregate) — keep; add totals and truncation where evidence runs long.cortex-doctor: add --toon compact mode; truncate per-check detail with --full.hc CLI: TOON lists with totals; content-first home; structured errors on stdout.~/hermes-cortex/docs/axi-agent-ergonomics.md.parse_known_args-style silent drops.