| 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"] |
Waypoint Init
Bootstrap a project for Waypoint session checkpoint tracking.
Steps
-
Check if .context/ directory already exists
- If
.context/checkpoint.md already has content, report it exists and do not overwrite
- If
.context/ exists but checkpoint.md does not, proceed to create the template
-
Create .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