소스 정보
- 저장소
- andrem-sec/psc-comet
- 최근 소스 활동
- 2026년 4월 1일 00:39
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/andrem-sec/psc-comet --skill checkpoint명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | checkpoint |
| description | Named decision point for long-running tasks — PIVOT, REFINE, or PROCEED |
| version | 0.2.0 |
| level | 1 |
| triggers | ["checkpoint","check in","pivot or proceed","decision point","/checkpoint"] |
| context_files | ["context/learnings.md"] |
| steps | [{"name":"State Assessment","description":"What is done, in progress, and blocked?"},{"name":"Goal Alignment","description":"Does the current path still lead to the original goal?"},{"name":"Risk Surface","description":"What new risks or unknowns have appeared since the last checkpoint?"},{"name":"Decision","description":"PIVOT, REFINE, or PROCEED — with explicit rationale"},{"name":"Log if PIVOT","description":"If pivoting, write the abandoned approach and reason to context/learnings.md"}] |
A structured pause during long-running tasks. Prevents tunnel vision and catches drift before it compounds.
Without checkpoints, Claude continues executing a plan past the point where new information has invalidated one of its assumptions. The compound reliability math is real: at a 10% error rate per step, 10 steps yields 35% success. A checkpoint at step 5 resets the accumulation.
PROCEED — on track, no new risks, continue as planned.
REFINE — mostly correct, but one or two steps need adjustment. Document what changed and why, then continue.
PIVOT — the approach is fundamentally wrong or blocked. Stop. Re-plan the affected phase. Write the abandoned approach to learnings.md — this is high-value content.
A PIVOT is not a failure. A PIVOT without documentation is a failure.
Checkpoint — [task] — Step [N] of [N]
Completed: [list]
In Progress: [current step]
Blocked / New Info: [if any]
Decision: PROCEED / REFINE / PIVOT
Rationale: [one sentence]
Next: [specific next action]
Claude Code compacts at 93% of effective context (window minus 20k overhead). PSC checkpoints fire earlier:
| Level | Action |
|---|---|
| ~90% | Run checkpoint immediately — surface state, decide PIVOT/REFINE/PROCEED |
| ~95% | Blocking threshold — new tool calls may fail. Compact now. |
| Mid-debug | Do NOT compact — stack traces and error traces are the tool |
Signals that context is at 90%+: earlier parts of the conversation feel distant, rules from CLAUDE.md feel less active, you are uncertain about a constraint stated early in the session.
When in doubt, checkpoint. The cost of a false positive is one checkpoint. The cost of a missed threshold is silent context drift.
Do not issue a PROCEED when there are unresolved blockers. Acknowledge them and decide.
Do not PIVOT without writing the abandoned approach to learnings.md. Future sessions will revisit the same dead end without that record.