Package Exports
- claude-autopm
- claude-autopm/bin/autopm.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (claude-autopm) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ClaudeAutoPM
AI-Powered Project Management Framework for Claude Code
Transform your development workflow with intelligent automation, parallel AI agent execution, and seamless integration with GitHub and Azure DevOps. From PRD to production in hours, not days.
π― What is ClaudeAutoPM?
ClaudeAutoPM is a comprehensive project management and development automation framework designed specifically for Claude Code. It combines:
- 136+ CLI commands including 24 complete PM commands (Issue, Workflow, Context, Utility)
- 39 specialized AI agents for intelligent tasks (analysis, design, development)
- Dynamic team management with automatic agent switching
- Hybrid execution modes - choose between CLI commands or AI assistance
- Full GitHub & Azure DevOps integration for seamless workflow
- TDD-developed with 168+ tests and 91%+ coverage
The Problem We Solve
Traditional development workflows face:
- β Context loss between planning and execution
- β Blocking on sequential tasks
- β Manual coordination of multiple developers
- β Disconnect between PRDs, code, and production
Our Solution
ClaudeAutoPM creates an end-to-end automated pipeline:
PRD β Epic Decomposition β Parallel Development β Testing β Production
β β β β β
AI AI Agents Multiple AI Agents Automated Auto-deploy
Analyze Work Simultaneously Testing with CI/CD⨠Key Features
π NEW in v2.8.0-alpha: Complete GitHub Integration!
Full Bidirectional GitHub Sync - Seamless integration with GitHub Issues
- β GitHubProvider - Complete GitHub REST API wrapper with 99% test coverage
- π Issue Sync - Push/pull issues with conflict detection and resolution
- π¦ Epic Sync - Sync epics as GitHub issues with task checkboxes
- π― 84 Tests - Comprehensive test coverage (45 + 39 tests)
- β‘ Rate Limiting - Smart rate limiting with exponential backoff
- π Conflict Resolution - 5 strategies (local, remote, newest, manual, merge)
New GitHub Sync Commands:
# Issue Synchronization
autopm issue sync <number> # Bidirectional sync
autopm issue sync <number> --push # Push local β GitHub
autopm issue sync <number> --pull # Pull GitHub β local
autopm issue sync-status <number> # Check sync status
autopm issue sync-resolve <number> # Resolve conflicts
--strategy newest|local|remote
# What Gets Synced:
# - Issue title, description, status
# - Labels, assignees, milestones
# - Comments and updates
# - Task progress and completionFeatures:
- Smart Conflict Detection: Timestamp-based with multiple resolution strategies
- Sync Mapping: Bidirectional tracking in
.claude/sync-map.json - Epic Support: Epics β GitHub issues with "epic" label, tasks β checkboxes
- Rate Limiting: Respects 5,000 req/hour limit with exponential backoff
- Error Handling: Comprehensive error messages and recovery
- Real API Testing: 17 integration tests with actual GitHub API
Conflict Resolution UI:
β οΈ Sync Conflict Detected!
Conflict Details:
Local newer: false
Remote newer: true
Resolution Options:
1. Use local: autopm issue sync-resolve 123 --strategy local
2. Use remote: autopm issue sync-resolve 123 --strategy remote
3. Use newest: autopm issue sync-resolve 123 --strategy newestSetup:
# Configure GitHub credentials
export GITHUB_TOKEN=ghp_your_personal_access_token
export GITHUB_OWNER=your_username
export GITHUB_REPO=your_repository
# Verify connection
node test/integration/test-github-manual.js
# Start syncing!
autopm issue sync 123Documentation:
- GitHub Testing Guide - Complete setup and testing
- Phase 1 Summary - Technical details
- Phase 1 Complete - Implementation summary
What's Next:
- Phase 2: Azure DevOps Integration (similar patterns)
- Webhooks for real-time updates
- Provider migration tools
π v2.7.0: 100% CLI Implementation Complete!
All 24 Planned Commands Implemented - Complete CLI suite for project management
- β 24/24 Commands - Full roadmap delivered (Issue, Workflow, Context, Utility)
- π― 168 Tests - 91.4% average coverage, 100% function coverage
- π¨ Modern UX - Progress spinners, color-coded output, intuitive commands
- β‘ TDD Methodology - Test-driven development throughout
- π Context7 Best Practices - 2025 industry standards applied
Complete Command Suite:
# Issue Management (6 commands)
autopm issue show <number> # Display issue details
autopm issue start <number> # Start working on issue
autopm issue close <number> # Close completed issue
autopm issue status <number> # Check issue status
autopm issue edit <number> # Edit issue in editor
autopm issue sync <number> # Sync with provider
# Workflow Commands (6 commands)
autopm pm next # Get next priority task
autopm pm what-next # AI-powered suggestions
autopm pm standup # Generate daily standup
autopm pm status # Project status overview
autopm pm in-progress # Show active tasks
autopm pm blocked # List blocked tasks
# Context Management (4 commands)
autopm context create <type> # Create context from template
autopm context prime # Generate project snapshot
autopm context update <type> # Update existing context
autopm context show [type] # Show or list contexts
# Project Utilities (6 commands)
autopm pm init # Initialize PM structure
autopm pm validate # Validate project (--fix for repair)
autopm pm sync # Sync with provider
autopm pm clean # Clean stale artifacts
autopm pm search <query> # Search entities (BM25)
autopm pm import <source> # Import from external sources
# PRD Management (legacy)
autopm prd parse my-prd --ai # AI-powered PRD parsing
autopm prd extract-epics my-prd # Extract epics from PRD
autopm prd summarize my-prd # Generate summaryArchitecture:
- 4 Service Layers: IssueService, WorkflowService, ContextService, UtilityService
- Separation of concerns (CLI β Service β Provider)
- Zero breaking changes to existing functionality
- Production-ready implementation
Milestone Achievement:
- Phase 1 (v2.5.0): Issue Commands - 6 commands, 54 tests
- Phase 2 (v2.6.0): Workflow Commands - 6 commands, 39 tests
- Phase 3 (v2.7.0): Context & Utility - 10 commands, 75 tests
- Total: 24 commands, 168 tests, 91.4% coverage π
π v1.30.0: Advanced Conflict Resolution - Complete Sync Safety!
Three-Way Merge Conflict Resolution - Safe GitHub synchronization
- π Intelligent Merge - Three-way diff (local/remote/base) with conflict detection
- π― 5 Resolution Strategies - newest, local, remote, rules-based, manual
- π Conflict History - Complete audit trail with undo/replay
- π Visual Diffs - Side-by-side ASCII comparisons
- π‘οΈ Security Hardened - Path traversal prevention, robust error handling
# Sync with automatic conflict resolution
autopm sync:download --conflict newest # Use newest timestamp
autopm sync:upload --conflict interactive # Manual resolution
# Manage conflict history
autopm conflict:history # View all conflicts
autopm conflict:undo <id> # Undo resolution
autopm conflict:replay <id> --strategy local # Replay with different strategyPerformance & Safety - All targets exceeded β
- Merge 1000 files in 3.2s (target: <5s)
- Memory efficient: <85MB
- 42/44 tests passing (95.5%)
- Phase 3 Complete: 4/4 production features delivered
π v1.29.0: Batch Operations, Filtering & Analytics
Batch Operations - Sync 1000+ items in seconds
- β‘ Parallel Processing - 10 concurrent uploads (configurable)
- π Smart Rate Limiting - Auto-throttle to respect GitHub API limits
- π Progress Tracking - Real-time progress bars
- π‘οΈ Error Recovery - Continues on failures with detailed reporting
autopm sync:batch # Sync all items
autopm sync:batch --type prd # Sync only PRDs
autopm sync:batch --dry-run # Preview changesAdvanced Filtering & Search - Find anything instantly
- π 10 Filter Types - status, priority, epic, dates, author, assignee, search
- π Full-Text Search - Search across all markdown content
- π Date Ranges - Filter by creation/update dates
- π― Combined Filters - AND logic for precise results
autopm prd:list --status active --priority high
autopm search "authentication" --type prd,epic,taskAnalytics & Insights - Data-driven project management
- π Velocity Tracking - Tasks/week with trend analysis
- π Burndown Charts - ASCII visualization (ideal vs actual)
- π₯ Team Metrics - Completion rates, average duration
- π Dependency Analysis - Bottlenecks, critical path, parallelizable tasks
autopm analytics:epic epic-001 # Full analytics with burndown
autopm analytics:team --period 30 # Team metrics (30 days)
autopm analytics:dependencies epic-001 # Find bottlenecks
autopm analytics:export epic-001 --format csv # Export dataPerformance - All targets exceeded β
- Batch sync: 1000 items in 28.5s
- Filtering: < 500ms for 1000 items
- Analytics: 230ms for 1000 tasks
- 497+ Tests Passing (99.6% pass rate)
π v1.28.0: Templates & Scaffolding
PRD Templates (Quick Start)
- π 5 Built-in Templates - api-feature, ui-feature, bug-fix, data-migration, documentation
- π 70% Faster - Create PRDs in 9 minutes instead of 30
- π― Context7-Verified - All templates use 2025 best practices
autopm prd:new --template api-feature "Payment API"
autopm template:listπ v1.27.0: Phase 2 Complete!
GitHub Sync (Bidirectional)
- π€ Upload to GitHub Issues - Sync PRDs/Epics/Tasks with smart conflict detection
- π₯ Download from GitHub - Pull Issues back to local files with reverse mapping
- π Bidirectional Mapping - Maintain consistency with
sync-map.json
Task Management
- β Complete Task Lifecycle - List, show, update tasks within epics
- π Dependency Tracking - Validate task dependencies automatically
- π Progress Auto-update - Epic progress updates on task completion
π NEW in v2.1.0: Plugin-PM Published to NPM!
Complete PM Workflow Plugin - Now available on npm with 87 PM commands
- π¦ @claudeautopm/plugin-pm@2.1.0 - Published and ready to use
- π― 87 PM Commands - Epic management, tasks, issues, Azure DevOps integration
- π¦ 208 KB Compressed - Fast downloads, 890 KB unpacked
- β‘ Zero Dependencies - Works standalone or with core framework
- π Auto-Discovery - Commands discovered automatically via plugin.json
Available on NPM:
# Install plugin-pm via npm
npm install @claudeautopm/plugin-pm@2.1.0
# Or install globally
npm install -g @claudeautopm/plugin-pmPackage Links:
- π¦ NPM: https://www.npmjs.com/package/@claudeautopm/plugin-pm
- π GitHub: https://github.com/rafeekpro/ClaudeAutoPM/tree/main/packages/plugin-pm
What's Included:
| Category | Commands | Description |
|---|---|---|
| PM Commands | 45 | Epic, issue, PRD, context, workflow management |
| Azure DevOps | 41 | Feature, task, user story, work item management |
| GitHub | 1 | Workflow creation and automation |
| Total | 87 | Complete PM workflow suite |
Quick Start:
# Install from npm
npm install @claudeautopm/plugin-pm@2.1.0
# Commands auto-discovered via plugin.json
# Use with ClaudeAutoPM CLI:
/pm:epic-decompose my-epic
/pm:task-sync
/azure:feature-new
/github:workflow-createFeatures:
- Epic Management: Decompose, start, close, sync, split, merge
- Task Management: Create, update, sync, analyze
- Issue Management: Analyze, start, close, sync, edit
- Azure DevOps: Full integration with work items and sprints
- GitHub: Workflow automation
- PRD Management: Parse, status, create, edit
π v2.8.1: Plugin Architecture!
Modular Agent System - Agents organized into installable plugins
- π¦ 7 Official Plugins - 35 specialized agents in thematic packages
- π npm Workspaces - Monorepo architecture with scoped packages
- ποΈ Context7-Driven - Built on best practices from unplugin & npm
- β‘ Install on Demand - Only load the agents you need
- π Smart Discovery - Automatic plugin detection and validation
Available Plugins:
| Plugin | Status | Description |
|---|---|---|
| @claudeautopm/plugin-pm | β Published | 87 PM commands (epics, tasks, Azure, GitHub) |
| @claudeautopm/plugin-cloud | π¦ Coming Soon | AWS, Azure, GCP, Terraform, Kubernetes |
| @claudeautopm/plugin-devops | π¦ Coming Soon | Docker, GitHub Actions, Azure DevOps, SSH |
| @claudeautopm/plugin-frameworks | π¦ Coming Soon | React, Vue, Tailwind CSS, UX Design |
| @claudeautopm/plugin-databases | π¦ Coming Soon | PostgreSQL, MongoDB, Redis, BigQuery |
| @claudeautopm/plugin-languages | π¦ Coming Soon | JavaScript, TypeScript, Python, Node.js, Bash |
| @claudeautopm/plugin-data | π¦ Coming Soon | Airflow, Kedro, LangGraph workflows |
| @claudeautopm/plugin-testing | π¦ Coming Soon | Frontend testing, E2E, accessibility |
Quick Start:
# Install published plugin
npm install @claudeautopm/plugin-pm
# Coming soon: Install other plugins
# npm install @claudeautopm/plugin-cloud
# npm install @claudeautopm/plugin-devops
# List available plugins
autopm plugin list
# Search for specific agents
autopm plugin search epic
# Get plugin info
autopm plugin info pmArchitecture:
- PluginManager - Context7-verified plugin system (unplugin patterns)
- Factory Pattern - Dynamic plugin instantiation
- Event-Driven - Hook system for extensibility
- Version Compatibility - Peer dependency validation (semver)
- Persistent Registry - Track installed/enabled state
π Plugin Architecture Guide - Complete documentation
π€ 35 Specialized AI Agents (Now in Plugins!)
Previously monolithic, now organized into installable plugins:
- Core Agents (4): agent-manager, code-analyzer, file-analyzer, test-runner
- Cloud & Infrastructure (8): AWS, Azure, GCP, Kubernetes, Terraform specialists
- DevOps & CI/CD (7): Docker, GitHub Actions, Azure DevOps, SSH, observability
- Frontend & Frameworks (6): React, Vue, Tailwind, UX design, E2E testing
- Databases (5): PostgreSQL, MongoDB, Redis, BigQuery, Cosmos DB
- Programming Languages (5): JavaScript, TypeScript, Python, Node.js, Bash
- Data Engineering (3): Airflow, Kedro, LangGraph workflow orchestration
Migration: Existing projects continue to work. New projects can use plugins for modular installation.
π Hybrid Execution Model
ClaudeAutoPM provides two distinct interfaces optimized for different operations:
π§ CLI (autopm) - Non-AI Utilities
Fast, deterministic operations that don't require AI:
autopm install # Framework installation
autopm config set provider github # Configuration management
autopm team load fullstack # Load agent teams
autopm mcp enable context7 # Manage MCP servers
autopm epic status auth # View epic progress (read-only)When to use: Setup, configuration, read-only utilities, CI/CD scripts
π€ Claude Code (/pm:*) - AI-Powered Operations
Intelligent operations leveraging Claude's AI:
/pm:prd-new user-auth # Create PRD with AI assistance
/pm:epic-decompose user-auth # Intelligent task breakdown
/pm:next # Smart task prioritization
/pm:standup # Generate progress summary
/pm:what-next # AI suggests next actionsWhen to use: Creation, modification, intelligent analysis, development workflow
π Full CLI vs Claude Code Guide
π Dynamic Team Management
Switch agent teams based on your current work:
autopm team load frontend # React, UI, testing agents
autopm team load backend # Python, Node.js, database agents
autopm team load fullstack # Complete development stack
autopm team load devops # Docker, Kubernetes, CI/CD agentsTeams automatically activate the right agents for your context.
π MCP (Model Context Protocol) Integration
Access up-to-date documentation and tools:
autopm mcp enable context7 # Documentation for all frameworks
autopm mcp enable playwright # Browser automation
autopm mcp diagnose # Health check all MCP serversπ Multi-Provider Support
Seamlessly work with:
- GitHub: Issues, PRs, Actions, Projects
- Azure DevOps: Work Items, Boards, Pipelines, Repos
- Local: Git-based workflow without remote provider
β‘ Parallel Execution Strategies
Choose your execution model:
- Sequential: Safe, one agent at a time
- Adaptive: Intelligent mode selection (recommended)
- Hybrid: Maximum parallelization for power users
π Quick Start
Installation
# Install globally via npm
npm install -g claude-autopm
# Verify installation
autopm --version5-Minute Setup
# 1. Install in your project
cd your-project
autopm install
# 2. Choose your preset
# - minimal: Basic setup
# - docker-only: Docker development
# - fullstack: Complete stack (recommended)
# - devops: Full DevOps with K8s
# - custom: Advanced configuration
# 3. Configure your provider
autopm config set provider github
autopm config set github.owner YOUR_USERNAME
autopm config set github.repo YOUR_REPO
export GITHUB_TOKEN=your_github_token
# 4. Load your team
autopm team load fullstack
# 5. Open Claude Code
claude --dangerously-skip-permissions .Your First Workflow
Option A: Using New CLI Commands (v2.7.0+)
# 1. Initialize project structure
autopm pm init
# 2. Create PRD (in Claude Code or manually)
/pm:prd-new "Build user authentication system"
# 3. Decompose into epic
/pm:epic-decompose prd-001-authentication.md
# 4. Check what to do next
autopm pm what-next
# 5. Start working on next task
autopm pm next
autopm issue start 123
# 6. Generate daily standup
autopm pm standup
# 7. Complete and close issue
autopm issue close 123
# 8. Sync with provider
autopm pm syncOption B: Classic Claude Code Workflow
# 1. Create a PRD (in Claude Code)
/pm:prd-new "Build user authentication system"
# 2. Decompose into epic
/pm:epic-decompose prd-001-authentication.md
# 3. Sync with GitHub
/pm:epic-sync epic-001-authentication.md
# 4. Start working
/pm:next
# 5. Complete and sync
/pm:issue-closeπ Documentation
Getting Started
Core Concepts
- Architecture Overview
- CLI vs Claude Code β Essential reading
- Hybrid Execution
- Agent System
- Team Management
Workflows
Reference
π¬ See It In Action
Video Walkthroughs
1οΈβ£ Installation & Setup - Complete installation process
2οΈβ£ First Claude Execution - Setting up and running Claude Code
3οΈβ£ PRD Creation - Product Requirements workflow
4οΈβ£ GitHub Sync - Synchronizing and starting work
5οΈβ£ Task Completion - Finishing and closing tasks
6οΈβ£ Demo Application - Running Web App + FastAPI
ποΈ Architecture
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β ClaudeAutoPM β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β βββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β β CLI Layer β β Agent Teams β β MCP Servers β β
β β (112 cmds) β β (39 agents) β β (Context7) β β
β ββββββββ¬βββββββ ββββββββ¬ββββββββ ββββββββ¬ββββββββ β
β β β β β
β βββββββββββββββββββΌβββββββββββββββββββ β
β β β
β ββββββββββββββββββββββββββ΄ββββββββββββββββββββββββββ β
β β Execution Engine β β
β β - Sequential / Adaptive / Hybrid β β
β β - Parallel agent coordination β β
β β - Context optimization β β
β β - STANDALONE mode (direct service access) β β
β ββββββββββββββββββββββββββ¬ββββββββββββββββββββββββββ β
β β β
β ββββββββββββββββββββββββββ΄ββββββββββββββββββββββββββ β
β β Provider Integration β β
β β - GitHub (Issues, PRs, Actions) β β
β β - Azure DevOps (Work Items, Boards) β β
β β - Local (Git-based) β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββπ οΈ Use Cases
For Solo Developers
- π Build MVPs faster with AI pair programming
- π Maintain clear project documentation
- β‘ Automate repetitive development tasks
- π Keep GitHub/Azure in sync automatically
For Development Teams
- π₯ Coordinate multiple AI agents like a team
- π Track progress across epics and sprints
- π Parallel development on independent tasks
- π Maintain velocity with automated workflows
For DevOps Engineers
- π³ Docker-first development patterns
- βΈοΈ Kubernetes deployment automation
- π§ Infrastructure as Code with Terraform
- π¦ CI/CD pipeline generation
π Why ClaudeAutoPM?
vs Traditional PM Tools
- β AI-native: Built for Claude Code, not adapted
- β Code-first: PRDs β Code β Production
- β Parallel execution: Multiple agents work simultaneously
- β Context-aware: Never lose track of your work
vs Other AI Tools
- β Full workflow: Not just code generation
- β Multi-agent: 39 specialized agents, not one generic
- β Team coordination: Dynamic team switching
- β Enterprise-ready: GitHub & Azure DevOps integration
π¦ What's Included
CLI Commands (136+ total)
- Project Management: 24 complete PM commands (Issue, Workflow, Context, Utility) β¨ NEW in v2.7.0
- Issue Management (6): show, start, close, status, edit, sync
- Workflow (6): next, what-next, standup, status, in-progress, blocked
- Context (4): create, prime, update, show
- Utilities (6): init, validate, sync, clean, search, import
- PRD & Epic: PRD parsing, epic decomposition, task management
- Development: Scaffolding, testing, deployment
- Configuration: Provider setup, team management, MCP servers
- DevOps: Docker, Kubernetes, CI/CD automation
AI Agents (39 active)
- Core: 7 system agents
- Languages: 6 language agents
- Frameworks: 8 framework agents
- Cloud: 7 cloud & infrastructure agents
- DevOps: 6 DevOps & CI/CD agents
- Data: 5 database agents
Documentation
- Installation guides
- Complete workflow tutorials
- CLI reference
- Agent documentation
- Integration guides
π§ Advanced Tools
Epic Sync (JavaScript)
Complete epic synchronization workflow in one command:
# Full epic sync (create epic + tasks + update references)
node .claude/lib/commands/pm/epicSync.js sync fullstack/01-infrastructure
# Individual operations
node .claude/lib/commands/pm/epicSync.js create-epic fullstack/01-infrastructure
node .claude/lib/commands/pm/epicSync.js create-tasks fullstack/01-infrastructure 2
node .claude/lib/commands/pm/epicSync.js update-epic fullstack/01-infrastructure 2Features:
- Creates GitHub epic issue with labels and stats
- Creates task issues for all tasks in epic
- Updates epic file with GitHub URLs
- Renames task files to match issue numbers
- Updates all cross-references automatically
Issue Sync (JavaScript)
Synchronize local development progress with GitHub issues:
# Full sync workflow
node .claude/lib/commands/pm/issueSync.js sync 123 .claude/epics/auth/updates/123
# Mark task as complete
node .claude/lib/commands/pm/issueSync.js sync 456 ./updates --complete
# Dry run (preview without posting)
node .claude/lib/commands/pm/issueSync.js sync 789 ./updates --dry-run
# Individual operations
node .claude/lib/commands/pm/issueSync.js gather 123 ./updates
node .claude/lib/commands/pm/issueSync.js format 123 ./updatesFeatures:
- Gathers updates from multiple sources (progress, notes, commits)
- Formats professional GitHub comments
- Posts updates to issues
- Updates frontmatter with sync timestamps
- Preflight validation (auth, issue exists, etc.)
- Supports completion workflow
What gets synced:
- Progress updates and completion %
- Technical notes and decisions
- Recent commits (auto-detected or manual)
- Acceptance criteria updates
- Next steps and blockers
Epic Status (JavaScript)
Track epic progress with detailed status reporting:
# Show epic status
node .claude/lib/commands/pm/epicStatus.js fullstack/01-infrastructure
# List available epics
node .claude/lib/commands/pm/epicStatus.jsFeatures:
- Counts tasks by status (completed/in-progress/pending)
- Calculates progress percentage
- Visual progress bar
- Sub-epic breakdown
- Comprehensive status reporting
Example output: ``` Epic: fullstack/01-infrastructure
Total tasks: 12 Completed: 8 (67%) In Progress: 2 Pending: 2
Progress: [=================================-------------] 67%
Sub-Epic Breakdown:
backend 6 tasks (4 completed) frontend 4 tasks (3 completed) infrastructure 2 tasks (1 completed)
### Why JavaScript Tools?
**Replaced 10 Bash scripts** (~2600 lines) with **3 JavaScript tools** (~1500 lines):
**Benefits:**
- β
Zero parsing errors (no heredoc/awk/sed complexity)
- π§ͺ Fully testable (all functions exported)
- π More readable and maintainable
- π 50% less code
- πΎ Better error handling
- π Easier debugging
**Backward compatible:** Old Bash scripts still work, but new JS tools are recommended.
---
## π€ Contributing
We welcome contributions! See [CONTRIBUTING.md](docs/development/contributing.md) for:
- Development setup
- Coding standards
- Testing requirements
- Pull request process
---
## π License
MIT License - see [LICENSE](LICENSE) for details.
---
## π Links
- **Documentation**: [https://rafeekpro.github.io/ClaudeAutoPM/](https://rafeekpro.github.io/ClaudeAutoPM/)
- **npm Package**: [https://www.npmjs.com/package/claude-autopm](https://www.npmjs.com/package/claude-autopm)
- **Issues**: [https://github.com/rafeekpro/ClaudeAutoPM/issues](https://github.com/rafeekpro/ClaudeAutoPM/issues)
- **Discussions**: [https://github.com/rafeekpro/ClaudeAutoPM/discussions](https://github.com/rafeekpro/ClaudeAutoPM/discussions)
---
## π¬ Support
- π§ Email: autopm@example.com
- π¦ Twitter: [@rafeekpro](https://twitter.com/rafeekpro)
- π¬ GitHub Discussions for questions and community support
---
<p align="center">
<b>Built with β€οΈ for the Claude Code community</b>
<br>
<sub>Star β this repo if ClaudeAutoPM helps your workflow!</sub>
</p>