-
-
Notifications
You must be signed in to change notification settings - Fork 6
Quick_Start
Rafal Lagowski edited this page Sep 14, 2025
·
2 revisions
Get ClaudeAutoPM up and running in your project in just 5 minutes!
- π Unified Commands - Same commands work for GitHub, Azure DevOps, and more
- β‘ 40% Faster - With intelligent caching and optimizations
- π§ͺ 94% Test Coverage - Production-ready reliability
- π Self-Maintaining - Built-in health checks and optimization tools
# Install ClaudeAutoPM globally
npm install -g claude-autopm
# Install to your project
cd your-project
autopm install
# You're ready! π# Use without installing globally
npx autopm installDuring installation, you'll choose your development style:
π§ Choose your development configuration:
1) π Minimal - Traditional development (no Docker/K8s)
2) π³ Docker-only - Docker-first development without Kubernetes
3) π Full DevOps - All features (Docker + Kubernetes + CI/CD)
4) βοΈ Custom - Use existing config.json template
Your choice [1-4]:
- New to containers? β Choose Minimal (1)
- Team consistency needed? β Choose Docker-only (2)
- Enterprise/production app? β Choose Full DevOps (3)
After installation, your project will have:
your-project/
βββ .claude/ # ClaudeAutoPM configuration
β βββ agents/ # 50+ AI agents
β βββ rules/ # Development workflows
β βββ commands/ # PM commands
β βββ config.json # Your chosen configuration
β βββ .env # Environment variables
βββ .claude-code/ # Claude Code settings
βββ .github/ # GitHub Actions workflows
βββ scripts/ # Automation scripts
βββ CLAUDE.md # AI instructions (auto-generated)
βββ PLAYBOOK.md # Usage guide
βββ COMMIT_CHECKLIST.md # Quality standards
# Check your configuration
autopm --version
# View current settings
autopm config
# Test AI agent
# In Claude Code, try the new unified commands:
/pm:issue:list
/pm:help# Interactive configuration tool
autopm config
# Switch from Minimal to Docker-only
# Toggle Docker-first development: OFF β ON
# Your CLAUDE.md automatically updates!# Interactive .env setup
autopm setup-env
# Or copy and edit manually
cp .claude/.env.example .claude/.env
nano .claude/.envAll commands now use the /pm:resource:action format:
# List open issues (works with ANY provider!)
/pm:issue:list --status=open
# Start working on an issue
/pm:issue:start 123
# Create a pull request
/pm:pr:create --title="Feature: Add caching"
# Check project health
npm run pm:health# In Claude Code
/pm:prd-new "User Authentication System"/pm:epic-decompose/pm:epic-sync/pm:next # Get AI-recommended next task# For React frontend
Task: Create login form with validation
Agent: react-frontend-engineer
# For Python backend
Task: Create FastAPI authentication endpoint
Agent: python-backend-engineer
# For testing
Task: Write E2E tests for login flow
Agent: playwright-test-engineer# Standard development
npm install
npm run dev
npm test
# AI assistance with native tools
Task: Fix authentication bug
Agent: javascript-frontend-engineer# Container-first development
docker compose up -d
docker compose exec app npm install
docker compose exec app npm run dev
# AI assistance with Docker
Task: Optimize Dockerfile for Node.js
Agent: docker-expert# Local development (Docker)
docker compose up -d
docker compose exec app npm run dev
# CI/CD happens automatically via GitHub Actions
# - Kubernetes testing with KIND
# - Security scanning
# - Helm chart validation
# AI assistance with K8s
Task: Create Kubernetes deployment manifests
Agent: kubernetes-orchestratorautopm install # Install ClaudeAutoPM framework
autopm config # Configure features interactively
autopm update # Update to latest version
autopm setup-env # Configure environment variables
autopm merge # Merge CLAUDE.md configurations/pm:init # Initialize PM system
/pm:next # Get next recommended task
/pm:status # View project status
/pm:epic-start "Epic Name" # Start new epic
/azure:standup # Daily standup (if using Azure DevOps)- Read PLAYBOOK.md for basic workflows
- Learn about AI Agents
- Try the PM commands
- When ready, consider upgrading to Docker-only
- Learn Docker-First Development
- Set up your docker-compose.yml
- Configure hot reload
- Explore container-aware agents
- Understand the Hybrid Strategy
- Set up Kubernetes manifests
- Configure Helm charts
- Review GitHub Actions workflows
- Configuration Options - Detailed config guide
- CLI Reference - All commands
- Troubleshooting - Common issues
- π Found a bug? Report on GitHub
- π¬ Have questions? GitHub Discussions
- π Improve docs Edit this wiki
Your ClaudeAutoPM installation is complete! Here's what to do next:
- Explore your CLAUDE.md - See how it matches your configuration
-
Try a PM command - Start with
/pm:helpin Claude Code -
Create your first epic - Use
/pm:epic-start "Your Epic Name" - Get familiar with agents - Check the Agent Registry
Happy coding with ClaudeAutoPM! π