spec-loop-status
2
总安装量
1
周安装量
#63753
全站排名
安装命令
npx skills add https://github.com/surajpatildev/spec-loop --skill spec-loop-status
Agent 安装分布
mcpjam
1
claude-code
1
replit
1
junie
1
windsurf
1
zencoder
1
Skill 文档
Spec-Loop Status
Quick orientation. Answers: “Where are we?” Reads state from files â works after compaction, new sessions, or when picking up someone else’s work.
Workflow
1. Check for Active Specs
Look in .agents/specs/ for directories containing task files with Status: pending, Status: in-progress, or Status: in-review.
2. For Each Active Spec
- Read all task files -> count by status (done / in-review / in-progress / pending / blocked)
- Identify next eligible task (pending, deps met)
- If
progress.mdexists, read the last 3 log entries
3. Check Git State
- Run
git log --oneline -5for recent commits - Run
git branch --show-currentto show current branch
4. Report
## Active: <spec-name>
Branch: <current branch name>
Tasks: N/M done | N in-review | N in-progress | N pending | N blocked
Next: Task N â <name> (depends on: N, N)
### Recent Progress
[YYYY-MM-DD HH:MM] Task N: <Name> â <summary>
## Recent Commits
abc1234 <message>
def5678 <message>
If no active specs, report:
No active specs. Recent commits shown below.
Use `/spec-loop-spec` to create a new feature spec, or run `spec-loop run` for standalone work.
Rules
- Read-only â never modify any files
- Show all active specs, not just the first one found
- If a task is in-progress with no recent commits, flag it: “Task N: in-progress (possibly stale â no commits since YYYY-MM-DD)”