status

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Project Status Report

项目状态报告

Generate a concise project status dashboard. This is a read-only snapshot — it doesn't modify anything.
生成简洁的项目状态仪表盘。这是只读快照,不会修改任何内容。

Data Collection

数据收集

Gather these in parallel where possible:
尽可能并行收集以下信息:

1. Git State

1. Git 状态

bash
git log --oneline -10
git branch -a --sort=-committerdate | head -15
git worktree list
git status --short
bash
git log --oneline -10
git branch -a --sort=-committerdate | head -15
git worktree list
git status --short

2. GitHub Issues

2. GitHub Issues

bash
undefined
bash
undefined

Open issues, sorted by most recent

Open issues, sorted by most recent

gh issue list --state open --json number,title,labels,updatedAt --limit 20
gh issue list --state open --json number,title,labels,updatedAt --limit 20

Recently closed (last 7 days)

Recently closed (last 7 days)

gh issue list --state closed --json number,title,closedAt --limit 10 | jq '[.[] | select(.closedAt > (now - 604800 | todate))]'

If `gh` is not authenticated, skip this section and note "GitHub CLI not authenticated — issue data unavailable."
gh issue list --state closed --json number,title,closedAt --limit 10 | jq '[.[] | select(.closedAt > (now - 604800 | todate))]'

如果`gh`未完成身份验证,请跳过此部分并标注“GitHub CLI未授权——issue数据不可用。”

3. Active Plans

3. 活跃计划

Check
ai-workspace/plans/
for any non-
.done.md
plan files. Read their Status field.
检查
ai-workspace/plans/
目录下所有非
.done.md
后缀的计划文件,读取其中的状态字段。

4. Memory State

4. 内存状态

  • Read
    ai-workspace/MEMORY.md
    — note line count vs 200-line limit
  • Check
    ai-workspace/.last-reflect-ts
    — how long since last /reflect
  • Check
    .branch-context.md
    in cwd — any uncommitted learnings
  • 读取
    ai-workspace/MEMORY.md
    ——标注当前行数与200行上限的对比
  • 检查
    ai-workspace/.last-reflect-ts
    ——统计距离上次执行/reflect的时长
  • 检查当前工作目录下的
    .branch-context.md
    ——是否存在未提交的经验总结

5. Scratchpad

5. 便签板

Read
ai-workspace/scratchpad.md
— count
- [ ]
items awaiting elevation.
读取
ai-workspace/scratchpad.md
——统计待升级的
- [ ]
项数量。

Output Format

输出格式

Present as a compact dashboard. Adapt the sections based on what data is available — skip sections with no content rather than showing empty tables.
undefined
以紧凑的仪表盘形式呈现。根据实际可获取的数据调整展示板块,没有内容的板块直接跳过,无需展示空表格。
undefined

Project Status: <repo-name>

Project Status: <repo-name>

<date>

<date>

Branch: <current branch> | Mode: <autonomous/copilot> | Last reflect: <relative time>
Branch: <current branch> | Mode: <autonomous/copilot> | Last reflect: <relative time>

Open Issues (<count>)

Open Issues (<count>)

#TitleLabelsUpdated
(most recent 10, sorted by updated)
#TitleLabelsUpdated
(most recent 10, sorted by updated)

Recently Closed (<count>, last 7d)

Recently Closed (<count>, last 7d)

  • #N title (closed <date>)
  • #N title (closed <date>)

Active Work

Active Work

  • Branches: <list active non-main branches>
  • Worktrees: <list linked worktrees>
  • Plans in progress: <list non-.done.md plans>
  • Branches: <list active non-main branches>
  • Worktrees: <list linked worktrees>
  • Plans in progress: <list non-.done.md plans>

Health

Health

  • MEMORY.md: <line count>/200 lines
  • Scratchpad: <N> items flagged for elevation
  • Last reflect: <timestamp or "never">
  • .branch-context.md: <exists with N lines / not found>
  • MEMORY.md: <line count>/200 lines
  • Scratchpad: <N> items flagged for elevation
  • Last reflect: <timestamp or "never">
  • .branch-context.md: <exists with N lines / not found>

Suggested Next

Suggested Next

(Pick 2-3 based on what you see — e.g., stale issues, scratchpad items to elevate, overdue reflect, MEMORY.md near limit)

The "Suggested Next" section is the most valuable part — it turns a passive report into actionable guidance. Base suggestions on:
- Issues with no recent activity
- `- [ ]` scratchpad items that should become issues
- MEMORY.md approaching 200 lines (needs pruning)
- Long time since last /reflect
- Branches with no recent commits (stale work)
- Open issues that match recently completed work (may be closeable)
(Pick 2-3 based on what you see — e.g., stale issues, scratchpad items to elevate, overdue reflect, MEMORY.md near limit)

“Suggested Next”板块是最具价值的部分,它将被动的报告转化为可执行的指导建议。可基于以下维度生成建议:
- 近期无活动更新的issue
- 应当转化为issue的`- [ ]`便签项
- MEMORY.md接近200行上限(需要精简内容)
- 距离上次执行/reflect间隔过久
- 长期无新提交的分支(陈旧工作内容)
- 与近期已完成工作匹配的未关闭issue(可关闭)