https://github.com/automazeio/ccpm
Project management system for Claude Code using GitHub Issues and Git worktrees for parallel agent execution.
https://github.com/automazeio/ccpm
ai-agents ai-coding claude claude-code project-management vibe-coding
Last synced: about 1 month ago
JSON representation
Project management system for Claude Code using GitHub Issues and Git worktrees for parallel agent execution.
- Host: GitHub
- URL: https://github.com/automazeio/ccpm
- Owner: automazeio
- License: mit
- Created: 2025-08-18T23:20:08.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-09-25T14:45:09.000Z (4 months ago)
- Last Synced: 2025-10-02T04:29:18.628Z (4 months ago)
- Topics: ai-agents, ai-coding, claude, claude-code, project-management, vibe-coding
- Language: Shell
- Homepage: https://automaze.io/ccpm
- Size: 450 KB
- Stars: 4,963
- Watchers: 28
- Forks: 532
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-AI-driven-development - Claude Code PM - Project management system for Claude Code using GitHub Issues and Git worktrees for parallel agent execution. (Project & Knowledge Management / Other IDEs)
- awesome-ai-agents - automazeio/ccpm - Claude Code PM is a project management system that integrates AI agents with GitHub Issues and Git worktrees to enable spec-driven development and parallel task execution with full traceability and team collaboration. (AI Agent Frameworks & SDKs / Orchestration Frameworks)
- awesome-ai - automazeio/ccpm
- awesome-claude-code - **ccpm**
- awesome-claude - ccpm - Project management system for Claude Code using GitHub Issues and Git worktrees for parallel agent execution. (π― Project Management & Orchestration / π Community Guides & Tutorials)
- awesome-claude-code - Claude Code PM - Really comprehensive and feature-packed project-management workflow for Claude Code. Numerous specialized agents, slash-commands, and strong documentation. (Workflows & Knowledge Guides π§ / General)
- awesome-ccamel - automazeio/ccpm - Project management system for Claude Code using GitHub Issues and Git worktrees for parallel agent execution. (Shell)
- awesome - automazeio/ccpm - Project management system for Claude Code using GitHub Issues and Git worktrees for parallel agent execution. (Shell)
README
# Claude Code PM
[](https://automaze.io)
Β
[](https://github.com/automazeio/ccpm/blob/main/README.md)
[](https://github.com/automazeio/ccpm)
Β
[](https://github.com/hesreallyhim/awesome-claude-code?tab=readme-ov-file#general-)
Β
[](https://github.com/automazeio/ccpm/blob/main/LICENSE)
Β
[](http://x.com/intent/follow?screen_name=aroussi)
Β
[](https://github.com/automazeio/ccpm)
### Claude Code workflow to ship ~~faster~~ _better_ using spec-driven development, GitHub issues, Git worktrees, and multiple AI agents running in parallel.
**[δΈζζζ‘£ (Chinese Documentation)](zh-docs/README_ZH.md)**
Stop losing context. Stop blocking on tasks. Stop shipping bugs. This battle-tested system turns PRDs into epics, epics into GitHub issues, and issues into production code β with full traceability at every step.

## Table of Contents
- [Background](#background)
- [The Workflow](#the-workflow)
- [What Makes This Different?](#what-makes-this-different)
- [Why GitHub Issues?](#why-github-issues)
- [Core Principle: No Vibe Coding](#core-principle-no-vibe-coding)
- [System Architecture](#system-architecture)
- [Workflow Phases](#workflow-phases)
- [Command Reference](#command-reference)
- [The Parallel Execution System](#the-parallel-execution-system)
- [Key Features & Benefits](#key-features--benefits)
- [Proven Results](#proven-results)
- [Example Flow](#example-flow)
- [Get Started Now](#get-started-now)
- [Local vs Remote](#local-vs-remote)
- [Technical Notes](#technical-notes)
- [Support This Project](#support-this-project)
## Background
Every team struggles with the same problems:
- **Context evaporates** between sessions, forcing constant re-discovery
- **Parallel work creates conflicts** when multiple developers touch the same code
- **Requirements drift** as verbal decisions override written specs
- **Progress becomes invisible** until the very end
This system solves all of that.
## The Workflow
```mermaid
graph LR
A[PRD Creation] --> B[Epic Planning]
B --> C[Task Decomposition]
C --> D[GitHub Sync]
D --> E[Parallel Execution]
```
### See It In Action (60 seconds)
```bash
# Create a comprehensive PRD through guided brainstorming
/pm:prd-new memory-system
# Transform PRD into a technical epic with task breakdown
/pm:prd-parse memory-system
# Push to GitHub and start parallel execution
/pm:epic-oneshot memory-system
/pm:issue-start 1235
```
## What Makes This Different?
| Traditional Development | Claude Code PM System |
|------------------------|----------------------|
| Context lost between sessions | **Persistent context** across all work |
| Serial task execution | **Parallel agents** on independent tasks |
| "Vibe coding" from memory | **Spec-driven** with full traceability |
| Progress hidden in branches | **Transparent audit trail** in GitHub |
| Manual task coordination | **Intelligent prioritization** with `/pm:next` |
## Why GitHub Issues?
Most Claude Code workflows operate in isolation β a single developer working with AI in their local environment. This creates a fundamental problem: **AI-assisted development becomes a silo**.
By using GitHub Issues as our database, we unlock something powerful:
### π€ **True Team Collaboration**
- Multiple Claude instances can work on the same project simultaneously
- Human developers see AI progress in real-time through issue comments
- Team members can jump in anywhere β the context is always visible
- Managers get transparency without interrupting flow
### π **Seamless Human-AI Handoffs**
- AI can start a task, human can finish it (or vice versa)
- Progress updates are visible to everyone, not trapped in chat logs
- Code reviews happen naturally through PR comments
- No "what did the AI do?" meetings
### π **Scalable Beyond Solo Work**
- Add team members without onboarding friction
- Multiple AI agents working in parallel on different issues
- Distributed teams stay synchronized automatically
- Works with existing GitHub workflows and tools
### π― **Single Source of Truth**
- No separate databases or project management tools
- Issue state is the project state
- Comments are the audit trail
- Labels provide organization
This isn't just a project management system β it's a **collaboration protocol** that lets humans and AI agents work together at scale, using infrastructure your team already trusts.
## Core Principle: No Vibe Coding
> **Every line of code must trace back to a specification.**
We follow a strict 5-phase discipline:
1. **π§ Brainstorm** - Think deeper than comfortable
2. **π Document** - Write specs that leave nothing to interpretation
3. **π Plan** - Architect with explicit technical decisions
4. **β‘ Execute** - Build exactly what was specified
5. **π Track** - Maintain transparent progress at every step
No shortcuts. No assumptions. No regrets.
## System Architecture
```
.claude/
βββ CLAUDE.md # Always-on instructions (copy content to your project's CLAUDE.md file)
βββ agents/ # Task-oriented agents (for context preservation)
βββ commands/ # Command definitions
β βββ context/ # Create, update, and prime context
β βββ pm/ # β Project management commands (this system)
β βββ testing/ # Prime and execute tests (edit this)
βββ context/ # Project-wide context files
βββ epics/ # β PM's local workspace (place in .gitignore)
β βββ [epic-name]/ # Epic and related tasks
β βββ epic.md # Implementation plan
β βββ [#].md # Individual task files
β βββ updates/ # Work-in-progress updates
βββ prds/ # β PM's PRD files
βββ rules/ # Place any rule files you'd like to reference here
βββ scripts/ # Place any script files you'd like to use here
```
## Workflow Phases
### 1. Product Planning Phase
```bash
/pm:prd-new feature-name
```
Launches comprehensive brainstorming to create a Product Requirements Document capturing vision, user stories, success criteria, and constraints.
**Output:** `.claude/prds/feature-name.md`
### 2. Implementation Planning Phase
```bash
/pm:prd-parse feature-name
```
Transforms PRD into a technical implementation plan with architectural decisions, technical approach, and dependency mapping.
**Output:** `.claude/epics/feature-name/epic.md`
### 3. Task Decomposition Phase
```bash
/pm:epic-decompose feature-name
```
Breaks epic into concrete, actionable tasks with acceptance criteria, effort estimates, and parallelization flags.
**Output:** `.claude/epics/feature-name/[task].md`
### 4. GitHub Synchronization
```bash
/pm:epic-sync feature-name
# Or for confident workflows:
/pm:epic-oneshot feature-name
```
Pushes epic and tasks to GitHub as issues with appropriate labels and relationships.
### 5. Execution Phase
```bash
/pm:issue-start 1234 # Launch specialized agent
/pm:issue-sync 1234 # Push progress updates
/pm:next # Get next priority task
```
Specialized agents implement tasks while maintaining progress updates and an audit trail.
## Command Reference
> [!TIP]
> Type `/pm:help` for a concise command summary
### Initial Setup
- `/pm:init` - Install dependencies and configure GitHub
### PRD Commands
- `/pm:prd-new` - Launch brainstorming for new product requirement
- `/pm:prd-parse` - Convert PRD to implementation epic
- `/pm:prd-list` - List all PRDs
- `/pm:prd-edit` - Edit existing PRD
- `/pm:prd-status` - Show PRD implementation status
### Epic Commands
- `/pm:epic-decompose` - Break epic into task files
- `/pm:epic-sync` - Push epic and tasks to GitHub
- `/pm:epic-oneshot` - Decompose and sync in one command
- `/pm:epic-list` - List all epics
- `/pm:epic-show` - Display epic and its tasks
- `/pm:epic-close` - Mark epic as complete
- `/pm:epic-edit` - Edit epic details
- `/pm:epic-refresh` - Update epic progress from tasks
### Issue Commands
- `/pm:issue-show` - Display issue and sub-issues
- `/pm:issue-status` - Check issue status
- `/pm:issue-start` - Begin work with specialized agent
- `/pm:issue-sync` - Push updates to GitHub
- `/pm:issue-close` - Mark issue as complete
- `/pm:issue-reopen` - Reopen closed issue
- `/pm:issue-edit` - Edit issue details
### Workflow Commands
- `/pm:next` - Show next priority issue with epic context
- `/pm:status` - Overall project dashboard
- `/pm:standup` - Daily standup report
- `/pm:blocked` - Show blocked tasks
- `/pm:in-progress` - List work in progress
### Sync Commands
- `/pm:sync` - Full bidirectional sync with GitHub
- `/pm:import` - Import existing GitHub issues
### Maintenance Commands
- `/pm:validate` - Check system integrity
- `/pm:clean` - Archive completed work
- `/pm:search` - Search across all content
## The Parallel Execution System
### Issues Aren't Atomic
Traditional thinking: One issue = One developer = One task
**Reality: One issue = Multiple parallel work streams**
A single "Implement user authentication" issue isn't one task. It's...
- **Agent 1**: Database tables and migrations
- **Agent 2**: Service layer and business logic
- **Agent 3**: API endpoints and middleware
- **Agent 4**: UI components and forms
- **Agent 5**: Test suites and documentation
All running **simultaneously** in the same worktree.
### The Math of Velocity
**Traditional Approach:**
- Epic with 3 issues
- Sequential execution
**This System:**
- Same epic with 3 issues
- Each issue splits into ~4 parallel streams
- **12 agents working simultaneously**
We're not assigning agents to issues. We're **leveraging multiple agents** to ship faster.
### Context Optimization
**Traditional single-thread approach:**
- Main conversation carries ALL the implementation details
- Context window fills with database schemas, API code, UI components
- Eventually hits context limits and loses coherence
**Parallel agent approach:**
- Main thread stays clean and strategic
- Each agent handles its own context in isolation
- Implementation details never pollute the main conversation
- Main thread maintains oversight without drowning in code
Your main conversation becomes the conductor, not the orchestra.
### GitHub vs Local: Perfect Separation
**What GitHub Sees:**
- Clean, simple issues
- Progress updates
- Completion status
**What Actually Happens Locally:**
- Issue #1234 explodes into 5 parallel agents
- Agents coordinate through Git commits
- Complex orchestration hidden from view
GitHub doesn't need to know HOW the work got done β just that it IS done.
### The Command Flow
```bash
# Analyze what can be parallelized
/pm:issue-analyze 1234
# Launch the swarm
/pm:epic-start memory-system
# Watch the magic
# 12 agents working across 3 issues
# All in: ../epic-memory-system/
# One clean merge when done
/pm:epic-merge memory-system
```
## Key Features & Benefits
### π§ **Context Preservation**
Never lose project state again. Each epic maintains its own context, agents read from `.claude/context/`, and updates locally before syncing.
### β‘ **Parallel Execution**
Ship faster with multiple agents working simultaneously. Tasks marked `parallel: true` enable conflict-free concurrent development.
### π **GitHub Native**
Works with tools your team already uses. Issues are the source of truth, comments provide history, and there is no dependency on the Projects API.
### π€ **Agent Specialization**
Right tool for every job. Different agents for UI, API, and database work. Each reads requirements and posts updates automatically.
### π **Full Traceability**
Every decision is documented. PRD β Epic β Task β Issue β Code β Commit. Complete audit trail from idea to production.
### π **Developer Productivity**
Focus on building, not managing. Intelligent prioritization, automatic context loading, and incremental sync when ready.
## Proven Results
Teams using this system report:
- **89% less time** lost to context switching β you'll use `/compact` and `/clear` a LOT less
- **5-8 parallel tasks** vs 1 previously β editing/testing multiple files at the same time
- **75% reduction** in bug rates β due to the breaking down features into detailed tasks
- **Up to 3x faster** feature delivery β based on feature size and complexity
## Example Flow
```bash
# Start a new feature
/pm:prd-new memory-system
# Review and refine the PRD...
# Create implementation plan
/pm:prd-parse memory-system
# Review the epic...
# Break into tasks and push to GitHub
/pm:epic-oneshot memory-system
# Creates issues: #1234 (epic), #1235, #1236 (tasks)
# Start development on a task
/pm:issue-start 1235
# Agent begins work, maintains local progress
# Sync progress to GitHub
/pm:issue-sync 1235
# Updates posted as issue comments
# Check overall status
/pm:epic-show memory-system
```
## Get Started Now
### Quick Setup (2 minutes)
1. **Install this repository into your project**:
#### Unix/Linux/macOS
```bash
cd path/to/your/project/
curl -sSL https://automaze.io/ccpm/install | bash
# or: wget -qO- https://automaze.io/ccpm/install | bash
```
#### Windows (PowerShell)
```bash
cd path/to/your/project/
iwr -useb https://automaze.io/ccpm/install | iex
```
> β οΈ **IMPORTANT**: If you already have a `.claude` directory, clone this repository to a different directory and copy the contents of the cloned `.claude` directory to your project's `.claude` directory.
See full/other installation options in the [installation guide βΊ](https://github.com/automazeio/ccpm/tree/main/install)
2. **Initialize the PM system**:
```bash
/pm:init
```
This command will:
- Install GitHub CLI (if needed)
- Authenticate with GitHub
- Install [gh-sub-issue extension](https://github.com/yahsan2/gh-sub-issue) for proper parent-child relationships
- Create required directories
- Update .gitignore
3. **Create `CLAUDE.md`** with your repository information
```bash
/init include rules from .claude/CLAUDE.md
```
> If you already have a `CLAUDE.md` file, run: `/re-init` to update it with important rules from `.claude/CLAUDE.md`.
4. **Prime the system**:
```bash
/context:create
```
### Start Your First Feature
```bash
/pm:prd-new your-feature-name
```
Watch as structured planning transforms into shipped code.
## Local vs Remote
| Operation | Local | GitHub |
|-----------|-------|--------|
| PRD Creation | β
| β |
| Implementation Planning | β
| β |
| Task Breakdown | β
| β
(sync) |
| Execution | β
| β |
| Status Updates | β
| β
(sync) |
| Final Deliverables | β | β
|
## Technical Notes
### GitHub Integration
- Uses **gh-sub-issue extension** for proper parent-child relationships
- Falls back to task lists if extension not installed
- Epic issues track sub-task completion automatically
- Labels provide additional organization (`epic:feature`, `task:feature`)
### File Naming Convention
- Tasks start as `001.md`, `002.md` during decomposition
- After GitHub sync, renamed to `{issue-id}.md` (e.g., `1234.md`)
- Makes it easy to navigate: issue #1234 = file `1234.md`
### Design Decisions
- Intentionally avoids GitHub Projects API complexity
- All commands operate on local files first for speed
- Synchronization with GitHub is explicit and controlled
- Worktrees provide clean git isolation for parallel work
- GitHub Projects can be added separately for visualization
---
## Support This Project
Claude Code PM was developed at [Automaze](https://automaze.io) **for developers who ship, by developers who ship**.
If Claude Code PM helps your team ship better software:
- β **[Star this repository](https://github.com/automazeio/ccpm)** to show your support
- π¦ **[Follow @aroussi on X](https://x.com/aroussi)** for updates and tips
---
> [!TIP]
> **Ship faster with Automaze.** We partner with founders to bring their vision to life, scale their business, and optimize for success.
> **[Visit Automaze to book a call with me βΊ](https://automaze.io)**
---
## Star History
