Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

status

verified

Quick status check of current work state. Use when the user asks "what's my status", "show status", "where am I", "current state", or needs a snapshot of active work, ready issues, and git state.

View on GitHub

Marketplace

agentops-marketplace

boshu2/agentops

Plugin

beads-kit

productivity

Repository

boshu2/agentops
7stars

plugins/beads-kit/skills/status/SKILL.md

Last Verified

January 24, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/boshu2/agentops/blob/main/plugins/beads-kit/skills/status/SKILL.md -a claude-code --skill status

Installation paths:

Claude
.claude/skills/status/
Powered by add-skill CLI

Instructions

# Status Skill

Quick snapshot of current work state.

## Instructions

Run these checks and report a concise summary:

### 1. Active Work

```bash
echo "=== Active Issues ==="
bd list --status in_progress 2>/dev/null || echo "No beads configured"
```

### 2. Ready Issues

```bash
echo "=== Ready Issues (Top 5) ==="
bd ready 2>/dev/null | head -5 || echo "No ready issues"
```

### 3. Recent Files

```bash
echo "=== Recent Files (last 30min) ==="
find . -type f \( -name "*.py" -o -name "*.md" -o -name "*.ts" -o -name "*.go" \) -mmin -30 2>/dev/null | grep -v node_modules | grep -v __pycache__ | grep -v vendor | head -10 || echo "No recent changes"
```

### 4. Git State

```bash
echo "=== Git Status ==="
git status -s 2>/dev/null | head -10 || echo "Not a git repo"
```

### 5. Hook Check (Gas Town)

```bash
echo "=== Hook Status ==="
gt hook 2>/dev/null || echo "Not in Gas Town"
```

## Output Format

Report concisely:
- X issues in progress
- Y issues ready
- Z files modified recently
- Git: clean/dirty
- Hook: work assigned or empty

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
1033 chars