pilot-engine
v1.3.1-delta.2
Published
Pilot: autonomous build loop engine (runner + CLI + templates)
Readme
Pilot Engine
Pilot is an autonomous build loop engine.
Engine lives in the npm package (runner + CLI + templates). Each repo keeps a small pilot/ runtime workspace (mostly user data).
Nested workspace (recommended)
For a cleaner repo root, use --workspace .pilot:
pnpm exec pilot init --workspace .pilot
pnpm exec pilot run --workspace .pilotThis works inside existing git repos; all operational files (STATE, TASK, history, etc.) live under .pilot/.
Quick start
pnpm add -D pilot-engine
# Create ./pilot workspace
pnpm exec pilot init
# Optional: sanity check
pnpm exec pilot doctor
# Run the loop
pnpm exec pilot run
# Or run one cycle
pnpm exec pilot run --once
# Upgrade managed runtime files + migrate STATE schema
pnpm exec pilot upgradeWorkspace ownership
Never overwritten by upgrades:
pilot/ROADMAP.jsonpilot/TASK.jsonpilot/REPORT.jsonpilot/BLOCKED.json
Runner-owned (safe to ignore):
pilot/CONTEXT.json,pilot/RECENT.json,pilot/run.log*,pilot/history/,pilot/.tmp/,pilot/.backup/
