status
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseProject 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 --shortbash
git log --oneline -10
git branch -a --sort=-committerdate | head -15
git worktree list
git status --short2. GitHub Issues
2. GitHub Issues
bash
undefinedbash
undefinedOpen 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 for any non- plan files. Read their Status field.
ai-workspace/plans/.done.md检查目录下所有非后缀的计划文件,读取其中的状态字段。
ai-workspace/plans/.done.md4. Memory State
4. 内存状态
- Read — note line count vs 200-line limit
ai-workspace/MEMORY.md - Check — how long since last /reflect
ai-workspace/.last-reflect-ts - Check in cwd — any uncommitted learnings
.branch-context.md
- 读取——标注当前行数与200行上限的对比
ai-workspace/MEMORY.md - 检查——统计距离上次执行/reflect的时长
ai-workspace/.last-reflect-ts - 检查当前工作目录下的——是否存在未提交的经验总结
.branch-context.md
5. Scratchpad
5. 便签板
Read — count items awaiting elevation.
ai-workspace/scratchpad.md- [ ]读取——统计待升级的项数量。
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以紧凑的仪表盘形式呈现。根据实际可获取的数据调整展示板块,没有内容的板块直接跳过,无需展示空表格。
undefinedProject 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>)
| # | Title | Labels | Updated |
|---|---|---|---|
| (most recent 10, sorted by updated) |
| # | Title | Labels | Updated |
|---|---|---|---|
| (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(可关闭)