Help us improve
Share bugs, ideas, or general feedback.
Show the merged consensus configuration (.claude/consensus.local.md overlaid on defaults).
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-show-configThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
Render the effective consensus configuration — the merged result of `.claude/consensus.local.md` frontmatter (if present in the current workspace) overlaid on the hard-coded defaults from `src/consensus/config.py:29-56`. Read-only. ## Execution 1. Start with the default configuration: 2. Look for `.claude/consensus.local.md` in the current workspace root. 3. If present, extract its frontmatter (the YAML between the first two `---` lines) and deep-merge it over the defaults — user-provided keys override defaults, absent keys fall through. 4. Render the merged configuration as a fence...
Share bugs, ideas, or general feedback.
Render the effective consensus configuration — the merged result of .claude/consensus.local.md frontmatter (if present in the current workspace) overlaid on the hard-coded defaults from src/consensus/config.py:29-56. Read-only.
Start with the default configuration:
enabled: true
agents:
lead: { model: opus, timeout_seconds: 300, temperature: 0.0 }
alpha: { model: sonnet, timeout_seconds: 300, temperature: 0.0 }
bravo: { model: sonnet, timeout_seconds: 300, temperature: 0.0 }
phases: [explore, audit, fix, verify]
max_fix_cycles: 3
parallel_agents: true
invocation_mode: task
require_unanimous: true
require_evidence: true
evidence_dir: .consensus/evidence
state_file: .consensus/state.json
fix_agent: null
Look for .claude/consensus.local.md in the current workspace root.
If present, extract its frontmatter (the YAML between the first two --- lines) and deep-merge it over the defaults — user-provided keys override defaults, absent keys fall through.
Render the merged configuration as a fenced YAML block. Prefix with a one-line source indicator:
source: .claude/consensus.local.md if the override file was foundsource: defaults (no .claude/consensus.local.md) otherwise.Do NOT write the merged config back to disk. Do NOT invoke agents. Pure render.
The Python CLI's equivalent is consensus show-config (cli.py:200-213). The plugin and pipx CLI produce the same merged output when pointed at the same workspace.