AgentSkillsCN

status

从 tasks/todo.md 中了解当前项目进展,明确下一步的工作重点

SKILL.md
--- frontmatter
name: status
description: Show current project progress from tasks/todo.md and what to work on next
argument-hint: ""
user-invocable: true
allowed-tools: "Read, Bash(git status*), Bash(git branch*), Bash(git log*)"

Show the current project status — what's done, what's in progress, and what's next.

Process

  1. Read tasks/todo.md — Parse the plan and identify:
    • Completed items (checked boxes)
    • In-progress items
    • Next unchecked items
    • Any upcoming checkpoints
  2. Check git state — Current branch, uncommitted changes, recent commits.
  3. Check tasks/lessons.md — Any recent entries relevant to current work.

Output Format

code
## Project Status

**Branch**: feat/current-branch
**Plan status**: X/Y steps complete

### Completed
- [list of done items]

### In Progress
- [current work]

### Up Next
- [next 2-3 items]

### Blockers
- [any blocked items or concerns]

### Recent Lessons
- [relevant entries from lessons.md, if any]

Keep it concise — this is a quick status check, not a deep analysis.