بنقرة واحدة
resume
Recover context and resume work after a new session or context compression.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Recover context and resume work after a new session or context compression.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Write a structured handoff at session end. Preserves context so the next agent can resume without human briefing. Invoke before ending any feature session longer than 30 minutes.
Multi-perspective code review against project standards with P1/P2/P3 severity classification. Works in Claude Code (Agent + optional GitHub MCP) and Cursor (Task subagents + gh/git). Use when the user invokes /review, asks for a PR or diff review, or wants a standards-aligned review with severity tags.
Multi-perspective code review (P1/P2/P3) for Cursor: inline checklists plus three parallel Task subagents (perf-auditor, security-reviewer, simplicity-reviewer with combined data-integrity prompt). Use when the user invokes /review, asks for a PR review, or wants repo-standard findings with severity.
Create well-formatted git commits following conventional commit standards.
Red→green→refactor discipline for new behavior — forces a failing test before implementation and a passing test before any claim of done.
Create or manage a git worktree for isolated parallel development — lets multiple agents work in the repo simultaneously without branch collisions.
| name | resume |
| description | Recover context and resume work after a new session or context compression. |
Recover context and resume work after a new session or context compression.
/resume [feature_name]
feature_name (optional): Specific feature to resume. If omitted, auto-detects from branch name or active tasks.When this skill is invoked:
Run in parallel:
git branch --show-current
git status --short
git log --oneline -5
git diff --stat
Read prd/00_index.md to find "In Progress" features.
Also check docs/solutions/ for previously solved problems related to the current feature area — these may contain solutions to issues you'll encounter again.
If feature_name was provided:
prd/tasks/{feature_name}_tasks.mdIf not provided:
feat/user-auth → user-auth)prd/tasks/From the task file, extract and present:
# What's changed since last commit?
git diff --stat
# Any staged changes?
git diff --cached --stat
# Are tests passing?
{test_all_command}
## Session Recovery: {Feature Name}
### Where We Left Off
{Summary from task file's "Next Session Priorities"}
### Progress
Phase 1: Setup ████████░░ 80%
Phase 2: Implementation ████░░░░░░ 40%
Phase 3: Testing ░░░░░░░░░░ 0%
### Uncommitted Changes
{git diff summary}
### Tests
{pass/fail status}
### Immediate Next Steps
1. {First priority from task file}
2. {Second priority}
3. {Third priority}
### Key Decisions Already Made
| Decision | Choice | Rationale |
|----------|--------|-----------|
| {from task file} | | |
After presenting the summary:
If no task file exists:
cp prd/_task_template.md prd/tasks/{feature}_tasks.md