一键导入
spec-status
Show specification progress and next tasks
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Show specification progress and next tasks
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate changelog entries following Keep a Changelog format
Generate a well-structured pull request with summary and test plan
Cluster related instincts into skills, commands, or agents
Export instincts for sharing with teammates or backup
Import instincts from teammates or community collections
View learned instincts grouped by domain with confidence levels
| name | spec-status |
| description | Show specification progress and next tasks |
| user-invocable | true |
Display the current status of one or all specifications, including task progress, completion percentage, and recommended next actions.
$ARGUMENTS — Optional: spec slug to show details for a specific specRead all .spec/*.spec.md files and display summary:
## Active Specifications
| Spec | Status | Progress | Next Task |
|------|--------|----------|-----------|
| user-auth | active | 5/12 (42%) | 2.3 Implement logout |
| api-rate-limit | draft | 0/8 (0%) | Review spec |
| payment-integration | completed | 15/15 (100%) | — |
**Total:** 3 specs, 20/35 tasks complete (57%)
Read .spec/{slug}.spec.md and .spec/{slug}.tasks.md:
## Spec: User Authentication
**Status:** active
**Created:** 2026-02-05
**Updated:** 2026-02-05
**Progress:** 5/12 tasks (42%)
### Task Status
#### Phase 1: Foundation ✓ Complete
- [x] 1.1 Create database migration for users table
- [x] 1.2 Create database migration for sessions table
- [x] 1.3 Create User model with repository pattern
#### Phase 2: Core Implementation (In Progress)
- [x] 2.1 Implement AuthService.register()
- [x] 2.2 Implement AuthService.login()
- [ ] 2.3 Implement AuthService.logout() ← **NEXT**
- [ ] 2.4 Create auth middleware
#### Phase 3: Hardening
- [ ] 3.1 Add rate limiting
- [ ] 3.2 Add input validation
- [ ] 3.3 Add comprehensive tests
### Progress Bar
[████████░░░░░░░░░░░░] 42%
### Recent Activity
- 2026-02-05: Completed task 2.2 (login implementation)
- 2026-02-05: Completed task 2.1 (register implementation)
### Recommended Actions
1. Continue with task 2.3: Implement AuthService.logout()
2. Run `/spec-task user-auth 2.3 start` to begin
3. After completing Phase 2, run `/verify` before Phase 3
| Status | Meaning |
|---|---|
draft | Spec created but not yet approved for implementation |
active | Implementation in progress |
completed | All tasks done and verified |
archived | Spec retained for reference but no longer active |
Progress is calculated from the tasks file:
[x] (completed) vs [ ] (pending) checkboxesCompact table of all specs with key metrics.
Full task breakdown with progress bars and recommendations.
If the user requests JSON format:
{
"spec": "user-auth",
"status": "active",
"created": "2026-02-05",
"updated": "2026-02-05",
"progress": {
"completed": 5,
"total": 12,
"percentage": 42
},
"nextTask": {
"id": "2.3",
"title": "Implement AuthService.logout()"
}
}
| Condition | Response |
|---|---|
No .spec/ directory | "No specs found. Create one with /spec-new" |
| Spec slug not found | "Spec '{slug}' not found. Available: [list]" |
| Tasks file missing | "Tasks file missing for '{slug}'. Regenerate with planner agent." |