一键导入
checkpoint
Mid-task durability — dump current state and a next-step file before context fills, so the next session resumes without re-deriving where you were
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Mid-task durability — dump current state and a next-step file before context fills, so the next session resumes without re-deriving where you were
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Audit a Google ADK tool file against the five known gotchas (DI params, thin wrappers, _j helper, async-wrap blocking calls, httpx context manager) before they bite in production
After creating an ADR, run the cross-referencing checklist — update README Artifacts table, add Related Decisions section to source proposal, cross-link sibling ADRs to each other
Generate and verify a pre-demo checklist for an ADK/agent project — env vars, GCP auth, embedding swap, ngrok/Slack wiring, dry-run, tests, real-vs-synthetic data
Scan a project's docs (README, CLAUDE.md, ADRs, runbooks) for inconsistent project naming, scope, or framing — catches the "README says retail, CLAUDE.md still says Kroger" class of bug
Refresh a project's status — derive current state from code/tests/git, regenerate the project's status memory entry and (if requested) a status section in the README
Generate a new Architecture Decision Record from a topic, decision description, or rough notes
| name | checkpoint |
| description | Mid-task durability — dump current state and a next-step file before context fills, so the next session resumes without re-deriving where you were |
Long sessions hit context limits. Compaction summaries are lossy — the next session may miss a half-finished edit, a decision-in-progress, or the exact file/line you were about to modify. The fix: write a durable checkpoint to disk before the cliff. feedback_resource_check.md warns about estimating token cost up front; this skill is the reactive complement — when you're already deep, save state.
User runs /checkpoint mid-session, OR you proactively suggest it when:
context/checkpoints/YYYY-MM-DD-HHMM-<topic>.md.# Checkpoint: <topic>
**Time:** YYYY-MM-DD HH:MM TZ
**Session intent:** [implement / debug / design / review]
## Current task
One sentence — what the user asked for, what we're doing.
## Where we are
Bullet list — concrete state. What files touched. What ran green. What's blocked.
## Next step (resume here)
The exact next action. File + line if it's an edit. Command + flags if it's a run.
## Loaded context that matters
- Decisions made this session (not yet in any ADR/doc)
- Constraints discovered this session (not yet in memory or code comments)
- Approaches tried + rejected this session
## Files modified this session (durable)
- path/to/file.py — what changed
- path/to/other.md — what changed
## Files modified this session (NOT YET WRITTEN — flush before resuming)
- (empty if all flushed)
## Open threads
- Question pending user answer
- Tool call awaiting result
- Background task running
Checkpoint saved → context/checkpoints/2026-04-30-0942-argus-feedback-agent.md
Saved:
- Active task: wiring SC7 feedback_agent into orchestrator after approved-PROPOSE
- Next: edit app/agents/argus_orchestrator.py:124 to call feedback_agent after catalog_writer
- 2 files modified durable, 0 in-flight
Resume next session by reading the checkpoint file first.
app/agents/argus_orchestrator.py:124, add await feedback_agent.run(...) after the catalog_writer call".feedback_resource_check.md — pre-task estimation; this is the during-task complement.