← ClaudeAtlas

reflect-statuslisted

Show reflection metrics, pending reviews, sidecar coverage, and GraphRAG health. Read-only views into the reflect system state. Can also approve/reject pending low-confidence items.
stevengonsalvez/agents-in-a-box · ★ 14 · AI & Automation · score 77
Install: claude install-skill stevengonsalvez/agents-in-a-box
# Reflect: Status - Metrics & Review Show the current state of the reflect system: metrics, pending reviews, sidecar coverage, and GraphRAG health. Also handles review of pending low-confidence items. ## When to Use - To check how many learnings have been captured - To review pending low-confidence items - To audit sidecar coverage (find knowledge notes missing sidecars) - To check GraphRAG health (node/edge counts) - To see which agents have been updated most ## Status View When invoked, display the following sections: ### 1. Reflect State ```bash python {{HOME_TOOL_DIR}}/skills/reflect/scripts/state_manager.py status ``` Shows: - Auto-reflect: enabled/disabled - Last reflection: timestamp - Pending reviews: count ### 2. Aggregate Metrics ```bash python {{HOME_TOOL_DIR}}/skills/reflect/scripts/metrics_updater.py --show ``` Shows: - Sessions analyzed - Total signals detected - Changes proposed / accepted (acceptance rate) - Skills created - Estimated time saved - Confidence breakdown (high/medium/low) - Most updated agents (top 5) ### 3. Sidecar Coverage Check how many knowledge notes have entity sidecars: ```bash # Count knowledge notes NOTES=$(find docs/solutions -name "*.md" -not -name "README.md" 2>/dev/null | wc -l | tr -d ' ') # Count sidecars SIDECARS=$(find docs/solutions -name "*.entities.yaml" 2>/dev/null | wc -l | tr -d ' ') # Find notes missing sidecars for md in $(find docs/solutions -name "*.md" -not -name "README.md" 2>/dev/null); do sidecar