用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AxelMrak/ai --skill checkpoint-protocol命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | checkpoint-protocol |
| description | Iterative session history with timestamped checkpoints and LATEST.md symlink |
Immutable, timestamped snapshots of session progress. Replaces MEMORY.md with searchable history.
.ai/
├── CONTEXT.md # Semi-static project snapshot
├── TO-DO.md # Task tracking
├── checkpoints/ # Timestamped session history
│ ├── 2026-01-28_15-30_oauth-implementation.md
│ ├── 2026-01-29_10-15_refactor-user-service.md
│ └── LATEST.md # Symlink → most recent checkpoint
└── plans/
└── YYYY-MM-DD-{name}.md
| Trigger | Example |
|---|---|
| Feature completed | OAuth implemented and tested |
| Refactor done | Auth layer refactored |
| Bug fixed | Memory leak resolved |
| Session end | User says "terminamos" |
| Architecture change | ADR created |
| Auto-resume recovery | Session crashed |
YYYY-MM-DD_HH-MM_short-description.md
Examples:
2026-01-28_15-30_oauth-implementation.md2026-01-29_09-15_refactor-auth-layer.md---
date: YYYY-MM-DD
time: HH:MM
agent: ATHENA|APOLLO|HEFESTO
feature: short-description
status: IN_PROGRESS|COMPLETED|BLOCKED
duration: Xh Ym
---
## Session Summary
[What was accomplished]
## Changes Made
- Added /api/auth/[...nextauth].ts route
- Updated Prisma schema
## Decisions (ADRs)
- [ADR-015] NextAuth.js over custom OAuth
## Technical Debt (Iterative)
[Unresolved items from previous]
- TODO: Add refresh token rotation
[New items this session]
- TODO: Add E2E tests
## Files Modified
- prisma/schema.prisma
- src/lib/auth.ts
## Tests
- ✅ Login flow working
- ⚠️ Missing E2E tests
## Next Steps
- Implement refresh token rotation
- Add E2E auth tests
Checkpoint N-1 Checkpoint N Checkpoint N+1
├─ Tech Debt: A, B → ├─ Tech Debt: B, C → ├─ Tech Debt: C
├─ Next: Impl OAuth ├─ DONE: OAuth impl ├─ DONE: Tests
└─ Status: IN_PROGRESS ├─ Next: Add tests └─ Next: Deploy
└─ Status: COMPLETED
When session crashes:
.ai/checkpoints/LATEST.md# Create checkpoint
~/Developer/ai/scripts/checkpoint-create.sh "desc" "AGENT" "STATUS"
# List checkpoints
~/Developer/ai/scripts/checkpoint-list.sh
# Search checkpoints
~/Developer/ai/scripts/checkpoint-search.sh "keyword"