-
-
Notifications
You must be signed in to change notification settings - Fork 6
Quick_Start
Rafal Lagowski edited this page Sep 12, 2025
·
2 revisions
Get ClaudeAutoPM up and running in your project in just 5 minutes!
# 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 claude-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: /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/.env# 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! 🚀