skills/status/SKILL.md
Show all active work sessions across brainstorms, requirements, proposals, and epics. Fast overview of where you left off.
npx skillsauth add nexus-a1/claude-skills statusInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Show all active work sessions so you know where you left off.
/status # Show all active sessions
/status {slug} # Show detailed status for one session
Read .claude/configuration.yml for project-specific paths. If the file doesn't exist or a key is missing, use defaults:
| Config Key | Default | Purpose |
|-----------|---------|---------|
| storage.artifacts.work | location: local, subdir: work | Work sessions |
# Source resolve-config: marketplace installs get ${CLAUDE_PLUGIN_ROOT} substituted
# inline before bash runs; ./install.sh users fall back to ~/.claude. If neither
# path resolves, fail loudly rather than letting resolve_artifact be undefined.
if [ -f "${CLAUDE_PLUGIN_ROOT}/shared/resolve-config.sh" ]; then
source "${CLAUDE_PLUGIN_ROOT}/shared/resolve-config.sh"
elif [ -f "$HOME/.claude/shared/resolve-config.sh" ]; then
source "$HOME/.claude/shared/resolve-config.sh"
else
echo "ERROR: resolve-config.sh not found. Install via marketplace or run ./install.sh" >&2
exit 1
fi
WORK_DIR=$(resolve_artifact work work)
/status)MANIFEST="${WORK_DIR}/manifest.json"
if [[ ! -f "$MANIFEST" ]]; then
# No manifest — scan directories for state.json files
for dir in "${WORK_DIR}"/*/; do
[[ -f "${dir}state.json" ]] && echo "${dir}state.json"
done
fi
Read the manifest and display all sessions grouped by status. Omit entries where status == "completed" from active sessions.
Promoted brainstorms (status == "promoted") are shown dimmed under Brainstorm with a "→ {ticket}" link:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Active Work Sessions
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🔵 Brainstorm
user-export User Data Export deep_dive 2h ago
sso-integration SSO with Azure AD Promoted → PROJ-456
🟡 Requirements
PROJ-123 Payment Refund Flow deep_dive 3h ago
PROJ-456 SSO Integration (from sso-integration) 1h ago
🟠 Proposal
AUTH-001 User Authentication System drafts (2) 1d ago
🟢 Epic
checkout-v2 Checkout Redesign 3/8 tickets 4h ago
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
To resume: /resume-work {identifier}
To load context: /load-context {identifier}
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Formatting rules:
status == "promoted": show Promoted → {promoted_to} instead of phase/timestampbrainstorm.promoted_from: show (from {promoted_from}) next to last-updatedIf no active sessions:
No active work sessions.
Start one:
/brainstorm — explore approaches for a feature
/create-requirements — deep requirements for a ticket
/epic — break down a large initiative
/status {slug})Read $WORK_DIR/{slug}/state.json and display a detailed phase view:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
PROJ-123 — Payment Refund Flow
Type: Requirements | Status: in_progress
Branch: feature/PROJ-123
Last updated: 3 hours ago
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✓ Stage 1 Setup — feature branch created
✓ Stage 2 Discovery — context-builder complete
→ Stage 3 Deep dive — archaeologist ✓ data-modeler ✓ integration-analyst ⏳
○ Stage 4 Synthesis — pending
○ Stage 4.8 Quality guard — pending
Context files: 2/4 agents complete
✓ context/archaeologist.md
✓ context/data-modeler.md
⏳ context/integration-analyst.md
○ context/architect.md
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Next: /resume-work PROJ-123
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
For type: "brainstorm", display the phases table. For type: "epic", display the wave/ticket summary.
manifest.json when available (fast); falls back to directory scan + state file reads/resume-work {slug} actually resumes; /status only reportsdevelopment
Add a new entry to the product knowledge base. Wizard-guided — prompts for category, title, and content, then writes a structured markdown file and rebuilds the manifest.
data-ai
Show all active work sessions across brainstorms, requirements, proposals, and epics. Supports --update to advance lifecycle on one session and --sync to sweep them all.
documentation
Review and update project documentation using an agent team. Inventories docs, identifies gaps and drift, updates technical and API docs in parallel.
tools
Annotate an active work session with a note, scope change, or new finding. Auto-detects the active session, synthesizes the salient points of the current conversation, and appends a timestamped entry to state.json after a single target confirmation. Use mid-session when you learn something that should be preserved.