Agent skill
status
Use when the user returns to a session and asks about progress, current state, what happened, or where they left off. Provides status dashboard and execution recovery.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/status-cmtkdot-arc
SKILL.md
Status
Inspect and recover workflow state. Use this to check progress, find where a session left off, or resume interrupted execution.
Resume Checks
Restore state from:
- Beads status (
bd ready,bd list --status in_progress) - Task list state if
CLAUDE_CODE_TASK_LIST_IDis set - Last known plan/spec references in workspace
.arc/state.jsonpersisted byexecute
CLAUDE_CODE_TASK_LIST_ID source of truth:
- Current shell env var
.claude/settings.json->env.CLAUDE_CODE_TASK_LIST_ID
If missing from both locations, resume with Beads-only state and print a warning.
Prefer .arc/state.json for last known mode/source/paths, then reconcile with live Beads and task list.
Resume state read example:
if [[ -f .arc/state.json ]]; then
cat .arc/state.json
else
echo "ARC: no .arc/state.json found; resuming from live Beads/task state only"
fi
Output
Report:
- Current execution mode
- Ready/blocked/in-progress counts
- Recommended next command
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?