Help us improve
Share bugs, ideas, or general feedback.
Run a single consensus gate check for one phase (no pipeline state advancement).
npx claudepluginhub krzemienski/multi-agent-consensus --plugin multi-agent-consensusHow this command is triggered — by the user, by Claude, or both
Slash command
/multi-agent-consensus:consensus-validate --phase PHASE [--target PATH]This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
Activate the **consensus-pipeline** skill for a single-phase gate check. Unlike `/consensus-run`, this produces evidence but does NOT mutate `$target/.consensus/state.json` — useful for spot-checks after a targeted fix. Ports `src/consensus/cli.py:101-147` (validate subcommand) semantics. ## Arguments Parse `$ARGUMENTS`: - `--phase PHASE` (required) — the phase to validate (e.g., `audit`) - `--target PATH` — path to target repo (default: `.`) ## Execution 1. Read config from `$TARGET/.claude/consensus.local.md` (fall back to defaults from `src/consensus/config.py:29-56`). 2. Verify `PH...
Share bugs, ideas, or general feedback.
Activate the consensus-pipeline skill for a single-phase gate check. Unlike /consensus-run, this produces evidence but does NOT mutate $target/.consensus/state.json — useful for spot-checks after a targeted fix. Ports src/consensus/cli.py:101-147 (validate subcommand) semantics.
Parse $ARGUMENTS:
--phase PHASE (required) — the phase to validate (e.g., audit)--target PATH — path to target repo (default: .)$TARGET/.claude/consensus.local.md (fall back to defaults from src/consensus/config.py:29-56).PHASE is a known phase name per config + defaults. Exit non-zero if unknown.bash ${CLAUDE_PLUGIN_ROOT}/skills/consensus-pipeline/scripts/init-evidence-dir.sh $TARGET $PHASE./consensus-run).bash ${CLAUDE_PLUGIN_ROOT}/skills/consensus-pipeline/scripts/gate-check.sh $TARGET $PHASE 1 (single gate, gate_number=1).$TARGET/.consensus/evidence/$PHASE/gate-1-verdict.json. Do NOT create or modify $TARGET/.consensus/state.json — this command is a spot-check, not a pipeline run.Exit 0 on unanimous PASS, 1 on any FAIL, 2 on hard error (malformed JSON / missing votes).
/consensus-runA full /consensus-run over the default 4-phase pipeline (explore,audit,fix,verify) with a fix cycle spends roughly 24–30 LLM completions — 3 agents × 4 phases × up to 2 gates per phase. That is the expensive path.
Use /consensus-validate --phase audit FIRST when you want to spot-check agent calibration before committing to the full burn. The canary:
$TARGET/.consensus/evidence/audit/gate-1-*.json you can inspect before deciding.Recommended flow for new targets:
/consensus-validate --phase audit --target <TARGET> (canary, ~3 completions)./consensus-run --target <TARGET> for the full pipeline.This pattern is load-bearing for budget protection: it catches sample-validity and prompt-interpolation bugs BEFORE the ~30-completion phase-04 dogfood run.