| name | gate-wf |
| description | Workflow-native quality gate for branch changes — parallel reviewers (Bug, SOLID, Security, Simplify+Slop, optionally React/a11y/i18n/migration) with tier-scaled adversarial verify, CLAUDE.md/ADR enforcement, and a stable PASS / PASS WITH NOTES / FAIL verdict. Read-only. Runs from a static shipped workflow script. |
| argument-hint | [base-branch] [--force-fresh] [--ignore-scope-gate] [--resume <runId>] |
Gate-WF — Workflow-native quality gate
!IMPORTANT: Follow this process exactly. Do not skip steps.
This skill is a gate, not a fixer. It returns a verdict; it does not modify code.
Skill version: 4. Cache entries are keyed on this — bumping invalidates all caches at once. v4: each reviewer reads a diff scoped to its concern (code reviewers get docs/snapshots/lockfiles stripped; React/a11y/i18n get a .tsx/.jsx-only diff) instead of the full diff — less context noise per agent. v3: the workflow runs from a static shipped script (scripts/workflow.js) instead of a model-generated one — deterministic shape, tier-scaled verify, working --resume.
Prerequisites
- Workflows feature enabled:
CLAUDE_CODE_WORKFLOWS=1 in settings.json env.
- Plugin installed (this skill ships the reviewer/skeptic/context-checker
agents/*.md at the plugin root and the orchestration script at skills/gate-wf/scripts/workflow.js — see Step 3).
Arguments
$0 (optional): base branch to diff against. If omitted, auto-detect (main → master → develop).
--force-fresh (flag): bypass cache and re-fetch context bundle.
--ignore-scope-gate (flag): downgrade Step 2 hard-stops (file-count, suspicious-files) to top-of-report banners. Soft-warn (1–3 SUSPICIOUS) is unaffected.
--resume <runId>: resume a previous workflow run by ID (wf_...). Useful after editing any agents/*.md to re-run only the affected agent calls. Resume caches on (prompt, opts) pairs — see the resume note in Execution notes for the regeneration caveat.
--dismiss <ids> / --undismiss <ids> / --show-dismissed: manage the dismissal registry (false-positive suppression) without running the gate. See references/dismissals.md. These replay from the last run's $STATE_FILE; they require a prior run on the branch.
Step 0: Verify reviewer skill dependencies
Reviewer agents invoke skills via slash-command. A skill is reachable when found in either the global skills dir (~/.claude/skills/<name>/SKILL.md) or any plugin cache (~/.claude/plugins/cache/**/skills/<name>/SKILL.md). code-slop ships with this plugin; the others are external and must be installed globally.
missing=()
for s in vercel-react-best-practices solid security-review simplify; do
[ -f ~/.claude/skills/$s/SKILL.md ] && continue
compgen -G "$HOME/.claude/plugins/cache/*/*/*/skills/$s/SKILL.md" >/dev/null && continue
missing+=("$s")
done
if ! compgen -G "$HOME/.claude/plugins/cache/*/ai-skills/*/skills/code-slop/SKILL.md" >/dev/null \
&& [ ! -f ~/.claude/skills/code-slop/SKILL.md ]; then
missing+=("code-slop")
fi
if [ ${#missing[@]} -gt 0 ]; then
printf 'MISS %s\n' "${missing[@]}"
else
echo "OK all reviewer skills reachable"
fi
If any report MISS, stop and tell the user which skills are missing. Do not proceed.
| Skill | Install |
|---|
vercel-react-best-practices | npx skills add https://github.com/vercel-labs/agent-skills --skill vercel-react-best-practices -g |
solid | npx skills add https://github.com/ramziddin/solid-skills --skill solid -g |
security-review | npx skills add https://github.com/getsentry/skills --skill security-review -g |
code-slop | Ships with this plugin. If missing, reinstall the bgelis-ai-skills plugin (/plugin reinstall bgelis-ai-skills). |
simplify | npx skills add https://github.com/brianlovin/claude-config --skill simplify -g |
If the project is not React/Next.js, vercel-react-best-practices is optional (the react-reviewer is skipped automatically).
Soft dependencies (context bundle): linear-cli skill, gh CLI, devsql CLI. Probe each, degrade gracefully when missing.
Pre-supposed: lint, typecheck, and tests have run. The skill does not execute them.
Step 1: Parse args, compute identifiers, check caches
1a. Parse arguments
ARGS="$@"
BASE_ARG=""
FORCE_FRESH=0
IGNORE_SCOPE_GATE=0
RESUME_ID=""
DISMISS_IDS=""
UNDISMISS_IDS=""
SHOW_DISMISSED=0
SKIP_NEXT=0
TOKENS=()
for tok in $ARGS; do TOKENS+=("$tok"); done
for i in "${!TOKENS[@]}"; do
if [ "$SKIP_NEXT" -eq 1 ]; then SKIP_NEXT=0; continue; fi
tok="${TOKENS[$i]}"
case "$tok" in
--force-fresh) FORCE_FRESH=1 ;;
--ignore-scope-gate) IGNORE_SCOPE_GATE=1 ;;
--show-dismissed) SHOW_DISMISSED=1 ;;
--resume)
RESUME_ID="${TOKENS[$((i+1))]:-}"
[ -z "$RESUME_ID" ] && { echo "--resume requires a runId" >&2; exit 2; }
SKIP_NEXT=1
;;
--dismiss)
DISMISS_IDS="${TOKENS[$((i+1))]:-}"
[ -z "$DISMISS_IDS" ] && { echo "--dismiss requires ids (e.g. B1,M2)" >&2; exit 2; }
SKIP_NEXT=1
;;
--undismiss)
UNDISMISS_IDS="${TOKENS[$((i+1))]:-}"
[ -z "$UNDISMISS_IDS" ] && { echo "--undismiss requires ids (e.g. D1,D2)" >&2; exit 2; }
SKIP_NEXT=1
;;
--*) echo "unknown flag: $tok" >&2; exit 2 ;;
*)
[ -z "$BASE_ARG" ] && BASE_ARG="$tok" || { echo "extra positional: $tok" >&2; exit 2; }
;;
esac
done
If --dismiss, --undismiss, or --show-dismissed is set, do not run the gate — after computing identifiers (Step 1b, for $STATE_DIR / $STATE_FILE / $DISMISS_FILE), jump straight to the manual-flag handling in references/dismissals.md (Manual flags), then Step 4 render, then exit.
1b. Compute identifiers
REPO_ROOT=$(git rev-parse --show-toplevel)
REPO_SLUG=$(echo -n "$REPO_ROOT" | shasum | cut -c1-12)
BRANCH=$(git rev-parse --abbrev-ref HEAD)
BRANCH_SAFE=$(echo "$BRANCH" | tr '/' '_')
SESSION_ID=$(echo -n "${REPO_ROOT}::${BRANCH}" | shasum | cut -c1-12)
TMP_DIR="/tmp/gate-wf-${SESSION_ID}"
mkdir -p "$TMP_DIR"
BASE=${BASE_ARG:-$(git rev-parse --verify main >/dev/null 2>&1 && echo main || (git rev-parse --verify master >/dev/null 2>&1 && echo master || echo develop))}
WRONG_BASE_BANNER=""
if [ -n "$BASE_ARG" ]; then
case "$BASE_ARG" in
main|master|develop) ;;
*) WRONG_BASE_BANNER="Base: ${BASE_ARG} (non-standard — verify this is intentional)" ;;
esac
fi
HEAD_SHA=$(git rev-parse HEAD)
BASE_SHA=$(git merge-base $BASE HEAD)
set -f
mapfile -t CHANGED_FILES_ARR < <(git diff $BASE_SHA...HEAD --name-only)
CHANGED_FILES=$(printf '%s\n' "${CHANGED_FILES_ARR[@]}")
WT_HASH=$( {
git diff HEAD -- "${CHANGED_FILES_ARR[@]}"
git ls-files --others --exclude-standard -- "${CHANGED_FILES_ARR[@]}" \
| while IFS= read -r f; do shasum -- "$f" 2>/dev/null; done
} | shasum | cut -c1-12)
ADR_ROOT_CANDIDATES=("docs/adr" "docs/architecture/decisions" ".claude/rules")
ADR_ROOTS=()
for d in "${ADR_ROOT_CANDIDATES[@]}"; do
[ -d "$REPO_ROOT/$d" ] && ADR_ROOTS+=("$d")
done
CLAUDE_MD_LIST=$( {
[ -f "$REPO_ROOT/CLAUDE.md" ] && echo "$REPO_ROOT/CLAUDE.md"
for f in "${CHANGED_FILES_ARR[@]}"; do
dir=$(dirname -- "$f")
while [ "$dir" != "." ] && [ "$dir" != "/" ]; do
[ -f "$REPO_ROOT/$dir/CLAUDE.md" ] && echo "$REPO_ROOT/$dir/CLAUDE.md"
dir=$(dirname -- "$dir")
done
done
} | sort -u)
set +f
if [ -n "$CLAUDE_MD_LIST" ]; then
CLAUDE_MD_GIT_SHA=$(git log -1 --format=%H -- $CLAUDE_MD_LIST 2>/dev/null | cut -c1-12)
WT_HASH=$(echo "${WT_HASH} ${CLAUDE_MD_GIT_SHA}" | shasum | cut -c1-12)
fi
if [ ${#ADR_ROOTS[@]} -gt 0 ]; then
ADR_GIT_SHA=$(git log -1 --format=%H -- "${ADR_ROOTS[@]}" 2>/dev/null | cut -c1-12)
[ -n "$ADR_GIT_SHA" ] && WT_HASH=$(echo "${WT_HASH} ${ADR_GIT_SHA}" | shasum | cut -c1-12)
fi
CACHE_KEY="${HEAD_SHA}_${BASE_SHA}_${WT_HASH}_v4"
STATE_DIR="$HOME/.claude/gate-wf-state/$REPO_SLUG"
STATE_FILE="$STATE_DIR/${BRANCH_SAFE}.json"
CONTEXT_CACHE_FILE="$STATE_DIR/${BRANCH_SAFE}.context.json"
DISMISS_FILE="$STATE_DIR/${BRANCH_SAFE}.dismissed.json"
mkdir -p "$STATE_DIR"
[ -f "$DISMISS_FILE" ] || echo '{"version":1,"dismissals":[]}' > "$DISMISS_FILE"
1c. Findings cache lookup
If FORCE_FRESH=0 and RESUME_ID="":
- Read
$STATE_FILE.
- If
cache_key == CACHE_KEY AND cached_at is within 7 days, cache hit: skip the workflow, but still run the Step 4 render core over the cached findings[] + dismissed[] — the dismissal registry is independent of CACHE_KEY, so a dismissal added since the cached run (e.g. via --dismiss, or a newly-resolved thread on a prior full run) must apply. Re-partition, recompute IDs, render, then exit.
- Otherwise: cache miss, proceed.
CACHE_KEY includes WT_HASH, so any working-tree change invalidates the cache.
1d. Context bundle freshness probes
Skip probes when FORCE_FRESH=1. Otherwise, run all 4 probes in parallel:
- Linear: extract ticket ID
[A-Z]+-[0-9]+ from branch name. If found, query updatedAt via linear-cli.
- GitHub PR:
gh pr view --json updatedAt for current branch.
- ADR: reuse
ADR_GIT_SHA from Step 1b.
- CLAUDE.md: reuse
CLAUDE_MD_GIT_SHA from Step 1b.
- devsql: per changed file,
MAX(timestamp) from history and jhistory tables.
Compare to cached freshness_signals in $CONTEXT_CACHE_FILE. For each source:
| Cached vs Fresh | Action |
|---|
| equal | reuse cached portion |
| different | re-fetch |
| cached null, fresh not null | fetch |
| cached not null, fresh null | re-fetch (transient unavailability) |
| no cache file | fetch all |
1e. Assemble context bundle (bash)
For each stale source, fetch:
-
Linear (if stale + ticket detected): linear-cli issue + comments. See references/context-sources.md.
-
GitHub PR (if stale): gh pr view --json number,title,body,comments,reviews,updatedAt, plus inline review threads — the signal the author uses to reject a finding. gh pr view --json omits thread isResolved/comments, so fetch them via GraphQL (same query the pr-feedback skill uses):
gh api graphql -f query='query($owner:String!,$repo:String!,$pr:Int!){
repository(owner:$owner,name:$repo){ pullRequest(number:$pr){
reviewThreads(first:100){ nodes{ isResolved isOutdated
comments(first:10){ nodes{ author{login} body path line originalLine } } } } } }
}' -F owner=OWNER -F repo=REPO -F pr=<n>
Emit these under a ### Review threads subsection of the ## PR bundle section (one entry per thread: isResolved, path, line, and each comment's author + body). The context-checker reads this to dismiss findings the author rejected (see references/dismissals.md and agents/context-checker.md Part 3). Resolving a thread bumps the PR updatedAt, so this rides the existing PR freshness probe — no new probe needed.
-
ADR (if stale): walk ADR_ROOTS, determine applicability via frontmatter paths: glob, filename keyword match, or body mention. See references/context-sources.md § F3.
-
CLAUDE.md (if stale): emit each $CLAUDE_MD_LIST file verbatim under a ### <path> heading. See references/context-sources.md § F2.
-
devsql (if stale): per changed file, last 10 history/jhistory rows. Cap at 80 total.
Merge fetched + cached portions into $TMP_DIR/context-bundle.md with the section headers from references/context-sources.md. Write the new freshness signals to $TMP_DIR/freshness-signals.json.
Step 2: Get diff, detect stack, scope-gate
2a. Diff
git diff $BASE_SHA...HEAD --name-only > "$TMP_DIR/diff-summary.txt"
git diff $BASE_SHA...HEAD > "$TMP_DIR/diff-full.txt"
plus_lines() {
awk '
/^diff --git/ { f=$3; sub(/^a\//,"",f) }
/^\+\+\+/ { f=substr($2,3) }
/^\+/ && !/^\+\+\+/ { print f": "substr($0,2) }
' "$1"
}
CODE_EXCLUDES=(
'.'
':(exclude,glob)**/*.md'
':(exclude,glob)**/*.snap' ':(exclude,glob)**/__snapshots__/**'
':(exclude,glob)**/*.lock' ':(exclude,glob)**/*-lock.json'
':(exclude,glob)**/*.lockb' ':(exclude,glob)**/pnpm-lock.yaml'
':(exclude,glob)docs/**'
)
set -f
git diff $BASE_SHA...HEAD -- "${CODE_EXCLUDES[@]}" > "$TMP_DIR/diff-code.txt"
git diff $BASE_SHA...HEAD -- '*.tsx' '*.jsx' > "$TMP_DIR/diff-tsx.txt"
set +f
plus_lines "$TMP_DIR/diff-code.txt" > "$TMP_DIR/diff-code-plus.txt"
plus_lines "$TMP_DIR/diff-tsx.txt" > "$TMP_DIR/diff-tsx-plus.txt"
The workflow (scripts/workflow.js) maps each reviewer to its diff: the JSX reviewers
(react, a11y, i18n) read diff-tsx*; every other reviewer reads diff-code*; the
context-checker's CLAUDE.md/ADR synthesis reads diff-full.txt.
2b. Conditional reviewer flags
SPAWN_REACT=0
if jq -r '.dependencies // {} | keys[]' package.json 2>/dev/null | grep -qE '^(react|next)$'; then
SPAWN_REACT=1
fi
SPAWN_MIGRATION=0
MIGRATION_PATHS=$(echo "$CHANGED_FILES" | grep -E '(migrations/|.*migration.*\.ts$|.*\.migration\.ts$)' | grep -vE '(test|spec|fixture|__mocks__)' || true)
if [ -n "$MIGRATION_PATHS" ]; then
SPAWN_MIGRATION=1
elif git diff $BASE_SHA...HEAD -- $CHANGED_FILES | grep -E '(updateMany|bulkWrite|deleteMany)' | grep -vE '(test|spec|fixture|__mocks__)' >/dev/null 2>&1; then
SPAWN_MIGRATION=1
fi
SPAWN_A11Y=0
SPAWN_I18N=0
echo "$CHANGED_FILES" | grep -qE '\.(tsx|jsx)$' && SPAWN_A11Y=1
if [ "$SPAWN_A11Y" -eq 1 ] && jq -r '.dependencies // {}, .devDependencies // {} | keys[]' package.json 2>/dev/null | grep -qE '^(react-intl|next-intl|formatjs|i18next)$'; then
SPAWN_I18N=1
fi
2c. Scope-gate
Full spec: references/scope-gate.md. Hard-stops here exit 0 directly — they do NOT invoke the workflow.
File-count hard-stop (>200 files): emit the banner from references/scope-gate.md, exit unless --ignore-scope-gate (in which case, set FILE_COUNT_BANNER and continue).
Suspicious-files classifier:
- Skip if
FILE_COUNT <= 1.
- Determine intent (Linear title/body → PR title/body → last commit → branch name).
- Run the Haiku classifier (single Agent call, read-only, model: haiku) — cache its result at
$STATE_DIR/${BRANCH_SAFE}.scope.json keyed on SHA-12 of CHANGED_FILES.
- Decision: 0 SUSPICIOUS → silent. 1–3 →
SUSPICIOUS_BANNER (soft-warn). ≥4 → hard-stop unless --ignore-scope-gate.
Step 3: Run the gate workflow
The orchestration lives in a static script shipped with the plugin
(skills/gate-wf/scripts/workflow.js). The skill resolves its path, invokes it via the
Workflow tool, and gets back { findings: [...] }. The shape is fixed in code —
parallel reviewers → tier-scaled adversarial verify (BLOCKER→3 skeptics, MAJOR→1, NIT→0)
with per-(file,line) dedup → single context annotation, with CLAUDE.md/ADR synthesis
running alongside the reviewers. No model-generated script, so the shape can't drift and
--resume caches reliably.
3a. Prepare flag-conditional reviewer list
REVIEWERS=(
"ai-skills:bug-reviewer"
"ai-skills:solid-reviewer"
"ai-skills:security-reviewer"
"ai-skills:simplify-reviewer"
)
[ $SPAWN_REACT -eq 1 ] && REVIEWERS+=("ai-skills:react-reviewer")
[ $SPAWN_A11Y -eq 1 ] && REVIEWERS+=("ai-skills:a11y-reviewer")
[ $SPAWN_I18N -eq 1 ] && REVIEWERS+=("ai-skills:i18n-reviewer")
[ $SPAWN_MIGRATION -eq 1 ] && REVIEWERS+=("ai-skills:migration-reviewer")
REVIEWERS_JSON=$(printf '%s\n' "${REVIEWERS[@]}" | jq -R . | jq -sc .)
3b. Resolve the workflow script
The script ships with the plugin. Resolve its path (plugin-root env → newest plugin
cache → global-skills fallback):
WF_SCRIPT=""
for c in "${CLAUDE_PLUGIN_ROOT:+$CLAUDE_PLUGIN_ROOT/skills/gate-wf/scripts/workflow.js}" \
$(ls -1 "$HOME"/.claude/plugins/cache/*/ai-skills/*/skills/gate-wf/scripts/workflow.js 2>/dev/null | sort -V | tail -1) \
"$HOME/.claude/skills/gate-wf/scripts/workflow.js"; do
[ -n "$c" ] && [ -f "$c" ] && WF_SCRIPT="$c" && break
done
[ -z "$WF_SCRIPT" ] && { echo "gate-wf: workflow.js not found — reinstall the plugin" >&2; exit 2; }
3c. Invoke and capture result
Invoke the Workflow tool with the resolved script and the run args:
Workflow({
scriptPath: <WF_SCRIPT>,
args: {
tmpDir: "<TMP_DIR>",
reviewers: <REVIEWERS_JSON>, // e.g. ["ai-skills:bug-reviewer", ...]
prNumber: <PR number or null>
}
})
Pass args as a real JSON object (not a stringified blob). The script defensively
normalizes a JSON-stringified args too, but the object form is canonical.
The script assembles its own agent prompts from args (the per-finding schema, the
read-scope/finding-scope and Boy-Scout constraints, the skeptic and context-checker
modes all live in scripts/workflow.js and the agents/*.md system prompts). It returns
{ findings: [...] } where each finding already carries verifications[],
context_verdict/context_source/context_citation/context_reason (and
dismiss_confidence when DISMISSED), reviewer, and also_flagged_by for deduped
duplicates. Synthesized claude-md-violation/adr-violation findings carry
reviewer: "context-checker" with empty verifications[].
After the run, capture the runId from /workflows (task panel). Pass it to Step 5 for
caching and to the verdict footer.
To re-run after editing an agents/*.md, invoke Workflow({scriptPath: <WF_SCRIPT>, resumeFromRunId: <runId>}) (same session) — unchanged agent calls return cached results;
only the edited agent's calls re-run.
3d. Failure modes
- Workflows disabled (
disableWorkflows=true, or CLAUDE_CODE_WORKFLOWS unset): the
Workflow tool errors. Surface it and exit — the skill cannot proceed.
- Reviewer agent type not found: the workflow surfaces a per-agent error. Verify
Step 0 dependencies passed and the plugin is loaded.
workflow.js not found: Step 3b exits — reinstall the plugin.
Step 4: Compute verdict
4a. Banners
Emit any non-empty banner verbatim, in this order:
WRONG_BASE_BANNER
FILE_COUNT_BANNER (only when --ignore-scope-gate bypassed a >200 hard-stop)
SUSPICIOUS_BANNER (soft-warn or bypassed hard-stop)
If none fired, skip this sub-step.
4a-bis. Apply the dismissal registry (partition active vs dismissed)
Before counting, partition the finding set into active and dismissed using the dismissal registry. This is the shared render core — it runs on every output path (fresh run, cache-hit replay, manual flag). On a fresh run, first upsert any context-checker DISMISSED annotations into the registry. Full spec — anchor computation, upsert, and --dismiss/--undismiss/--show-dismissed handling — in references/dismissals.md.
In short: for each finding compute its content-anchor gatewf_anchor "$rule_id" "$file" "$line"; if the anchor is in $DISMISS_FILE → dismissed, else → active. Only active findings flow into verdict math and the B/M/N lists; dismissed ones get D1, D2, … and a separate section.
4b. Verdict math
Count active findings by tier (dismissed findings never count):
| Verdict | Condition |
|---|
| PASS | 0 BLOCKER, 0 MAJOR, 0 NIT |
| PASS WITH NOTES | 0 BLOCKER, ≥1 MAJOR or NIT |
| FAIL | ≥1 BLOCKER |
4c. Assign stable IDs
Sort findings by tier (BLOCKER → MAJOR → NIT), then by reviewer, then by (file, line). Within each tier walk in order:
- BLOCKERs →
B1, B2, ...
- MAJORs →
M1, M2, ...
- NITs →
N1, N2, ...
Persist IDs on each finding so a cache-hit re-render is byte-stable.
4d. Render
### Gate-WF Verdict: <PASS | PASS WITH NOTES | FAIL>
Diff: <N> files, +<add>/-<del>
Run: <runId>
BLOCKER: <N>
MAJOR: <N>
NIT: <N>
For PASS / PASS WITH NOTES:
→ This PR meets the merge bar. MAJOR and NIT items are informational only.
For FAIL:
→ This PR cannot merge until BLOCKER items are resolved.
Then list findings grouped by tier, then by reviewer:
## BLOCKER
### B1 — [security-reviewer] security-sql-injection
- `src/db/users.ts:42` (diff-line) [refute votes: 0/3]
message: User input concatenated into raw SQL query
evidence: `db.query("SELECT * FROM users WHERE id = " + req.params.id)`
fix: Use parameterized query: `db.query("SELECT * FROM users WHERE id = $1", [req.params.id])`
## MAJOR
### M1 — [solid-reviewer] solid-srp
- `src/services/booking.ts:120` (diff-line) [refute votes: 0/1] ❔ ambiguous historical context
message: BookingService now handles 4 unrelated responsibilities
evidence: …
fix: Extract pricing logic into PricingCalculator
context: Linear NAB-204 mentions "BookingService is the gateway, by design"
Display [refute votes: K/N] where N = verifications.length and K is the count of skeptics who refuted. Verify is tier-scaled: BLOCKER runs 3 skeptics (K/3, survives iff K < 2), MAJOR runs 1 (K/1, survives iff K = 0), NIT runs 0 — render [unverified] instead of a vote count (NITs never affect the verdict, so they are shown but not adversarially checked). A deduped duplicate (also_flagged_by present) appends (also: <reviewer>).
For context_verdict:
OK → no badge
UNCERTAIN → ❔ ambiguous historical context + cite context_citation
CONFLICT → ⚠️ conflicts with past decision + cite context_citation
For synthesized claude-md-violation / adr-violation, render the citation as the rule reference: line.
After the active findings, render the Dismissed section (omit if there are no dismissed findings). Full format in references/dismissals.md:
## Dismissed (suppressed — not counted toward the verdict)
### D1 — [security-reviewer] security-sql-injection
- `src/db/users.ts:42` · resolved · PR thread by @author
was: User input concatenated into raw SQL query
citation: "id is validated upstream — see middleware/auth.ts:30"
Render · resolved for confidence: resolved/manual, and · rebutted (thread still open) for rebutted.
After the last finding (active or dismissed), append:
Tip: reference findings by ID to target follow-up fixes — e.g. "fix B1, M1 and N1".
Tip: edit any agents/*.md, then re-run with --resume <runId> to skip unchanged agent calls.
Tip: reviewing someone else's PR? Invoke the `pr-comment` skill to post these findings as a review (drafted via humanizer).
Tip: a dismissed finding reappears automatically if its code is edited (the dismissal is keyed on the code, not the line).
Tip: --dismiss <ids> to suppress a false-positive; --undismiss <Dn> to bring one back; --show-dismissed to list them.
Step 5: Persist state
5a. Findings cache
Write $STATE_FILE:
{
"cache_key": "<CACHE_KEY>",
"cached_at": "<ISO timestamp>",
"verdict": "PASS | PASS WITH NOTES | FAIL",
"run_id": "<wf_...>",
"findings": [ { "id": "B1", ... }, ... ],
"dismissed": [ { "id": "D1", "anchor": "<sha>", "source": "pr-thread|manual", "confidence": "resolved|rebutted|manual", "citation": "...", ... full finding payload ... }, ... ]
}
dismissed[] carries each suppressed finding's full payload plus its anchor/source/confidence/citation, so --undismiss can promote it back and a cache-hit replay can re-partition without re-running the gate. The registry itself ($DISMISS_FILE) is the source of truth for what is dismissed; dismissed[] is the last-rendered snapshot.
5b. Context bundle cache
Write $CONTEXT_CACHE_FILE:
{
"key": "<BRANCH_SAFE>_v2",
"fetched_at": "<ISO timestamp>",
"freshness_signals": { ... from $TMP_DIR/freshness-signals.json ... },
"bundle_sources": {
"linear": "<verbatim ## Linear section>" | null,
"pr": "<verbatim ## PR section>" | null,
"adr": "<verbatim ## ADR section>" | null,
"claude_md": "<verbatim ## CLAUDE.md section>" | null,
"sessions": "<verbatim ## Past Claude Code sessions section>" | null
}
}
Reused-from-cache portions stay as-is.
5c. Cleanup
rm -rf "$TMP_DIR"
find /tmp -maxdepth 1 -type d -name 'gate-wf-*' -mmin +1440 -print 2>/dev/null \
| while read -r d; do
[ "$d" != "$TMP_DIR" ] && rm -rf "$d"
done
for f in "$STATE_DIR"/*.dismissed.json; do
[ -e "$f" ] || continue
b=$(basename "$f" .dismissed.json)
[ -f "$STATE_DIR/$b.json" ] && continue
git show-ref --verify --quiet "refs/heads/$(echo "$b" | tr '_' '/')" || rm -f "$f"
done
Execution notes
- Requires:
CLAUDE_CODE_WORKFLOWS=1 in settings.json.
- Static script: the orchestration is
scripts/workflow.js (shipped with the plugin), invoked via Workflow({scriptPath, args}). It is NOT model-generated, so the shape is fixed run-to-run — no drift (double context-checker, stray extra reviewers), and --resume caches reliably.
- Pipeline shape: the script uses
pipeline() over reviewers — each reviewer's findings stream into per-finding verify the moment its review returns. No barrier between review and verify. CLAUDE.md/ADR synthesis (context-checker in MODE: synthesize) runs alongside the reviewers; the single annotation pass (MODE: annotate) runs once at the end over survivors.
- Tier-scaled verify: BLOCKER → 3 independent skeptics (drop if ≥2 refute), MAJOR → 1 skeptic (drop if it refutes), NIT → 0 (shown, unverified — NITs never affect the verdict, so verifying them was pure cost). Skeptics are refute-prompted (default refuted=true if uncertain) with a ≤6 tool-call budget.
- Dedup: findings are claimed per
(file,line); the first reviewer to claim a line owns it, later duplicates merge in as also_flagged_by without spawning their own skeptics.
- Concurrency cap: workflow runtime caps at 16 parallel agents. Reviewers + skeptics beyond that queue automatically.
- No
Date.now()/Math.random() in the workflow: all timestamps are stamped in this skill (bash + post-workflow). The script is deterministic so resume works.
- Resume:
--resume <runId> → Workflow({scriptPath, resumeFromRunId}). Same session, same args → unchanged agent() calls return cached results; editing one agents/*.md re-runs only that agent's calls.
- Boy Scout asymmetry: adjacent legacy code can be flagged (MAJOR/NIT) but never blocks the gate.
- Tier semantics: only BLOCKER affects the verdict. MAJOR and NIT are informational.
- Dismissals: false-positives are suppressed via a per-branch registry kept outside
CACHE_KEY (references/dismissals.md). Suppression is keyed on the offending code's text (a content-anchor), so it survives diff churn but lifts the moment the code is edited. Two populators: PR review threads the author resolved (auto, via the context-checker) and --dismiss <ids> (manual). Dismissed findings are excluded from findings[] — so pr-comment never re-posts them — and from the verdict, but always shown in a Dismissed (N) section. This is what stops a blocker the author marked false-positive from being re-posted indefinitely.
- No auto-fix in v1: v1 is read-only review.
--fix mode is reserved for v2.
- Coexists with the legacy
gate skill during migration.
References
references/context-sources.md — CLAUDE.md (F2) + ADR (F3) discovery and enforcement
references/scope-gate.md — file-count + suspicious-files classifier (Step 2c)
references/dismissals.md — dismissal registry: content-anchor identity, PR-thread + manual populators, render core, --dismiss/--undismiss/--show-dismissed