Skip to content
Development
Command

/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.

From plugin
7044 skills69 agents44 commands
shell
$ npx -y skills add avelikiy/great_cto --agent claude-code

Ships 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.md
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.

Read more
Read it on GitHub ↗
Ships withgreat-cto

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.

Get the whole plugin, auto-invoked
Stats
70
Stars
0
Views
12
Forks
Active
Maintenance
JavaScript
Language
MIT
License
53m ago
Last commit
4mo ago
Created

Repo: avelikiy/great_cto