# Consensus Loop:status

> 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.

- Skill: `berrzebb/consensus-loop-status` (Agent Skill)
- Install (CLI): `npx skillmds@latest add berrzebb/consensus-loop-status`
- Raw SKILL.md: https://api.skillmd.com/api/skills/berrzebb/consensus-loop-status/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: berrzebb (https://skillmd.com/u/berrzebb)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/berrzebb/consensus-loop-status

---


# Consensus Loop Status

Check the current state of the feedback cycle.

## Checks

1. **Config**:
```bash
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)"
```

2. **Audit lock**:
```bash
cat "$(git rev-parse --show-toplevel)/.claude/audit.lock" 2>/dev/null || echo "No audit running"
```

3. **Retro marker**:
```bash
cat ${CLAUDE_PLUGIN_ROOT}/.session-state/retro-marker.json 2>/dev/null || echo "No retro pending"
```

4. **Session handoff** (if exists):
```bash
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)

