consensus-loopstatus

star 14

Show current consensus-loop status — pending reviews, audit state, retro marker, agent assignments. Use to check what's happening before starting work or after returning from a break.

berrzebb By berrzebb schedule Updated 3/20/2026

name: consensus-loop:status description: "Show current consensus-loop status — pending reviews, audit state, retro marker, agent assignments. Use to check what's happening before starting work or after returning from a break."

Consensus Loop Status

Check the current state of the feedback cycle.

Checks

  1. Config:
node -e "const c=JSON.parse(require('fs').readFileSync('${CLAUDE_PLUGIN_ROOT}/config.json','utf8'));console.log('watch_file:',c.consensus.watch_file);console.log('trigger:',c.consensus.trigger_tag);console.log('agree:',c.consensus.agree_tag);console.log('pending:',c.consensus.pending_tag)"
  1. Audit lock:
cat "$(git rev-parse --show-toplevel)/.claude/audit.lock" 2>/dev/null || echo "No audit running"
  1. Retro marker:
cat ${CLAUDE_PLUGIN_ROOT}/.session-state/retro-marker.json 2>/dev/null || echo "No retro pending"
  1. Session handoff (if exists):
head -30 "$(git rev-parse --show-toplevel)/.claude/session-handoff.md" 2>/dev/null || echo "No handoff"

Output

Summarize:

  • Tag counts (trigger/pending/agree items in watch file)
  • Audit status (running/idle, last timestamp)
  • Retro status (pending/complete)
  • Active agents (from handoff: in-progress tasks with agent_id)
Install via CLI
npx skills add https://github.com/berrzebb/consensus-loop --skill consensus-loopstatus
Repository Details
star Stars 14
call_split Forks 4
navigation Branch main
article Path SKILL.md
More from Creator