Back to catalog

ccpm

by automazeio

Pending

Project management system for Claude Code using GitHub Issues and Git worktrees for parallel agent execution.

6,438stars
679forks
Shell
Added 12/27/2025
AI Agentsai-agentsai-codingclaudeclaude-codeproject-managementvibe-coding
Installation
# Add to your Claude Code skills
git clone https://github.com/automazeio/ccpm
README.md

Claude Code PM

Automaze   Claude Code GitHub Issues   Mentioned in Awesome Claude Code   MIT License   Follow on 𝕏   Star this repo

Claude Code workflow to ship ~~faster~~ better using spec-driven development, GitHub issues, Git worktrees, and multiple AI agents running in parallel.

中文文档 (Chinese Documentation)

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.

Claude Code PM

Table of Contents

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

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)

# 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 T...