AgentSkillsCN

status

展示当前项目状态,包括任务、测试与工作树。当您需要检查项目健康状况时,可选用此功能。

SKILL.md
--- frontmatter
name: status
description: Shows current project status including tasks, tests, and worktrees. Use when checking project health.

Project Status

プロジェクトの現在のステータスを確認します。

Quick Status

Git

!echo "Branch: $(git branch --show-current)" && git status --short | head -5 || echo "Clean"

Worktrees

!git worktree list --porcelain 2>/dev/null | grep -c "^worktree" | xargs -I{} echo "Active worktrees: {}"

Active Agents

!./scripts/monitor-agents.sh 2>/dev/null | grep -c "idle\|working" | xargs -I{} echo "Running agents: {}" || echo "Running agents: 0"

Orchestrator

!./scripts/orchestrate.sh --status 2>/dev/null || echo "Not running"

Full Status Check

1. ROADMAP Progress

bash
# Count tasks by status
grep -E "^\|" spec/tasks/ROADMAP.md | grep -c "Done" | xargs echo "Done:"
grep -E "^\|" spec/tasks/ROADMAP.md | grep -c "In Progress" | xargs echo "In Progress:"
grep -E "^\|" spec/tasks/ROADMAP.md | grep -c "Pending" | xargs echo "Pending:"

2. Tests

bash
npm run test:all

3. Build

bash
npm run build

4. Uncommitted Changes

bash
git status

5. Worktree Status

bash
git worktree list

Output Format

markdown
## Project Status

### Task Progress
- Done: X
- In Progress: X
- Pending: X
- Next priority: [task name](spec/tasks/active/xxx.md)

### Tests
- passed: X / failed: X / skipped: X

### Build
- Success / Failure

### Git
- Branch: xxx
- Uncommitted changes: yes / no

### Worktrees
- (list of active worktrees)

### Agents
- (list of running agents with states)