Cldpm
Description
CPM (Claude Project Manager) is an SDK and CLI for managing mono repos with multiple Claude Code projects. It enables sharing skills, agents, hooks, and rules across projects without duplication.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
CLDPM - Claude Project Manager
An SDK and CLI for managing mono repos with multiple Claude Code projects. Supports shared skills, agents, hooks, and rules across projects without duplication.
[](https://www.python.org/downloads/) [](LICENSE) [](https://transilienceai.github.io/cldpm)
Overview
CLDPM enables sharing components across multiple Claude Code projects using a hybrid linking strategy. References are stored in config files, and symlinks are generated locally for fast access.
graph TB
subgraph "Mono Repo"
CLDPM[cldpm.json]
subgraph "Shared Components"
S1[skills/logging]
S2[skills/code-review]
A1[agents/debugger]
H1[hooks/pre-commit]
end
subgraph "Projects"
subgraph "web-app"
P1[project.json]
C1[.claude/skills/logging]
C2[.claude/skills/code-review]
L1[.claude/skills/local-skill]
end
subgraph "api-server"
P2[project.json]
C3[.claude/skills/logging]
C4[.claude/agents/debugger]
end
end
end
S1 -.->|symlink| C1
S1 -.->|symlink| C3
S2 -.->|symlink| C2
A1 -.->|symlink| C4
style L1 fill:#6941c6
Installation
pip install cldpm
Or with pipx for isolated installation:
pipx install cldpm
Quick Start
# Initialize a new mono repo
cldpm init my-monorepo
cd my-monorepo
# Create a project
cldpm create project web-app
# Create shared components
cldpm create skill logging -d "Logging utilities"
cldpm create agent code-reviewer -d "Code review assistant"
# Add components to project
cldpm add skill:logging --to web-app
cldpm add agent:code-re
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11