Looking for the CLI quickstart? See Tutorial 00: CLI Quickstart for the
wt clone->lol plan->lol implworkflow.This tutorial covers Claude UI setup for users who prefer the
/ultra-plannerand/issue-to-implslash commands.
Read time: 3-5 minutes
This tutorial shows you how to set up the Agentize framework and Claude Code plugin in your project. Use this path if you prefer the Claude UI slash commands for planning and implementation.
After installing Agentize (see README.md), you can start using its features in your project.
Agentize uses a single installer that handles both the CLI tools and the Claude Code plugin:
curl -fsSL https://raw.githubusercontent.com/SyntheSys-Lab/agentize/main/scripts/install | bashThen add to your shell RC file (~/.bashrc, ~/.zshrc, etc.):
source $HOME/.agentize/setup.shThe installer automatically:
- Clones the repository and runs setup
- Registers the local Claude Code plugin marketplace (if
claudeCLI is available) - Installs the
agentizeplugin into Claude Code
If claude is not installed at the time of setup, you can register the plugin later by re-running the installer or manually:
claude plugin marketplace add "$HOME/.agentize"
claude plugin install agentize@agentizeAfter setup, verify the CLI entrypoints are available (the installer sets up both CLI and UI tooling):
lol plan --help
lol impl --helpOptional Claude UI check (see docs/feat/core/ultra-planner.md and docs/feat/core/issue-to-impl.md):
# In your project directory with Claude Code
/ultra-planner # Auto-completion shall pop up
/issue-to-implYou should see your custom commands listed (like /issue-to-impl, /code-review, etc.).
docs/is the key for the agent to understand your project.- Edit
docs/git-msg-tags.md- the current tags are for the Agentize project itself. You can customize these tags to fulfill your project's module requirements. For example, you might add project-specific tags like:
- `api`: API changes
- `ui`: User interface updates
- `perf`: Performance improvements- It is preferred to have a
docs/architecture/folder where you can document your project's architecture. This helps the agent understand your project better.
Once initialized:
- Tutorial 00: If you prefer CLI onboarding, start with Tutorial 00: CLI Quickstart
- Tutorial 01: Learn CLI planning with
lol plan --editor(uses the git tags you just customized) - Tutorial 02: Learn the CLI implementation loop with
lol impl <issue-no> - Tutorial 03: Scale up with parallel development workflows
For detailed configuration options:
- See
README.mdfor architecture overview - See
docs/architecture/for design documentation