ワンクリックで
checkpoint
Update task tracking file with current progress. Essential for preserving context across sessions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Update task tracking file with current progress. Essential for preserving context across sessions.
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 | 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.