Installation
Get started with agentic15-claude-zen in under 5 minutes.
Prerequisites
Before installing Claude Zen, ensure you have:
- Node.js 18.0.0 or higher
- Git installed and configured
- Platform CLI (choose one):
gh(GitHub CLI) for GitHub integrationaz(Azure CLI) for Azure DevOps integration
- Claude Code (latest version recommended)
Quick Start
The fastest way to get started with Claude Zen:
npx @agentic15.com/agentic15-claude-zen my-projectcd my-projectThis command will:
- Create a new project directory
- Set up the
.claude/configuration - Initialize git repository
- Configure project structure
Authentication
After project setup, authenticate with your platform:
For GitHub
npx agentic15 authFor Azure DevOps
az loginaz devops loginVerify Installation
Check that Claude Zen is working:
npx agentic15 statusYou should see your project status displayed.
Configuration
Claude Zen creates a .claude/settings.json file with default configuration:
{ "permissions": { "allow": ["Read(**)", "Glob", "Grep"], "ask": ["Edit(**)", "Write(**)", "Bash(*)"], "deny": ["Bash(rm -rf:*)"] }, "sandbox": { "enabled": true }}You can customize these settings based on your project needs.
Essential Commands
Once installed, use these commands in your workflow:
# Generate or finalize project plansnpx agentic15 plan [requirements]
# Begin the next pending tasknpx agentic15 task next
# Stage changes and create PRnpx agentic15 commit
# Sync with main branch after PR mergenpx agentic15 sync
# Capture UI screenshots and error logsnpx agentic15 visual-test <url>
# Display current project statusnpx agentic15 statusDevelopment Workflow
Claude Zen follows a simple cycle:
- Work on tasks in Claude Code
- Run
npx agentic15 committo create PR - Review and merge PR on GitHub/Azure DevOps
- Run
npx agentic15 sync - Run
npx agentic15 task nextto continue
Troubleshooting
Git not configured
Ensure Git is configured with your name and email:
git config --global user.name "Your Name"git config --global user.email "your.email@example.com"GitHub CLI not installed
For GitHub integration, install the GitHub CLI:
# macOSbrew install gh
# Windowswinget install --id GitHub.cli
# Linuxsudo apt install ghAzure CLI not installed
For Azure DevOps integration, install the Azure CLI:
# macOSbrew install azure-cli
# Windowswinget install -e --id Microsoft.AzureCLI
# Linuxcurl -sL https://aka.ms/InstallAzureCLIDeb | sudo bashGetting Help
- GitHub Repository - Documentation and source code
- GitHub Issues - Report bugs
- GitHub Discussions - Ask questions