用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/coreindustries/core-ai-template --skill checkpoint命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | checkpoint |
| description | Update task tracking file with current progress. Essential for preserving context across sessions. |
Update task tracking file with current progress. Essential for preserving context across sessions.
/checkpoint [--summary "progress summary"]
--summary: Optional summary of recent progressWhen this skill is invoked:
Autonomy:
prd/00_index.mdThoroughness:
Find active task file:
prd/00_index.md for "In Progress" featuresprd/tasks/{feature}_tasks.mdUpdate task file sections:
Tasks Section:
[x]Progress Summary:
Next Session Priorities:
Decisions Made:
Commit checkpoint (if requested):
git add prd/tasks/
git commit -m "chore: checkpoint - {summary}"
# {Feature} Tasks
## Context
High-level overview of what's being built.
## Key Decisions
- Decision 1: Rationale
- Decision 2: Rationale
## Tasks
### Phase 1: Setup
- [x] Task 1.1
- [x] Task 1.2
- [ ] Task 1.3 (in progress)
### Phase 2: Implementation
- [ ] Task 2.1
- [ ] Task 2.2
## Progress Summary
- Phase 1: 66% complete
- Phase 2: 0% complete
- Overall: 33% complete
## Next Session Priorities
1. Complete Task 1.3
2. Start Task 2.1
3. Review design for Phase 2
## Blockers
- None currently
## Session Log
### {Date}
- Completed: Task 1.1, 1.2
- Started: Task 1.3
- Notes: {Any relevant notes}
Use /checkpoint:
Don't need /checkpoint:
$ /checkpoint --summary "Completed auth endpoints, starting tests"
📝 Updating task file: prd/tasks/user_auth_tasks.md
Updated sections:
✅ Tasks: Marked 3 tasks complete
✅ Progress: Phase 1 now 80% complete
✅ Next Session: Updated priorities
✅ Session Log: Added entry for 2026-01-15
Task file saved. Context preserved for next session.