/recall
Search session history by concept keyword. Returns matching sessions with relevant bullets. Usage: /recall <keyword>
$ 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
/recall
Context preview
What this command does when you run it.
Search session history by concept keyword. Returns matching sessions with relevant bullets. Usage: /recall <keyword>
Command definition
recall.mddescription: "Search session history by concept keyword. Returns matching sessions with relevant bullets. Usage: /recall <keyword>"
argument-hint: "<keyword> — e.g. 'jwt', 'quota', 'board', 'npm'"
user-invocable: true
allowed-tools: Bash, Read
model: haiku
<!-- great_cto-managed -->
You are the great_cto `/recall` command. Search `.great_cto/logs/` for sessions related to `$ARGUMENTS` and return the most relevant results.
Step 1 — Search session logs
QUERY="${ARGUMENTS:-}"
LOG_DIR=".great_cto/logs"
if [ -z "$QUERY" ]; then
echo "Usage: /recall <keyword>"
echo "Examples: /recall jwt | /recall quota | /recall board | /recall npm"
exit 0
fi
# Search 1: match in concepts frontmatter field (highest precision)
echo "=== Concept matches ==="
grep -ril "concepts:.*${QUERY}" "$LOG_DIR"/session-*.md 2>/dev/null | sort -r | head -10
# Search 2: match in full log body (broader)
echo "=== Body matches ==="
grep -ril "${QUERY}" "$LOG_DIR"/session-*.md 2>/dev/null | sort -r | head -10Step 2 — Display results
For each unique matching file (deduplicate concept + body matches), show:
- Filename (date + slug)
- `concepts:` frontmatter field (if present)
- `## Done` section bullets (first 5)
- `## Decisions` section (first 3 bullets)
Format:
📁 session-2026-05-28-quota-warning-board-fix.md
concepts: quota, oauth, board, side-panel, claudecode
Done: SessionStart quota warning (quota-check.mjs, 0 deps)...
Board side-panel HTML was absent — added 24-line block...
Decisions: Board widget not worth it — Anthropic admin shows same dataIf zero matches:
No sessions found for: "<query>"
Try broader terms — e.g. /recall auth instead of /recall jwt-refresh
Available concepts: <list top 20 concepts from all logs>
Step 3 — Suggest related recalls
After results, offer 2–3 related searches:
Related: /recall <synonym1> | /recall <synonym2>
Notes
- Search is grep-based, zero deps — works offline and without any server
- Concept tags are 2–5 lowercased keywords added by /save
- If no `concepts:` field exists in old logs, body-search still works
- Results are sorted newest-first (most recent sessions first)
Read more
description: "Search session history by concept keyword. Returns matching sessions with relevant bullets. Usage: /recall <keyword>" argument-hint: "<keyword> — e.g. 'jwt', 'quota', 'board', 'npm'" user-invocable: true allowed-tools: Bash, Read model: haiku
<!-- great_cto-managed -->
You are the great_cto `/recall` command. Search `.great_cto/logs/` for sessions related to `$ARGUMENTS` and return the most relevant results.
Step 1 — Search session logs
QUERY="${ARGUMENTS:-}"
LOG_DIR=".great_cto/logs"
if [ -z "$QUERY" ]; then
echo "Usage: /recall <keyword>"
echo "Examples: /recall jwt | /recall quota | /recall board | /recall npm"
exit 0
fi
# Search 1: match in concepts frontmatter field (highest precision)
echo "=== Concept matches ==="
grep -ril "concepts:.*${QUERY}" "$LOG_DIR"/session-*.md 2>/dev/null | sort -r | head -10
# Search 2: match in full log body (broader)
echo "=== Body matches ==="
grep -ril "${QUERY}" "$LOG_DIR"/session-*.md 2>/dev/null | sort -r | head -10Step 2 — Display results
For each unique matching file (deduplicate concept + body matches), show:
- Filename (date + slug)
- `concepts:` frontmatter field (if present)
- `## Done` section bullets (first 5)
- `## Decisions` section (first 3 bullets)
Format:
📁 session-2026-05-28-quota-warning-board-fix.md
concepts: quota, oauth, board, side-panel, claudecode
Done: SessionStart quota warning (quota-check.mjs, 0 deps)...
Board side-panel HTML was absent — added 24-line block...
Decisions: Board widget not worth it — Anthropic admin shows same dataIf zero matches:
No sessions found for: "<query>" Try broader terms — e.g. /recall auth instead of /recall jwt-refresh Available concepts: <list top 20 concepts from all logs>
Step 3 — Suggest related recalls
After results, offer 2–3 related searches:
Related: /recall <synonym1> | /recall <synonym2>
Notes
- Search is grep-based, zero deps — works offline and without any server
- Concept tags are 2–5 lowercased keywords added by /save
- If no `concepts:` field exists in old logs, body-search still works
- Results are sorted newest-first (most recent sessions first)
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

