/help
Show great_cto commands, key concepts, and admin board URL. Use when you don't remember a command or you are new to great_cto.
$ npx -y skills add avelikiy/great_cto --agent claude-codeShips with great-cto. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/help
Context preview
What this command does when you run it.
Show great_cto commands, key concepts, and admin board URL. Use when you don't remember a command or you are new to great_cto.
Command definition
help.mddescription: "Show great_cto commands, key concepts, and admin board URL. Use when you don't remember a command or you are new to great_cto."
argument-hint: "[optional: topic — e.g. 'commands', 'agents', 'board']"
user-invocable: true
disable-model-invocation: true
allowed-tools: Read, Bash
model: haiku
You are the great_cto **Help** command. Print a compact reference card. Keep total response **under 40 lines**. No prose explanations beyond the card itself.
Step 1 — Read the static card
PLUGIN_DIR=$(ls -d ~/.claude/plugins/cache/local/great_cto/*/ 2>/dev/null | sort -V | tail -1 | sed 's|/$||')
CARD="${PLUGIN_DIR}/docs/help-card.md"
[ -f "$CARD" ] || CARD="$(pwd)/docs/help-card.md"
VERSION=$(cat "${PLUGIN_DIR}/.claude-plugin/plugin.json" 2>/dev/null | grep '"version"' | head -1 | sed 's/.*"version":[[:space:]]*"\([^"]*\)".*/\1/')
echo "VERSION=${VERSION:-?}"
cat "$CARD" 2>/dev/null || echo "MISSING_CARD"Step 2 — Render
If the file loaded, print it **verbatim** with the version substituted into the header (`{{VERSION}}` → value of `VERSION`).
If the file is missing or `MISSING_CARD` was printed, fall back to this minimal card (no extra commentary):
great_cto · type /<command> in Claude Code
Daily /inbox · /digest · /doctor · /resume · /save
Pipeline /start · /audit · /review · /poc · /promote
Ops /oncall · /ownership · /rfc · /release · /sec · /cost · /burn
Memory /learn · /crystallize · /migrate
Agents /agent-review · /agent-retire
Admin board great-cto board → http://localhost:3141
Docs https://github.com/avelikiy/great_cto
Step 3 — Argument routing
If `$ARGUMENTS` contains a known topic, append the matching subsection **only** (don't dump everything):
- `commands` → just the command table from the card
- `agents` → grep the card for the `## Agents` section
- `board` → just the board / admin URL block + how to start it
- otherwise → full card
Notes
- Don't fabricate commands. If `$ARGUMENTS` is unknown, print the full
card and a single line: `Unknown topic '<arg>' — showing full card.`
- Don't run any other helpers. This command must work in heavy-context
sessions, so the body must stay short.
Read more
description: "Show great_cto commands, key concepts, and admin board URL. Use when you don't remember a command or you are new to great_cto." argument-hint: "[optional: topic — e.g. 'commands', 'agents', 'board']" user-invocable: true disable-model-invocation: true allowed-tools: Read, Bash model: haiku
You are the great_cto **Help** command. Print a compact reference card. Keep total response **under 40 lines**. No prose explanations beyond the card itself.
Step 1 — Read the static card
PLUGIN_DIR=$(ls -d ~/.claude/plugins/cache/local/great_cto/*/ 2>/dev/null | sort -V | tail -1 | sed 's|/$||')
CARD="${PLUGIN_DIR}/docs/help-card.md"
[ -f "$CARD" ] || CARD="$(pwd)/docs/help-card.md"
VERSION=$(cat "${PLUGIN_DIR}/.claude-plugin/plugin.json" 2>/dev/null | grep '"version"' | head -1 | sed 's/.*"version":[[:space:]]*"\([^"]*\)".*/\1/')
echo "VERSION=${VERSION:-?}"
cat "$CARD" 2>/dev/null || echo "MISSING_CARD"Step 2 — Render
If the file loaded, print it **verbatim** with the version substituted into the header (`{{VERSION}}` → value of `VERSION`).
If the file is missing or `MISSING_CARD` was printed, fall back to this minimal card (no extra commentary):
great_cto · type /<command> in Claude Code Daily /inbox · /digest · /doctor · /resume · /save Pipeline /start · /audit · /review · /poc · /promote Ops /oncall · /ownership · /rfc · /release · /sec · /cost · /burn Memory /learn · /crystallize · /migrate Agents /agent-review · /agent-retire Admin board great-cto board → http://localhost:3141 Docs https://github.com/avelikiy/great_cto
Step 3 — Argument routing
If `$ARGUMENTS` contains a known topic, append the matching subsection **only** (don't dump everything):
- `commands` → just the command table from the card
- `agents` → grep the card for the `## Agents` section
- `board` → just the board / admin URL block + how to start it
- otherwise → full card
Notes
- Don't fabricate commands. If `$ARGUMENTS` is unknown, print the full
card and a single line: `Unknown topic '<arg>' — showing full card.`
- Don't run any other helpers. This command must work in heavy-context
sessions, so the body must stay short.
Don't buy software. Get the work done. GreatCTO ships AI autopilots that run a whole business function — medical coding, legal docs, procurement, accounting, IT, tax — from intake to outcome. A qualified human signs only the judgment calls. Live connectors, built-in compliance.
Repo: avelikiy/great_cto
Other commands on great-cto.
- /aedt-bias-audit
HR-AI / AEDT bias audit. Invokes hr-ai-reviewer to assess NYC LL 144, EEOC, Illinois AIVIA, Colorado SB 205, EU AI Act Annex III applicability and produce TM-hrai with bias-audit pipeline requirements (4/5-rule, intersectional).
Open command - /agent-retire
Gracefully retire an LLM agent from the workforce. Archives prompt, removes from sync list, keeps verdicts for audit. Like firing a human — but reversible.
Open command - /agent-review
Performance review for an LLM agent (or all agents). Verdicts breakdown, cost analysis, top failure modes, prompt-tuning suggestions. Like a human '1:1' but for AI workforce.
Open command - /api-contract-review
API platform contract review. Invokes api-platform-reviewer to audit rate-limit design, OAuth scope hygiene, webhook signing, idempotency, Sunset/deprecation, pagination, error envelope, and versioning strategy. Critical before v1 GA.
Open command - /audit
Audit an existing codebase. Detects stack, finds gaps, creates tasks, generates PROJECT.md.
Open command - /board
Open the great_cto admin board at http://localhost:3141 (Kanban, cost, pipeline, inbox, memory). Starts it in background if not running.
Open command

