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…
Manually run the continuous-learner. Extract patterns from this session and write to .great_cto/lessons.md. Use when SessionEnd hook missed something or you want to capture a lesson mid-session.
> /plugin marketplace add avelikiy/great_cto > /plugin install great_cto@great-cto
How it fires
How this command gets triggered: by you, by Claude, or both.
/learnContext preview
What this command does when you run it.
Manually run the continuous-learner. Extract patterns from this session and write to .great_cto/lessons.md. Use when SessionEnd hook missed something or you want to capture a lesson mid-session.
description: "Manually run the continuous-learner. Extract patterns from this session and write to .great_cto/lessons.md. Use when SessionEnd hook missed something or you want to capture a lesson mid-session." argument-hint: "[focus] — optional: 'cost', 'security', 'architecture', etc. — narrows the learner's scope" user-invocable: true allowed-tools: Read, Write, Bash, Glob, Grep, Task model: haiku
You are the great_cto `/learn` slash command. Trigger the **continuous-learner** subagent to extract lessons from the current session and write to `.great_cto/lessons.md`.
The continuous-learner runs automatically on session end (via the SessionEnd hook). Use `/learn` manually when:
# Must be in a great_cto-managed project
[ -f .great_cto/PROJECT.md ] || { echo "ERROR: no .great_cto/PROJECT.md — not a great_cto project"; exit 1; }
# Need *some* session activity to learn from
COMMITS=$(git log --oneline --since="8 hours ago" 2>/dev/null | wc -l | tr -d ' ')
WRITES=$(wc -l < .great_cto/agent-writes.log 2>/dev/null || echo 0)
[ "$COMMITS" -eq 0 ] && [ "$WRITES" -eq 0 ] && { echo "No session activity detected — nothing to learn from."; exit 0; }Use the Task tool to spawn the subagent. Pass the user's optional focus argument:
Task(subagent_type="continuous-learner", description="Extract session lessons", prompt=""" Extract lessons from the current session. Read recent commits, agent writes, cost log, beads activity, and reviewer verdicts. Apply quality gates strictly — silence > noise. Focus: $ARGUMENTS If the user said "cost", emphasize cost-outlier patterns (shape B). If the user said "security", emphasize reviewer-catch patterns (shape A). If the user said "architecture", emphasize tool/library decisions (shape E). Otherwise apply all 5 shapes. Output one summary line at the end. """)
After the subagent completes, show the user:
✓ Continuous-learner finished Wrote: <N> new lessons → .great_cto/lessons.md Rejected: <M> candidates (didn't pass quality gates) Promoted: <P> patterns → ~/.great_cto/decisions.md Latest lesson preview: ───────────────────── $(tail -25 .great_cto/lessons.md 2>/dev/null)
If `N=0`:
No new lessons this session — quality gates rejected all candidates. This is normal. To inspect what was considered, check the SessionEnd snapshot: ls -t .great_cto/logs/session-*-end.md | head -1 | xargs cat
You already have the agent. This is everything around it. great_cto runs Claude Code as a pipeline of 70 specialist agents — an independent model checks each stage before the next builds on it, spending caps refuse rather than warn, and three decisions stay yours: what gets built, how, and whether it ships.
Repo: avelikiy/great_cto
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…
Gracefully retire an LLM agent from the workforce. Archives prompt, removes from sync list, keeps verdicts for audit. Like firing a human — but reversible.
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…
API platform contract review. Invokes api-platform-reviewer to audit rate-limit design, OAuth scope hygiene, webhook signing, idempotency, Sunset/deprecation,…
Audit an existing codebase. Detects stack, finds gaps, creates tasks, generates PROJECT.md.
Open the great_cto admin board at http://localhost:3141 (Kanban, cost, pipeline, inbox, memory). Starts it in background if not running.