Read time: 5 minutes
Learn the core Agentize CLI workflow in about 15 minutes: configure -> clone -> plan -> implement -> navigate.
- Confirm your local Agentize configuration exists
- Clone a repository with the bare + worktree layout
- Create a plan with
lol plan --editor - Implement the plan with
lol impl <issue-number> - Move between worktrees with
wt goto
The installer creates ~/.agentize.local.yaml in your home folder. This file controls which AI backends the planner and implementation workflow use.
Check that it exists:
ls ~/.agentize.local.yamlIf you want to change models or backends, open the file and edit the planner/impl settings. See docs/cli/lol.md for the full schema.
Agentize uses bare repositories with worktrees so each issue can live in its own working directory without branch conflicts.
Clone your project as a bare repo and initialize worktrees:
wt clone https://github.com/org/repo.git myproject.gitwt clone sets up the bare repository and puts you in trees/main, so you are ready to plan immediately.
See docs/feat/cli/wt.md for the full wt command reference.
Use the planner to create a GitHub issue with a consensus implementation plan:
lol plan --editorIf you do not have $EDITOR configured, pass the description directly:
lol plan "Add user authentication"Review the newly created issue and make sure the plan matches what you want to build.
See docs/cli/lol.md for the full lol command reference.
Start the automated implementation loop for the issue:
lol impl <issue-number>lol impl will create the issue worktree (if needed), enter it, and run the implementation workflow.
Jump between worktrees as you iterate:
wt goto <issue-number>
wt goto mainUse wt list to see all available worktrees at any time.
- Tutorial 01: Ultra Planner for a deep dive on planning
- Tutorial 02: Issue to Implementation for the full CLI loop
- Tutorial 03: Advanced Usage for parallel workflows and scaling up