Quickstart
Get Parton installed, configured, and running your first task in a few minutes.
1. Install Parton
curl -fsSL https://parton.run/install.sh | sh
2. Verify the install
parton version
If parton is not found, make sure your install directory is in your PATH.
3. Enter a project folder
For an existing repo:
cd my-project
For a new project:
mkdir my-app
cd my-app
4. Run your first task
For an existing project:
parton run "add email field to user and update all usages"
For a new project:
parton run "create todo app"
What happens next
Parton runs a full pipeline automatically:
- Setup gate — checks whether model access is configured. Launches the setup TUI if needed.
- Clarify — asks a few questions if the intent is ambiguous.
- Plan (skeleton) — builds a structured plan with per-file contracts, dependency installs, and validation commands.
- Scaffold + Enrich (parallel) — config files are finalized during scaffold; logic files are generated in parallel with full context.
- Structure Check — runs the plan's
check_commandsto verify project structure. - Final Execution (parallel) — all remaining logic files are generated simultaneously.
- Validation + Auto-fix — runs the plan's
validation_commands(build, lint, test). If validation fails, Parton re-generates failing files with error context automatically.
Example CLI flow
→ setup required...
→ clarifying...
→ planning...
→ scaffolding...
→ executing...
→ validating...
→ auto-fixing (1/3)...
→ success