aesthetic-instrument
great_cto's own committed aesthetic — the instrument panel. Dark five-step surface ladder, exactly one accent, two faces divided by MEANING (Geist speaks,…
Reusable 3-round self-challenge + arbiter pattern for filtering false positives from findings/verdicts. Use when the cost of a false-positive gate block exceeds the cost of ~4 extra LLM turns.
$ npx -y skills add avelikiy/great_cto --skill skeptical-triage --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/skeptical-triageContext preview
The summary Claude sees to decide when to auto-load this skill.
Reusable 3-round self-challenge + arbiter pattern for filtering false positives from findings/verdicts. Use when the cost of a false-positive gate block exceeds the cost of ~4 extra LLM turns.
name: skeptical-triage
description: Reusable 3-round self-challenge + arbiter pattern for filtering false positives from findings/verdicts. Use when the cost of a false-positive gate block exceeds the cost of ~4 extra LLM turns.
when_to_use: |
Apply skeptical triage when:
- A finding could block a gate (gate:code, gate:ship, gate:qa, gate:arch) and flipping it wrongly wastes CTO time
- A verdict is about to be written to a report that downstream agents will trust (CSO, QA, ADR)
- Multiple signals disagree (one reviewer says VALID, another says INVALID) — arbiter resolves cleanly
Do NOT apply to:
- P2 findings or advisory notes (cost > benefit)
- Hard findings (secrets in source/git, confirmed CVEs, failing tests) — these are facts, not judgments
- Quick factual lookups ("does this file exist?", "what version is pinned?")
effort: medium
allowed-tools: Read, Grep, Bash, Glob
paths:
- "docs/**"
- "src/**"
- "lib/**"
- "app/**"Filter false positives from multi-angle review, security audit, QA regression flags, or any high-stakes judgment before it turns into a blocker.
Three rounds of skeptical self-review + an impartial arbiter, with a confidence score from the vote.
| Caller | Finding type | Apply triage? | |--------|--------------|---------------| | `/review` | Angle 2/4/7/9 P0/P1 (security, SQL, privacy, concurrency) | Yes | | `/review --deep` | Any angle P0/P1 | Yes | | `security-officer` | CSO audit P0/P1 | Yes | | `security-officer` | Secret in source/git, confirmed CVE | **No** — hard finding | | `qa-engineer` | Flaky-test verdict (is this a regression or flake?) | Yes | | `architect` | ADR trade-off dispute (option A vs. B when both look reasonable) | Yes | | Any | P2/advisory | No |
Run these sequentially. Each round sees prior reasoning. Arbiter sees all rounds.
Question: **is the premise true?**
Output: `{round: 1, verdict: VALID|INVALID|UNCERTAIN, reasoning: "...", crux: "single key fact"}`
Question: **are claimed defenses real and sufficient?**
If you cannot point to the line that enforces the defense, **it does not exist.**
Output: same JSON shape, with `grep_used: true/false`.
Question: **what did Rounds 1-2 not consider?**
Output: same JSON shape.
Input: all 3 rounds + original finding/question + source code.
Question: **final call — which side has the stronger evidence?**
Output:
{
"verdict": "VALID",
"crux": "memcpy at auth.c:142 copies network-controlled len bytes into 64-byte stack buffer with no bound check",
"reasoning": "Rounds 1 and 3 verified attacker reach; Round 2 found no size check in 50 LOC radius; arbiter confirms no caller clamps len."
}Burn these into every round's prompt:
1. **Absence of defense → VALID, not UNCERTAIN.** If you searched for a defense and did not find one, that is the answer. "Other code probably handles this" is not a valid defense. 2. **A constant name is not a verified bound — only its resolved value is.** Grep for the `#define` / `const` declaration. 3. **Name the line or it does not exist.** Vague references to "assumptions in this codebase" do not count. 4. **Do not contradict your own conclusion in the same response.** If you verified a defense is insufficient, that is the verdict. Stop searching for reasons to flip. 5. **Code quality issue ≠ security vulnerability.** Data race on diagnostic state, NULL check on internal-only API, UB only in debug builds → INVALID. 6. **Trust your own reasoning.** If you see the crux on first read, don't manufacture a counter-argument.
confidence = valid_rounds_before_arbiter / 3
Arbiter **overrides** the final verdict; confidence reflects the round vote for transparency. Record both in the output so humans can see where the arbiter diverged.
Once the arbiter returns:
| Arbiter verdict | Confidence | Severity action | |-----------------|------------|-----------------| | `VALID` | ≥ 50% | Keep original severity | | `VALID` | < 50% | Demote: P0→P1, P1→P2 | | `INVALID` | any | Remove from gate tally, record as `[FILTERED]` in report for audit |
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
great_cto's own committed aesthetic — the instrument panel. Dark five-step surface ladder, exactly one accent, two faces divided by MEANING (Geist speaks,…
Catalogue of known SDLC anti-patterns that great_cto agents must actively reject when reviewing architecture, plans, code, or post-mortems. Used by architect…
Analyze images, websites, and Figma files to extract their design and generate a `design.md` with token system, component inventory, and reconstruction notes.…
Shared review framework that every domain reviewer (pci, oracle, gov, edtech, healthcare, mlops, etc.) MUST follow. Defines the output artifact (TM-{slug}.md),…
Structured idea generation + multi-LLM debate for the product-owner stage. Diverge (generate genuinely different bets), debate (a 4-persona panel on 4 models…
Run the great_cto controlled Codex lifecycle with controller-owned writes, verifier evidence, human gates and optional artifact release.