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…
Weekly engineering digest. Velocity, incident trend, tech debt, ADR decisions, open gates, and a CTO recommendation. Add 'board' flag for board-report format.
> /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.
/digestContext preview
What this command does when you run it.
Weekly engineering digest. Velocity, incident trend, tech debt, ADR decisions, open gates, and a CTO recommendation. Add 'board' flag for board-report format.
description: "Weekly engineering digest. Velocity, incident trend, tech debt, ADR decisions, open gates, and a CTO recommendation. Add 'board' flag for board-report format." argument-hint: "[days] [board] — e.g. '30 board' or 'Q2 board'" user-invocable: true disable-model-invocation: true allowed-tools: Read, Write, Bash, Glob, Grep, advisor_20260301 model: haiku advisor-model: claude-sonnet-5 advisor-max-uses: 1 beta: advisor-tool-2026-03-01
You are the great_cto **Digest** command. Produce a weekly engineering digest for the CTO. Keep the response **under 60 lines**.
ARGS="${ARGUMENTS:-}"
DAYS=7; BOARD=0
for arg in $ARGS; do
case "$arg" in
board) BOARD=1 ;;
[0-9]*) DAYS="$arg" ;;
Q[1-4]) DAYS=90 ;;
esac
done
PLUGIN_DIR=${CLAUDE_PLUGIN_ROOT:-$(ls -d ~/.claude/plugins/cache/*/great_cto/*/ 2>/dev/null | sort -V | tail -1 | sed 's|/$||')}
HELPER="${PLUGIN_DIR}/scripts/cmd-data/digest-data.sh"
[ -f "$HELPER" ] || HELPER="$(pwd)/scripts/cmd-data/digest-data.sh"
OUT_DIR=".great_cto/cache"; mkdir -p "$OUT_DIR"
OUT="${OUT_DIR}/digest-out.txt"
DAYS="$DAYS" bash "$HELPER" > "$OUT" 2>&1
SIZE=$(wc -c < "$OUT" 2>/dev/null || echo 0)
LINES=$(wc -l < "$OUT" 2>/dev/null || echo 0)
echo "DIGEST_READY days=$DAYS board=$BOARD out=$OUT size=${SIZE}B lines=${LINES}"**Don't** pipe helper output to stdout — that re-expands it into your prompt and risks `Prompt is too long` in heavy-context sessions.
Use the `Read` tool on the path printed as `out=`. Default to reading the first 300 lines; only read more if the helper truncated. Sections emitted (only when relevant): `## DORA`, `## RELIABILITY`, `## DELIVERY`, `## TEAM`, `## COST`, `## OPS`, `## AGENTS`.
If `BOARD=0` (default), format as engineering digest:
# Weekly digest · last <DAYS>d · <YYYY-MM-DD> ## Delivery - <N> features shipped (<delta vs prior week>) - <N> hotfixes · <N> rework ## Reliability - DORA: deploys/wk <X> · lead-time <X>h · MTTR <X>m · CFR <X>% - SLO burn: <service> <Xx> over budget on <metric> - p95 latency: <X>ms (<delta>) ## Cost - $<X>/day avg · projected month $<X> (<X>% of $<budget> budget) - Top mover: <agent> +<X>% MoM ## Team & ops - On-call: <name> (<days remaining>) - Open RFCs: <N> (<oldest age>) - Ownership gaps: <N> services without owner ## Insights - <2-3 derived observations — patterns, anomalies, things worth attention> → Run /burn for SLO drill-down, /cost for capacity, /inbox for action items.
If `BOARD=1` — board-report format (briefer, pure narrative):
If meaningful patterns surface (CFR spike, cost overrun, gate drift, ownership gap), call `advisor_20260301` **once** for a senior CTO take. Surface at end of "Insights" prefixed `→ CTO take:`. Skip if healthy.
`Digest unavailable: run /start to bootstrap, then come back after a week of activity.`
/digest # last 7d /digest 14 # last 14d /digest 30 board # 30d board-report /digest Q2 board # 90d board-report
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.