with one click
ce-resume
回归项目入口:读取最近 git log、IDEAS.md 和 active plan,输出三段摘要
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
回归项目入口:读取最近 git log、IDEAS.md 和 active plan,输出三段摘要
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Fork Overlay:Task Bundle 持久化 + Failure FSM 集成。在 ce:work 基础上增加 state.md 读写和状态机转换。使用时机:执行 ce:work 时,如果任务有对应的 Task Bundle(docs/tasks/<id>/),加载此 skill 以启用持久化和状态追踪。
Fork Overlay:Codex-first 外部执行器策略。按任务特征路由到 Claude 或 Codex,Codex-first(非品牌路由)。使用时机:需要决定是否将当前任务派发给 Codex 时加载此 skill。
Fork Overlay:经验分层沉淀升级阶梯。检测是否值得将 solution 升级为 pattern 或 skill。使用时机:ce:compound 完成后手动调用,分析 docs/solutions/ 中的重复模式。(不会自动触发,需主动加载此 skill)
Fork Overlay:外部模型调用前置检查门控。调用 Codex/Gemini 之前运行五项检查,防止调用失败浪费时间。使用时机:任何调用外部模型(Codex [C]、Gemini [G])之前自动运行。
Fork Overlay:ce:work 意图分类门控。在执行前识别任务意图(实现/修复/重构/探索),设定对应的执行策略。使用时机:ce:work Phase 0(环境扫描)之后、Phase 1(Quick Start)之前。
Fork Overlay:Codex Patch Approval 咨询版。当 Codex 返回 patch 时,Claude 审批后才写入文件。使用时机:Codex 以 patch/diff 格式返回代码变更时,由 Claude 作为审批层。
| name | ce:resume |
| description | 回归项目入口:读取最近 git log、IDEAS.md 和 active plan,输出三段摘要 |
| argument-hint | [可选:关注点或目标] |
Note: The current year is 2026.
ce:resume 是间歇性开发者回到项目的起点。运行后你会在 30 秒内知道:
然后直接跳入你选择的路径。
使用平台的阻塞问答工具(Claude Code 中为 AskUserQuestion)。
同时执行以下三个读取操作:
git log --oneline -10
读取项目根目录 IDEAS.md:
- [ ] 出现次数)**[标题]** 部分)扫描 docs/plans/*.md(若目录不存在则跳过):
--- 之间的 YAML)status: active 的文件date 字段降序排序,取最新 1-3 个title(frontmatter 中)和 date基于收集的数据,输出固定格式的三段摘要:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📋 项目状态摘要
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
## 上次做了什么
[来源 A 可用时:] 最近的功能性提交:[commit subject]
[附上最近 3-5 条 oneline log,让用户快速定向]
[来源 A 不可用时:] 无法读取 git 历史。
---
## 有什么在等待
[来源 B 可用时:]
💡 IDEAS.md:[N] 个未执行想法
• [条目 1 标题]
• [条目 2 标题]
• [条目 3 标题]
[若 N > 3,加:] ...等 [N-3] 个更多
[来源 B 不可用时:] IDEAS.md 不存在。
[来源 C 可用时:]
📐 进行中的计划:
• [plan title 1] ([date])
• [plan title 2] ([date])
[来源 C 不可用时:] 尚无进行中的计划。
---
## 建议下一步
[推断逻辑:]
- 若有 active plan → 「建议继续 [最新 plan title],离完成最近」
- 若无 active plan 但 IDEAS.md 有内容 → 「建议从 IDEAS.md 选一个方向,运行 /ce:ideas」
- 若两者都空 → 「项目看起来是全新状态,建议运行 /ce:ideate 或 /ce:ideas 从头探索」
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
使用 AskUserQuestion 询问用户选择:
「好的,你想从哪里开始?」
动态选项(根据数据可用性调整):
选项 1(仅当有 active plan 时显示):继续上次任务
→ Invoke skill compound-engineering:ce-work with args: [最新 active plan 路径]
选项 2(仅当 IDEAS.md 有内容时显示):从 IDEAS.md 选一个方向
→ Invoke skill compound-engineering:ce-ideas with args: (无参数)
选项 3:全新开始(从头探索新方向)
→ Invoke skill compound-engineering:ce-ideate with args: (无参数)
选项 4:暂时不操作,我自己来
Based on selection:
ce-work 并传入对应 plan 文件路径ce-ideas(无参数,进入停车场选择路径)ce-ideate(无参数,open-ended ideation)