一键导入
resume-work
Resume previously saved work — restores session context from sessions_dir, rebuilds mental model, and continues from the first unchecked plan step
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Resume previously saved work — restores session context from sessions_dir, rebuilds mental model, and continues from the first unchecked plan step
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create GitHub pull requests — picks the most token-efficient available method (gh CLI, GitHub MCP, or git push), and sources the PR body from an existing spec/plan instead of re-analyzing the diff
Prime — load project context by reading docs, the docs_context layer, core docs, and TODO before starting any task
Feature planning — research codebase, design options, write a structured spec/implementation plan to the project specs directory
Generate feature documentation by analyzing code changes and specifications — creates markdown docs in docs/core/ with conditional context
Bootstrap any project's AI workspace — detect the current tool, extract hardcoded paths from skill/command/agent files, write a central workspace.md, update all files to use config keys
Build or refresh the codebase graph indexes (codebase-memory-mcp structural index + graphify semantic graph) that other skills read from. The single writer — idempotent, incremental, safe to call repeatedly.
| name | resume-work |
| description | Resume previously saved work — restores session context from sessions_dir, rebuilds mental model, and continues from the first unchecked plan step |
| metadata | {"phase":"checkpoint","input":"optional path to a session summary file; if omitted, lists recent sessions to choose from","output":"restored context summary and continuation of implementation from last checkpoint","dependencies":"the tool's workspace file, if configured via central-workspace — informational only, not directly loaded or searched by this skill"} |
Resume previously saved work by restoring full context and continuing implementation.
Use sessions_dir (default: docs/sessions/) from # WORKSPACE.
If a session file path was provided as an argument, read it directly.
If no path was provided, list recent sessions and ask the user to choose:
ls -la docs/sessions/ # or the discovered sessions_dir value
Read in this order:
git status
git log --oneline -10
git stash list
Present a brief context summary to the user:
## Resuming: [Feature Name]
### Where We Left Off
- Working on: [Specific task]
- Phase: [X of Y]
- Last action: [What was being done]
### Current State
- [ ] Tests passing: [status]
- [ ] Build successful: [status]
- [ ] Uncommitted changes: [list]
### Immediate Next Steps
1. [First action to take]
2. [Second action]
3. [Continue with plan phase X]
Identify the first unchecked - [ ] item in the plan and continue from there. Invoke the implement skill with the plan file path if a full phase needs to be executed.
✅ Context restored successfully!
📋 Resuming: [Feature Name]
📍 Current Phase: [X of Y]
🎯 Next Task: [Specific task]
Previous session:
- Duration: [X hours]
- Completed: [Y tasks]
- Remaining: [Z tasks]
Continuing with [specific next action]...