用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/materialofair/oh-my-codex --skill checkpoint命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | checkpoint |
| description | Imported from everything-codex command checkpoint |
| version | 0.1.0 |
| source | fork |
| checksum | 62622f7bbbaae8df8dad4280cb81eaad46425aabc59e3360a16ac3f32bd37e51 |
| updated_at | 2026-02-11T01:29:16.000Z |
| layer | utility |
Codex supports native subagents. Delegate with spawn_agent, coordinate with send_input, collect via wait_agent, and clean up with close_agent.
Execution preference:
[ANALYST]/[ARCHITECT]/[EXECUTOR]/[REVIEWER] structure in a single response.Minimal orchestration pattern:
spawn_agent -> send_input (optional) -> wait_agent -> close_agent
Create or verify a checkpoint in your workflow.
$checkpoint [create|verify|list] [name]
When creating a checkpoint:
$verify (quick mode if supported) to ensure current state is clean.codex/checkpoints.log:echo "$(date +%Y-%m-%d-%H:%M) | $CHECKPOINT_NAME | $(git rev-parse --short HEAD)" >> .codex/checkpoints.log
When verifying against a checkpoint:
Read checkpoint from log
Compare current state to checkpoint:
Report:
CHECKPOINT COMPARISON: $NAME
============================
Files changed: X
Tests: +Y passed / -Z failed
Coverage: +X% / -Y%
Build: [PASS/FAIL]
Show all checkpoints with:
Typical checkpoint flow:
[Start] --> $checkpoint create "feature-start"
|
[Implement] --> $checkpoint create "core-done"
|
[Test] --> $checkpoint verify "core-done"
|
[Refactor] --> $checkpoint create "refactor-done"
|
[PR] --> $checkpoint verify "feature-start"
$ARGUMENTS:
create <name> - Create named checkpointverify <name> - Verify against named checkpointlist - Show all checkpointsclear - Remove old checkpoints (keeps last 5)