원클릭으로
waypoint-init
Bootstrap a project for Waypoint session tracking. Creates .context/ directory and checkpoint template.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Bootstrap a project for Waypoint session tracking. Creates .context/ directory and checkpoint template.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | waypoint-init |
| description | Bootstrap a project for Waypoint session tracking. Creates .context/ directory and checkpoint template. |
| user-invocable | true |
| disable-model-invocation | true |
| allowed-tools | ["Bash","Write"] |
Bootstrap a project for Waypoint session checkpoint tracking.
Check if .context/ directory already exists
.context/checkpoint.md already has content, report it exists and do not overwrite.context/ exists but checkpoint.md does not, proceed to create the templateCreate .context/ directory if it does not exist:
mkdir -p .context
Create .context/checkpoint.md with a template:
---
date:
branch:
---
## Done
## Next
## Decisions
## Resume
Ask the user if they want plan-tracking support. If yes, create the plans directory:
mkdir -p docs/plans
Report what was created