waypoint-codex
v0.2.0
Published
Codex-native repository operating system: scaffolding, docs routing, repo-local skills, doctor, and sync.
Maintainers
Readme
Waypoint
Waypoint is a docs-first repository operating system for Codex.
It helps the next agent pick up your repo with full context by keeping the important things in markdown files inside the repo:
AGENTS.mdfor startup instructions.waypoint/WORKSPACE.mdfor live state, with timestamped multi-topic entries.waypoint/docs/for durable project memory, withsummary,last_updated, andread_whenfrontmatter on routable docs.waypoint/DOCS_INDEX.mdfor docs routing- repo-local skills for planning and audits
Install
npm install -g waypoint-codexOr use it without installing globally:
npx waypoint-codex@latest --helpStart using it
Inside your Codex project:
waypoint init --with-automations --with-roles
waypoint doctorThat scaffolds:
repo/
├── AGENTS.md
├── .agents/skills/
└── .waypoint/
├── WORKSPACE.md
├── DOCS_INDEX.md
├── docs/
├── context/
└── ...Main commands
waypoint init— scaffold or refresh the repowaypoint doctor— check for drift and missing pieceswaypoint sync— rebuild.waypoint/DOCS_INDEX.mdand sync optional automations/ruleswaypoint upgrade— update the global Waypoint CLI and refresh the current repo with its existing configwaypoint import-legacy— import from an older repo layout
Shipped skills
planningerror-auditobservability-auditux-states-audit
Optional reviewer roles
If you initialize with --with-roles, Waypoint scaffolds:
code-health-reviewercode-reviewerdocs-researcherplan-reviewer
The intended workflow is post-commit: after your own commit lands, run code-reviewer and code-health-reviewer in parallel in the background, then fix real findings before you call the work finished.
Update
waypoint upgradeIf you only want to update the CLI without refreshing the repo:
waypoint upgrade --skip-repo-refresh