用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/coreindustries/core-ai-template --skill resume命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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.
正在显示 SKILL.md
基于 SOC 职业分类
| 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