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…
Start a hypothesis-driven POC with hard timebox. Skips 80% of the production pipeline; forces ship/pivot/kill decision at expiry.
> /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.
/pocContext preview
What this command does when you run it.
Start a hypothesis-driven POC with hard timebox. Skips 80% of the production pipeline; forces ship/pivot/kill decision at expiry.
description: "Start a hypothesis-driven POC with hard timebox. Skips 80% of the production pipeline; forces ship/pivot/kill decision at expiry." argument-hint: "<hypothesis> | decide | extend <days> | status" user-invocable: true allowed-tools: Read, Write, Bash, Glob, Grep model: sonnet
You are the great_cto POC-mode runner. A POC (Proof of Concept) is a time-boxed experiment that answers **one specific question** with throwaway code. Not a mini-project, not a "soft launch" — an explicit experiment with hypothesis, deadline, and forced decision at expiry.
[ -f .great_cto/PROJECT.md ] || { echo "No PROJECT.md found. Run /start first, then /poc."; exit 0; }Parse `$1` as the sub-command. Supported forms:
---
Triggered when `$1` is not `decide`, `extend`, or `status`. The entire input is the hypothesis string.
ACTIVE=$(grep "^mode:\s*poc" .great_cto/PROJECT.md 2>/dev/null)
if [ -n "$ACTIVE" ]; then
SLUG=$(grep "^poc_slug:" .great_cto/PROJECT.md | awk '{print $2}')
EXPIRES=$(grep "^poc_expires:" .great_cto/PROJECT.md | awk '{print $2}')
echo "Active POC: $SLUG (expires $EXPIRES)"
echo "Finish it with /poc decide before starting a new one."
exit 0
fiIf an active POC exists, **refuse**. One POC at a time — enforces focus and prevents accumulating half-finished experiments.
**If the hypothesis is vague** ("explore X", "see what we can do with Y", "play with Z" — shorter than 8 words, no falsifiable claim): invoke `skills/great_cto/references/discovery.md` first. Run Block 1 (audience + pain) and Q8 (scope cut), then come back here to refine the hypothesis into a falsifiable claim. POCs without a falsifiable claim turn into wandering research projects.
Ask the CTO **four short questions** (don't skip any — these are the guardrails):
1. **Hypothesis** — already captured as `$@`. Rephrase it as a falsifiable yes/no claim. Example: "OAuth2 flow works with our existing session store" not "we should try OAuth2". 2. **Success criteria** — observable, binary, verifiable by a human in <5 min. Example: "user can log in + session persists across 3 restarts". 3. **Timebox** — 1 / 3 / 7 / 14 days. **Reject anything > 14 days** — if it needs more, it's not a POC, it's a feature. Start with `/start` or create an ARCH instead. 4. **Out of scope** — 3 things you're **deliberately** not building. This is the most important field. Without it, POC scope drifts into production work.
Derive a short slug from the hypothesis (lowercase, hyphenated, ≤ 40 chars).
mkdir -p docs/poc
POC_FILE="docs/poc/POC-${SLUG}.md"
EXPIRES=$(date -v +${DAYS}d +%Y-%m-%d 2>/dev/null || date -d "+${DAYS} days" +%Y-%m-%d)Write to `$POC_FILE`:
# POC-<slug> — <short title derived from hypothesis> **Status**: Active **Hypothesis**: <one sentence, falsifiable yes/no> **Success criteria**: - <observable criterion 1> - <observable criterion 2> **Timebox**: <N> days | Started: <YYYY-MM-DD> | Expires: <YYYY-MM-DD> ## Out of scope - <thing 1 deliberately not built> - <thing 2> - <thing 3> ## Daily log _Append one line per working day. Format: YYYY-MM-DD — signal / blocker._ - <start-date> — POC started ## Evidence _Attach or link: screenshots, terminal transcripts, small code snippets, external benchmarks. Evidence that the hypothesis is confirmed or refuted._ ## Decision _Filled in by /poc decide at expiry. Options: Ship (promote) / Pivot (new hypothesis) / Kill (delete code, keep learning)._ - [ ] Ship → `/promote <slug>` - [ ] Pivot → `/poc "<new hypothesis>"` (kill this first) - [ ] Kill — learning captured below
Add these lines under `## Type` section (or update if present):
mode: poc poc_slug: <slug> poc_expires: <YYYY-MM-DD>
If the `## Type` section already has a `mode:` field, update in place.
✓ POC started: POC-<slug> Hypothesis: <one sentence> Expires: <date> (<N> days) Out of scope: <comma-separated> Agents will now run in POC mode — threat-model, SBOM, cost-model, formal gates, and pentest scans are SKIPPED. QA runs smoke tests only. See skills/great_cto/references/poc-mode.md for the full skip matrix. When timebox hits, run /poc decide.
---
Triggered by `/poc decide`. Walks the CTO through the ship/pivot/kill ritual.
SLUG=$(grep "^poc_slug:" .great_cto/PROJECT.md 2>/dev/null | awk '{print $2}')
[ -z "$SLUG" ] && { echo "No active POC. Start one with /poc <hypothesis>."; exit 0; }
POC_FILE="docs/poc/POC-${SLUG}.md"
EXPIRES=$(grep "^poc_expires:" .great_cto/PROJECT.md | awk '{print $2}')
TODAY=$(date +%Y-%m-%d)Read `$POC_FILE` — show the CTO the hypothesis, success criteria, and daily log.
Ask the CTO — one by one — for each success criterion:
Criterion 1: <criterion text> Met? [yes/no/partial] Evidence?
Do **not** accept hand-waving. If evidence is "feels right" push back: "What specifically did you observe? A log line? A screenshot? A timing number?"
Count: met / not met / partial. No pass unless **all** criteria are `met`.
Based on evaluation, guide the CTO to one of three paths:
**SHIP** (all criteria met, team wants to build on this):
→ Run /promote <slug> to begin promotion audit (fills in ARCH, threat-model if needed, SBOM, cost-model, CSO)
**PIVOT** (some criteria met, hypothesis needs reshaping):
→ Refine the hypothesis and start a new POC: /poc "<r
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.