claude-autopm 3.4.4 โ 3.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +78 -579
- package/package.json +1 -1
- package/scripts/sync-docs.js +116 -0
package/README.md
CHANGED
|
@@ -2,648 +2,147 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/claude-autopm)
|
|
4
4
|
[](https://www.npmjs.com/package/claude-autopm)
|
|
5
|
-
[](
|
|
5
|
+
[](LICENSE)
|
|
6
6
|
[](https://github.com/rafeekpro/ClaudeAutoPM)
|
|
7
7
|
|
|
8
|
-
**AI-Powered
|
|
8
|
+
**AI-Powered Project Management Framework for Claude Code**
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
ClaudeAutoPM transforms your development workflow with intelligent automation, 60+ specialized AI agents, and complete GitHub/Azure DevOps integration.
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
##
|
|
15
|
-
|
|
16
|
-
ClaudeAutoPM is a **modular, plugin-based development framework** designed specifically for [Claude Code](https://claude.ai/code). It provides:
|
|
17
|
-
|
|
18
|
-
- **๐ 11+ Plugin System** - Modular architecture with scenario-based installation
|
|
19
|
-
- **๐ญ 145+ AI Agents & Commands** - Specialized agents organized by domain
|
|
20
|
-
- **๐ Smart Installation** - 4 installation scenarios from minimal to full DevOps
|
|
21
|
-
- **๐ฆ Auto-Plugin Installation** - Automatically installs plugins based on your scenario
|
|
22
|
-
- **๐ Full Provider Integration** - GitHub & Azure DevOps synchronization
|
|
23
|
-
- **โก TDD-Developed** - 64+ tests with comprehensive coverage
|
|
24
|
-
|
|
25
|
-
### ๐ **NEW in v2.8.2: Intelligent Scenario-Based Installation**
|
|
26
|
-
|
|
27
|
-
**Automatic Plugin Configuration** - Choose your scenario, plugins install automatically
|
|
28
|
-
|
|
29
|
-
ClaudeAutoPM now automatically installs the right plugins for your development needs:
|
|
30
|
-
|
|
31
|
-
**Installation Scenarios:**
|
|
32
|
-
|
|
33
|
-
```bash
|
|
34
|
-
1. Minimal (3 plugins)
|
|
35
|
-
โข Sequential execution, native tooling
|
|
36
|
-
โข Plugins: core, languages, pm
|
|
37
|
-
โข Best for: Learning, simple projects, debugging
|
|
38
|
-
|
|
39
|
-
2. Docker-only (6 plugins)
|
|
40
|
-
โข Adaptive execution with Docker
|
|
41
|
-
โข Plugins: core, languages, frameworks, testing, devops, pm
|
|
42
|
-
โข Best for: Modern web apps with containerization
|
|
43
|
-
|
|
44
|
-
3. Full DevOps (9 plugins) โญ RECOMMENDED
|
|
45
|
-
โข Adaptive execution with all cloud features
|
|
46
|
-
โข Plugins: core, languages, frameworks, testing, devops, cloud, databases, pm, ai
|
|
47
|
-
โข Best for: Production applications, cloud deployments
|
|
48
|
-
|
|
49
|
-
4. Performance (11 plugins)
|
|
50
|
-
โข Hybrid parallel execution with ALL capabilities
|
|
51
|
-
โข Plugins: ALL (core, languages, frameworks, testing, devops, cloud, databases, data, pm, ai, ml)
|
|
52
|
-
โข Best for: Data pipelines, ML workflows, power users
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
**What Happens During Installation:**
|
|
56
|
-
|
|
57
|
-
1. **Choose Your Scenario** - Select the installation that matches your needs
|
|
58
|
-
2. **Plugins Auto-Install** - System installs all plugins for that scenario
|
|
59
|
-
3. **Configuration Saved** - `.claude/config.json` records what was installed
|
|
60
|
-
4. **Agents Ready** - All agents from installed plugins are immediately available
|
|
61
|
-
|
|
62
|
-
**Installation Results:**
|
|
63
|
-
|
|
64
|
-
```bash
|
|
65
|
-
โ Scenario: Full DevOps selected
|
|
66
|
-
โ Installing 9 plugins...
|
|
67
|
-
|
|
68
|
-
โ Core Framework (4 agents, 3 commands, 17 rules)
|
|
69
|
-
โ Programming Languages (5 agents)
|
|
70
|
-
โ Web Frameworks (6 agents, 1 command)
|
|
71
|
-
โ Testing Tools (2 agents)
|
|
72
|
-
โ DevOps & CI/CD (7 agents)
|
|
73
|
-
โ Cloud Platforms (8 agents)
|
|
74
|
-
โ Databases (5 agents)
|
|
75
|
-
โ Project Management (87 commands)
|
|
76
|
-
โ AI Integration (2 agents)
|
|
77
|
-
|
|
78
|
-
โ
Installation complete!
|
|
79
|
-
๐ Config saved to .claude/config.json
|
|
80
|
-
๐ฏ 62 agents + 91 commands ready to use
|
|
81
|
-
```
|
|
82
|
-
|
|
83
|
-
**Configuration Persistence:**
|
|
84
|
-
|
|
85
|
-
The installer creates `.claude/config.json` with full installation details:
|
|
86
|
-
|
|
87
|
-
```json
|
|
88
|
-
{
|
|
89
|
-
"version": "2.8.2",
|
|
90
|
-
"installed": "2025-01-15T10:30:00.000Z",
|
|
91
|
-
"execution_strategy": "adaptive",
|
|
92
|
-
"plugins": [
|
|
93
|
-
"plugin-core",
|
|
94
|
-
"plugin-languages",
|
|
95
|
-
"plugin-frameworks",
|
|
96
|
-
"plugin-testing",
|
|
97
|
-
"plugin-devops",
|
|
98
|
-
"plugin-cloud",
|
|
99
|
-
"plugin-databases",
|
|
100
|
-
"plugin-pm",
|
|
101
|
-
"plugin-ai"
|
|
102
|
-
],
|
|
103
|
-
"installedPlugins": [
|
|
104
|
-
{
|
|
105
|
-
"name": "plugin-core",
|
|
106
|
-
"displayName": "Core Framework",
|
|
107
|
-
"agents": 4,
|
|
108
|
-
"commands": 3,
|
|
109
|
-
"rules": 17
|
|
110
|
-
}
|
|
111
|
-
// ... full details for all plugins
|
|
112
|
-
]
|
|
113
|
-
}
|
|
114
|
-
```
|
|
115
|
-
|
|
116
|
-
---
|
|
117
|
-
|
|
118
|
-
## โจ Key Features
|
|
119
|
-
|
|
120
|
-
### ๐ Modular Plugin Architecture
|
|
121
|
-
|
|
122
|
-
**11 Official Plugins** - Mix and match capabilities:
|
|
123
|
-
|
|
124
|
-
| Plugin | Agents | Commands | Description |
|
|
125
|
-
|--------|--------|----------|-------------|
|
|
126
|
-
| **@claudeautopm/plugin-core** | 4 | 3 | Framework essentials (agent-manager, code-analyzer, test-runner) |
|
|
127
|
-
| **@claudeautopm/plugin-pm** | 0 | 87 | Complete PM workflow (epics, tasks, Azure DevOps, GitHub) |
|
|
128
|
-
| **@claudeautopm/plugin-languages** | 5 | 0 | Programming languages (JavaScript, TypeScript, Python, Node.js, Bash) |
|
|
129
|
-
| **@claudeautopm/plugin-frameworks** | 6 | 1 | Web frameworks (React, Vue, Tailwind CSS, UX Design) |
|
|
130
|
-
| **@claudeautopm/plugin-testing** | 2 | 0 | Testing tools (E2E, frontend testing, accessibility) |
|
|
131
|
-
| **@claudeautopm/plugin-devops** | 7 | 0 | DevOps & CI/CD (Docker, GitHub Actions, SSH, observability) |
|
|
132
|
-
| **@claudeautopm/plugin-cloud** | 8 | 0 | Cloud platforms (AWS, Azure, GCP, Kubernetes, Terraform) |
|
|
133
|
-
| **@claudeautopm/plugin-databases** | 5 | 0 | Databases (PostgreSQL, MongoDB, Redis, BigQuery, Cosmos DB) |
|
|
134
|
-
| **@claudeautopm/plugin-data** | 3 | 0 | Data pipelines (Airflow, Kedro, message queues) |
|
|
135
|
-
| **@claudeautopm/plugin-ai** | 2 | 0 | AI integration (OpenAI, Gemini) |
|
|
136
|
-
| **@claudeautopm/plugin-ml** | 15 | 0 | Machine Learning (scikit-learn, PyTorch, TensorFlow, MLOps) |
|
|
137
|
-
|
|
138
|
-
**Total Available:** 62+ specialized agents, 91 commands
|
|
139
|
-
|
|
140
|
-
### ๐ฆ Scenario-Based Installation (v2.8.2)
|
|
141
|
-
|
|
142
|
-
**Smart Installation** - Automatically installs plugins based on your development needs:
|
|
143
|
-
|
|
144
|
-
- **Minimal (3 plugins)** - Core, Languages, PM - Perfect for learning
|
|
145
|
-
- **Docker-only (6 plugins)** - Adds Frameworks, Testing, DevOps - Modern web development
|
|
146
|
-
- **Full DevOps (9 plugins)** โญ - Adds Cloud, Databases, AI - Production-ready (RECOMMENDED)
|
|
147
|
-
- **Performance (11 plugins)** - ALL plugins including Data & ML - Maximum capability
|
|
148
|
-
|
|
149
|
-
### ๐ค Intelligent Agent System
|
|
150
|
-
|
|
151
|
-
**145+ AI Agents & Commands** organized by domain:
|
|
152
|
-
|
|
153
|
-
- **Core Framework** (4 agents) - agent-manager, code-analyzer, test-runner, file-analyzer
|
|
154
|
-
- **Programming Languages** (5 agents) - JavaScript, TypeScript, Python, Node.js, Bash experts
|
|
155
|
-
- **Web Frameworks** (6 agents) - React, Vue, Tailwind, UX design, E2E testing
|
|
156
|
-
- **DevOps & CI/CD** (7 agents) - Docker, GitHub Actions, Azure DevOps, SSH, observability
|
|
157
|
-
- **Cloud Platforms** (8 agents) - AWS, Azure, GCP, Kubernetes, Terraform specialists
|
|
158
|
-
- **Databases** (5 agents) - PostgreSQL, MongoDB, Redis, BigQuery, Cosmos DB
|
|
159
|
-
- **Data Engineering** (3 agents) - Airflow, Kedro, LangGraph, message queues
|
|
160
|
-
- **AI Integration** (2 agents) - OpenAI, Gemini API experts
|
|
161
|
-
- **Machine Learning** (15 agents) - scikit-learn, PyTorch, TensorFlow, MLOps, AutoML
|
|
162
|
-
- **Project Management** (87 commands) - Complete PM workflow suite
|
|
163
|
-
|
|
164
|
-
### ๐ Complete GitHub Integration
|
|
165
|
-
|
|
166
|
-
**Full Bidirectional GitHub Sync** - Seamless integration with GitHub Issues:
|
|
167
|
-
|
|
168
|
-
```bash
|
|
169
|
-
# Issue Synchronization
|
|
170
|
-
autopm issue sync <number> # Bidirectional sync
|
|
171
|
-
autopm issue sync <number> --push # Push local โ GitHub
|
|
172
|
-
autopm issue sync <number> --pull # Pull GitHub โ local
|
|
173
|
-
autopm issue sync-status <number> # Check sync status
|
|
174
|
-
autopm issue sync-resolve <number> # Resolve conflicts
|
|
175
|
-
--strategy newest|local|remote
|
|
176
|
-
```
|
|
177
|
-
|
|
178
|
-
**Features:**
|
|
179
|
-
- Smart conflict detection with multiple resolution strategies
|
|
180
|
-
- Sync mapping in `.claude/sync-map.json`
|
|
181
|
-
- Epic support (epics โ GitHub issues with checkboxes)
|
|
182
|
-
- Rate limiting with exponential backoff
|
|
183
|
-
- Real API testing with 99% test coverage
|
|
184
|
-
|
|
185
|
-
### ๐ Complete CLI Command Suite (v2.7.0)
|
|
186
|
-
|
|
187
|
-
**24 PM Commands** - Full project management workflow:
|
|
14
|
+
## Quick Install
|
|
188
15
|
|
|
189
16
|
```bash
|
|
190
|
-
# Issue Management (6 commands)
|
|
191
|
-
autopm issue show <number> # Display issue details
|
|
192
|
-
autopm issue start <number> # Start working on issue
|
|
193
|
-
autopm issue close <number> # Close completed issue
|
|
194
|
-
autopm issue status <number> # Check issue status
|
|
195
|
-
autopm issue edit <number> # Edit issue in editor
|
|
196
|
-
autopm issue sync <number> # Sync with provider
|
|
197
|
-
|
|
198
|
-
# Workflow Commands (6 commands)
|
|
199
|
-
autopm pm next # Get next priority task
|
|
200
|
-
autopm pm what-next # AI-powered suggestions
|
|
201
|
-
autopm pm standup # Generate daily standup
|
|
202
|
-
autopm pm status # Project status overview
|
|
203
|
-
autopm pm in-progress # Show active tasks
|
|
204
|
-
autopm pm blocked # List blocked tasks
|
|
205
|
-
|
|
206
|
-
# Context Management (4 commands)
|
|
207
|
-
autopm context create <type> # Create context from template
|
|
208
|
-
autopm context prime # Generate project snapshot
|
|
209
|
-
autopm context update <type> # Update existing context
|
|
210
|
-
autopm context show [type] # Show or list contexts
|
|
211
|
-
|
|
212
|
-
# Project Utilities (6 commands)
|
|
213
|
-
autopm pm init # Initialize PM structure
|
|
214
|
-
autopm pm validate # Validate project (--fix for repair)
|
|
215
|
-
autopm pm sync # Sync with provider
|
|
216
|
-
autopm pm clean # Clean stale artifacts
|
|
217
|
-
autopm pm search <query> # Search entities (BM25)
|
|
218
|
-
autopm pm import <source> # Import from external sources
|
|
219
|
-
```
|
|
220
|
-
|
|
221
|
-
### โก Execution Strategies
|
|
222
|
-
|
|
223
|
-
**Adaptive by Default** - Choose your execution model:
|
|
224
|
-
|
|
225
|
-
- **Sequential** - Safe, one agent at a time (minimal scenario)
|
|
226
|
-
- **Adaptive** - Intelligent mode selection (docker-only, full-devops)
|
|
227
|
-
- **Hybrid** - Maximum parallelization (performance scenario)
|
|
228
|
-
|
|
229
|
-
### ๐ Multi-Provider Support
|
|
230
|
-
|
|
231
|
-
Seamlessly work with:
|
|
232
|
-
- **GitHub** - Issues, PRs, Actions, Projects
|
|
233
|
-
- **Azure DevOps** - Work Items, Boards, Pipelines, Repos
|
|
234
|
-
- **Local** - Git-based workflow without remote provider
|
|
235
|
-
|
|
236
|
-
---
|
|
237
|
-
|
|
238
|
-
## ๐ Quick Start
|
|
239
|
-
|
|
240
|
-
### Installation
|
|
241
|
-
|
|
242
|
-
```bash
|
|
243
|
-
# Install globally via npm
|
|
244
17
|
npm install -g claude-autopm
|
|
245
|
-
|
|
246
|
-
# Verify installation
|
|
247
|
-
autopm --version
|
|
248
|
-
```
|
|
249
|
-
|
|
250
|
-
### 5-Minute Setup
|
|
251
|
-
|
|
252
|
-
```bash
|
|
253
|
-
# 1. Install in your project
|
|
254
18
|
cd your-project
|
|
255
19
|
autopm install
|
|
256
|
-
|
|
257
|
-
# 2. Choose your scenario (interactive menu)
|
|
258
|
-
# โ Minimal (3 plugins) - Learning
|
|
259
|
-
# โ Docker-only (6 plugins) - Modern web
|
|
260
|
-
# โ Full DevOps (9 plugins) - Production โญ RECOMMENDED
|
|
261
|
-
# โ Performance (11 plugins) - Data/ML workflows
|
|
262
|
-
# โ Custom - Advanced configuration
|
|
263
|
-
|
|
264
|
-
# 3. Plugins install automatically based on scenario
|
|
265
|
-
# System installs all agents, commands, rules for your scenario
|
|
266
|
-
|
|
267
|
-
# 4. Configure your provider (optional)
|
|
268
|
-
autopm config set provider github
|
|
269
|
-
autopm config set github.owner YOUR_USERNAME
|
|
270
|
-
autopm config set github.repo YOUR_REPO
|
|
271
|
-
|
|
272
|
-
# Add your token to .claude/.env (recommended) or export directly
|
|
273
|
-
echo "GITHUB_TOKEN=your_github_token" >> .claude/.env
|
|
274
|
-
|
|
275
|
-
# 5. Verify configuration
|
|
276
|
-
autopm config validate
|
|
277
|
-
|
|
278
|
-
# 6. Open Claude Code
|
|
279
|
-
claude --dangerously-skip-permissions .
|
|
280
20
|
```
|
|
281
21
|
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
"version": "2.8.2",
|
|
288
|
-
"execution_strategy": "adaptive",
|
|
289
|
-
"plugins": ["plugin-core", "plugin-languages", ...],
|
|
290
|
-
"installedPlugins": [
|
|
291
|
-
{
|
|
292
|
-
"name": "plugin-core",
|
|
293
|
-
"agents": 4,
|
|
294
|
-
"commands": 3,
|
|
295
|
-
"rules": 17
|
|
296
|
-
}
|
|
297
|
-
// ... details for all installed plugins
|
|
298
|
-
]
|
|
299
|
-
}
|
|
300
|
-
```
|
|
301
|
-
|
|
302
|
-
**Installed Resources**:
|
|
303
|
-
- `.claude/agents/` - All agents from installed plugins
|
|
304
|
-
- `.claude/commands/` - All commands from installed plugins
|
|
305
|
-
- `.claude/rules/` - Framework rules and guidelines
|
|
306
|
-
- `.claude/hooks/` - Enforcement hooks (TDD, Context7)
|
|
307
|
-
- `.claude/scripts/` - Utility scripts
|
|
22
|
+
Choose your scenario during installation:
|
|
23
|
+
- **Minimal** - Core features, 3 plugins
|
|
24
|
+
- **Docker-only** - Modern web development, 6 plugins
|
|
25
|
+
- **Full DevOps** - Production-ready, 9 plugins (recommended)
|
|
26
|
+
- **Performance** - All capabilities, 11 plugins
|
|
308
27
|
|
|
309
|
-
|
|
28
|
+
---
|
|
310
29
|
|
|
311
|
-
|
|
30
|
+
## Quick Start
|
|
312
31
|
|
|
313
32
|
```bash
|
|
314
|
-
#
|
|
33
|
+
# Initialize PM structure
|
|
315
34
|
autopm pm init
|
|
316
35
|
|
|
317
|
-
#
|
|
318
|
-
/pm:prd-new "
|
|
319
|
-
|
|
320
|
-
# 3. Decompose into epic
|
|
36
|
+
# Create and decompose a feature
|
|
37
|
+
/pm:prd-new "User authentication system"
|
|
321
38
|
/pm:epic-decompose prd-001-authentication.md
|
|
322
39
|
|
|
323
|
-
#
|
|
324
|
-
autopm pm what-next
|
|
325
|
-
|
|
326
|
-
# 5. Start working on next task
|
|
40
|
+
# Work on tasks
|
|
327
41
|
autopm pm next
|
|
328
42
|
autopm issue start 123
|
|
329
|
-
|
|
330
|
-
# 6. Generate daily standup
|
|
331
|
-
autopm pm standup
|
|
332
|
-
|
|
333
|
-
# 7. Complete and close issue
|
|
334
43
|
autopm issue close 123
|
|
335
44
|
|
|
336
|
-
#
|
|
45
|
+
# Sync with provider
|
|
337
46
|
autopm pm sync
|
|
338
47
|
```
|
|
339
48
|
|
|
340
|
-
**Option B: Classic Claude Code Workflow**
|
|
341
|
-
|
|
342
|
-
```bash
|
|
343
|
-
# 1. Create a PRD (in Claude Code)
|
|
344
|
-
/pm:prd-new "Build user authentication system"
|
|
345
|
-
|
|
346
|
-
# 2. Decompose into epic
|
|
347
|
-
/pm:epic-decompose prd-001-authentication.md
|
|
348
|
-
|
|
349
|
-
# 3. Sync with GitHub
|
|
350
|
-
/pm:epic-sync epic-001-authentication.md
|
|
351
|
-
|
|
352
|
-
# 4. Start working
|
|
353
|
-
/pm:next
|
|
354
|
-
|
|
355
|
-
# 5. Complete and sync
|
|
356
|
-
/pm:issue-close
|
|
357
|
-
```
|
|
358
|
-
|
|
359
49
|
---
|
|
360
50
|
|
|
361
|
-
##
|
|
51
|
+
## Features
|
|
362
52
|
|
|
363
|
-
### Plugin
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
โ โโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
|
|
379
|
-
โ โ Plugin System (11 plugins) โ โ
|
|
380
|
-
โ โ โข Core Framework (agents, commands, rules) โ โ
|
|
381
|
-
โ โ โข Domain Plugins (specialized agents) โ โ
|
|
382
|
-
โ โ โข Auto-discovery & installation โ โ
|
|
383
|
-
โ โโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
|
|
384
|
-
โ โ โ
|
|
385
|
-
โ โโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
|
|
386
|
-
โ โ Agent Teams (145+ agents/commands) โ โ
|
|
387
|
-
โ โ โข Dynamic team loading โ โ
|
|
388
|
-
โ โ โข Context7-driven documentation โ โ
|
|
389
|
-
โ โ โข Parallel execution support โ โ
|
|
390
|
-
โ โโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
|
|
391
|
-
โ โ โ
|
|
392
|
-
โ โโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
|
|
393
|
-
โ โ Execution Engine โ โ
|
|
394
|
-
โ โ โข Sequential / Adaptive / Hybrid โ โ
|
|
395
|
-
โ โ โข Parallel agent coordination โ โ
|
|
396
|
-
โ โ โข Context optimization โ โ
|
|
397
|
-
โ โโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
|
|
398
|
-
โ โ โ
|
|
399
|
-
โ โโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
|
|
400
|
-
โ โ Provider Integration โ โ
|
|
401
|
-
โ โ โข GitHub (Issues, PRs, Actions) โ โ
|
|
402
|
-
โ โ โข Azure DevOps (Work Items, Boards) โ โ
|
|
403
|
-
โ โ โข Local (Git-based) โ โ
|
|
404
|
-
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
|
|
405
|
-
โ โ
|
|
406
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
407
|
-
```
|
|
408
|
-
|
|
409
|
-
### Installation Flow
|
|
410
|
-
|
|
411
|
-
```
|
|
412
|
-
User runs: autopm install
|
|
413
|
-
โ
|
|
414
|
-
Choose Scenario (1-4)
|
|
415
|
-
โ
|
|
416
|
-
System determines plugin list
|
|
417
|
-
โ
|
|
418
|
-
For each plugin:
|
|
419
|
-
โโ Copy agents โ .claude/agents/<category>/
|
|
420
|
-
โโ Copy commands โ .claude/commands/
|
|
421
|
-
โโ Copy rules โ .claude/rules/
|
|
422
|
-
โโ Copy hooks โ .claude/hooks/
|
|
423
|
-
โโ Copy scripts โ scripts/
|
|
424
|
-
โ
|
|
425
|
-
Create .claude/config.json
|
|
426
|
-
โโ List installed plugins
|
|
427
|
-
โโ Record installation details
|
|
428
|
-
โโ Save execution strategy
|
|
429
|
-
โ
|
|
430
|
-
โ
Installation Complete!
|
|
431
|
-
```
|
|
432
|
-
|
|
433
|
-
### Plugin Discovery
|
|
434
|
-
|
|
435
|
-
**Installation Time** (v2.8.2):
|
|
436
|
-
- Direct file system access to `packages/` directory
|
|
437
|
-
- Reads `plugin.json` metadata
|
|
438
|
-
- Copies resources to `.claude/` directories
|
|
439
|
-
- No npm packages required
|
|
53
|
+
### Plugin System
|
|
54
|
+
11 official plugins with 60+ specialized agents:
|
|
55
|
+
- **Core** - Framework essentials, code analyzer, test runner
|
|
56
|
+
- **Languages** - JavaScript, TypeScript, Python, Node.js, Bash
|
|
57
|
+
- **Frameworks** - React, Vue, Tailwind CSS
|
|
58
|
+
- **Testing** - E2E, frontend testing, accessibility
|
|
59
|
+
- **DevOps** - Docker, GitHub Actions, observability
|
|
60
|
+
- **Cloud** - AWS, Azure, GCP, Kubernetes, Terraform
|
|
61
|
+
- **Databases** - PostgreSQL, MongoDB, Redis, BigQuery
|
|
62
|
+
- **PM** - 87 project management commands
|
|
63
|
+
|
|
64
|
+
### Provider Integration
|
|
65
|
+
- **GitHub** - Issues, PRs, Actions, Projects
|
|
66
|
+
- **Azure DevOps** - Work Items, Boards, Pipelines
|
|
67
|
+
- **Local** - Git-based workflow
|
|
440
68
|
|
|
441
|
-
|
|
442
|
-
-
|
|
443
|
-
-
|
|
444
|
-
-
|
|
69
|
+
### Execution Strategies
|
|
70
|
+
- **Sequential** - Safe, predictable, resource-light
|
|
71
|
+
- **Adaptive** - Intelligent mode selection (default)
|
|
72
|
+
- **Hybrid** - Maximum parallelization
|
|
445
73
|
|
|
446
74
|
---
|
|
447
75
|
|
|
448
|
-
##
|
|
76
|
+
## Documentation
|
|
449
77
|
|
|
450
78
|
### Getting Started
|
|
451
|
-
- [Installation
|
|
452
|
-
- [
|
|
453
|
-
- [
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
- [
|
|
458
|
-
- [
|
|
459
|
-
- [
|
|
460
|
-
- [
|
|
461
|
-
|
|
462
|
-
###
|
|
463
|
-
- [
|
|
464
|
-
- [
|
|
465
|
-
- [
|
|
466
|
-
- [
|
|
467
|
-
- [
|
|
468
|
-
|
|
469
|
-
### Workflows
|
|
470
|
-
- [PRD to Production](docs/workflows/prd-to-production.md) - Complete development cycle
|
|
471
|
-
- [Epic Management](docs/workflows/epic-management.md) - Managing epics and tasks
|
|
472
|
-
- [GitHub Integration](docs/workflows/github-integration.md) - Sync with GitHub
|
|
79
|
+
- [Installation](https://rafeekpro.github.io/ClaudeAutoPM/getting-started/installation)
|
|
80
|
+
- [First Project](https://rafeekpro.github.io/ClaudeAutoPM/getting-started/first-project)
|
|
81
|
+
- [Configuration](https://rafeekpro.github.io/ClaudeAutoPM/getting-started/configuration)
|
|
82
|
+
|
|
83
|
+
### User Guide
|
|
84
|
+
- [PM Workflow](https://rafeekpro.github.io/ClaudeAutoPM/user-guide/pm-workflow)
|
|
85
|
+
- [Commands Overview](https://rafeekpro.github.io/ClaudeAutoPM/user-guide/commands-overview)
|
|
86
|
+
- [Agents Overview](https://rafeekpro.github.io/ClaudeAutoPM/user-guide/agents-overview)
|
|
87
|
+
- [MCP Servers](https://rafeekpro.github.io/ClaudeAutoPM/user-guide/mcp-servers)
|
|
88
|
+
- [Best Practices](https://rafeekpro.github.io/ClaudeAutoPM/user-guide/best-practices)
|
|
89
|
+
|
|
90
|
+
### Developer Guide
|
|
91
|
+
- [Architecture](https://rafeekpro.github.io/ClaudeAutoPM/developer-guide/architecture)
|
|
92
|
+
- [Plugin Development](https://rafeekpro.github.io/ClaudeAutoPM/developer-guide/plugin-development)
|
|
93
|
+
- [Agent Development](https://rafeekpro.github.io/ClaudeAutoPM/developer-guide/agent-development)
|
|
94
|
+
- [Command Development](https://rafeekpro.github.io/ClaudeAutoPM/developer-guide/command-development)
|
|
95
|
+
- [Testing](https://rafeekpro.github.io/ClaudeAutoPM/developer-guide/testing)
|
|
96
|
+
- [Contributing](https://rafeekpro.github.io/ClaudeAutoPM/developer-guide/contributing)
|
|
473
97
|
|
|
474
98
|
### Reference
|
|
475
|
-
- [CLI
|
|
476
|
-
- [Agent Registry](
|
|
477
|
-
- [Configuration](
|
|
478
|
-
- [
|
|
99
|
+
- [CLI Reference](https://rafeekpro.github.io/ClaudeAutoPM/commands/)
|
|
100
|
+
- [Agent Registry](https://rafeekpro.github.io/ClaudeAutoPM/agents/)
|
|
101
|
+
- [Configuration Options](https://rafeekpro.github.io/ClaudeAutoPM/reference/configuration)
|
|
102
|
+
- [Troubleshooting](https://rafeekpro.github.io/ClaudeAutoPM/reference/troubleshooting)
|
|
479
103
|
|
|
480
104
|
---
|
|
481
105
|
|
|
482
|
-
##
|
|
483
|
-
|
|
484
|
-
### For Solo Developers
|
|
485
|
-
- ๐ **Quick Setup** - Minimal scenario gets you started in 5 minutes
|
|
486
|
-
- ๐ **Organized Projects** - Clear structure with PRDs, epics, and tasks
|
|
487
|
-
- โก **Progressive Enhancement** - Start minimal, add plugins as needed
|
|
488
|
-
- ๐ **GitHub Integration** - Keep issues in sync automatically
|
|
106
|
+
## Why ClaudeAutoPM?
|
|
489
107
|
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
- ๐ณ **Full DevOps Scenario** - Docker, Kubernetes, cloud platforms
|
|
498
|
-
- โธ๏ธ **Infrastructure as Code** - Terraform, CloudFormation, ARM templates
|
|
499
|
-
- ๐ง **CI/CD Integration** - GitHub Actions, Azure Pipelines
|
|
500
|
-
- ๐ฆ **Multi-Cloud Support** - AWS, Azure, GCP specialists
|
|
501
|
-
|
|
502
|
-
### For Data Engineers
|
|
503
|
-
- ๐ **Performance Scenario** - All data and ML capabilities
|
|
504
|
-
- ๐ **Pipeline Orchestration** - Airflow, Kedro, LangGraph
|
|
505
|
-
- ๐พ **Data Storage** - PostgreSQL, MongoDB, BigQuery
|
|
506
|
-
- ๐ค **ML Workflows** - scikit-learn, PyTorch, TensorFlow, MLOps
|
|
108
|
+
| Feature | ClaudeAutoPM | Traditional Tools |
|
|
109
|
+
|---------|--------------|-------------------|
|
|
110
|
+
| AI-native | Built for Claude Code | Adapted/retrofitted |
|
|
111
|
+
| Modular | 11 plugins, install what you need | Monolithic |
|
|
112
|
+
| Agents | 60+ specialized experts | Generic or none |
|
|
113
|
+
| Workflow | PRD to Production | Fragmented |
|
|
114
|
+
| Integration | GitHub + Azure DevOps | Limited |
|
|
507
115
|
|
|
508
116
|
---
|
|
509
117
|
|
|
510
|
-
##
|
|
511
|
-
|
|
512
|
-
### vs Traditional PM Tools
|
|
513
|
-
- โ
**AI-native** - Built for Claude Code, not adapted
|
|
514
|
-
- โ
**Modular** - Install only what you need
|
|
515
|
-
- โ
**Code-first** - PRDs โ Code โ Production
|
|
516
|
-
- โ
**Scenario-based** - Automatic plugin installation
|
|
118
|
+
## Contributing
|
|
517
119
|
|
|
518
|
-
|
|
519
|
-
- โ
**Full workflow** - Not just code generation
|
|
520
|
-
- โ
**Multi-agent** - 145+ specialized agents, not one generic
|
|
521
|
-
- โ
**Plugin architecture** - Mix and match capabilities
|
|
522
|
-
- โ
**Enterprise-ready** - GitHub & Azure DevOps integration
|
|
523
|
-
|
|
524
|
-
### vs Building Your Own
|
|
525
|
-
- โ
**Proven patterns** - 2+ years of refinement
|
|
526
|
-
- โ
**TDD-developed** - 64+ tests with comprehensive coverage
|
|
527
|
-
- โ
**Active development** - Regular updates and improvements
|
|
528
|
-
- โ
**Community support** - Growing ecosystem and documentation
|
|
529
|
-
|
|
530
|
-
---
|
|
531
|
-
|
|
532
|
-
## ๐ Project Stats
|
|
533
|
-
|
|
534
|
-
### Plugin System
|
|
535
|
-
- **11+ plugins** - Modular architecture
|
|
536
|
-
- **62+ agents** - Specialized AI experts
|
|
537
|
-
- **91 commands** - Complete PM workflow
|
|
538
|
-
- **4 scenarios** - From minimal to full DevOps
|
|
539
|
-
|
|
540
|
-
### Quality Metrics
|
|
541
|
-
- **64+ tests** - Comprehensive test coverage
|
|
542
|
-
- **TDD methodology** - Test-driven development
|
|
543
|
-
- **Context7 integration** - Up-to-date documentation
|
|
544
|
-
- **Production-ready** - Used in real projects
|
|
545
|
-
|
|
546
|
-
### Development Activity
|
|
547
|
-
- **Active maintenance** - Regular updates
|
|
548
|
-
- **npm published** - Easy global installation
|
|
549
|
-
- **GitHub integration** - Full bidirectional sync
|
|
550
|
-
- **Azure DevOps support** - Complete work item management
|
|
551
|
-
|
|
552
|
-
---
|
|
553
|
-
|
|
554
|
-
## ๐ Execution Strategies
|
|
555
|
-
|
|
556
|
-
### Sequential (Minimal Scenario)
|
|
557
|
-
- **Safety First** - One agent at a time
|
|
558
|
-
- **Predictable** - Easy to debug
|
|
559
|
-
- **Resource Light** - Minimal system resources
|
|
560
|
-
- **Best For** - Learning, debugging, simple projects
|
|
561
|
-
|
|
562
|
-
### Adaptive (Docker-only & Full DevOps)
|
|
563
|
-
- **Intelligent** - Automatic mode selection
|
|
564
|
-
- **Balanced** - Performance + safety
|
|
565
|
-
- **Context-Aware** - Adapts to task complexity
|
|
566
|
-
- **Best For** - Most production projects โญ RECOMMENDED
|
|
567
|
-
|
|
568
|
-
### Hybrid (Performance Scenario)
|
|
569
|
-
- **Maximum Speed** - Parallel agent execution
|
|
570
|
-
- **Resource Intensive** - Uses all available cores
|
|
571
|
-
- **Advanced** - Requires understanding of dependencies
|
|
572
|
-
- **Best For** - Data pipelines, ML workflows, power users
|
|
573
|
-
|
|
574
|
-
---
|
|
575
|
-
|
|
576
|
-
## ๐ค Contributing
|
|
577
|
-
|
|
578
|
-
We welcome contributions! See [CONTRIBUTING.md](docs/development/contributing.md) for:
|
|
120
|
+
We welcome contributions! See the [Contributing Guide](https://rafeekpro.github.io/ClaudeAutoPM/developer-guide/contributing) for:
|
|
579
121
|
- Development setup
|
|
580
|
-
- Plugin development guide
|
|
581
122
|
- Coding standards
|
|
582
123
|
- Testing requirements
|
|
583
124
|
- Pull request process
|
|
584
125
|
|
|
585
|
-
### Building Plugins
|
|
586
|
-
|
|
587
|
-
Want to create your own plugin? See [Plugin Development Guide](docs/development/plugin-development.md).
|
|
588
|
-
|
|
589
126
|
---
|
|
590
127
|
|
|
591
|
-
##
|
|
128
|
+
## License
|
|
592
129
|
|
|
593
130
|
MIT License - see [LICENSE](LICENSE) for details.
|
|
594
131
|
|
|
595
132
|
---
|
|
596
133
|
|
|
597
|
-
##
|
|
598
|
-
|
|
599
|
-
- **Documentation**: [https://rafeekpro.github.io/ClaudeAutoPM/](https://rafeekpro.github.io/ClaudeAutoPM/)
|
|
600
|
-
- **npm Package**: [https://www.npmjs.com/package/claude-autopm](https://www.npmjs.com/package/claude-autopm)
|
|
601
|
-
- **Issues**: [https://github.com/rafeekpro/ClaudeAutoPM/issues](https://github.com/rafeekpro/ClaudeAutoPM/issues)
|
|
602
|
-
- **Discussions**: [https://github.com/rafeekpro/ClaudeAutoPM/discussions](https://github.com/rafeekpro/ClaudeAutoPM/discussions)
|
|
603
|
-
|
|
604
|
-
---
|
|
605
|
-
|
|
606
|
-
## ๐ฌ Support
|
|
607
|
-
|
|
608
|
-
- ๐ง Email: autopm@example.com
|
|
609
|
-
- ๐ฆ Twitter: [@rafeekpro](https://twitter.com/rafeekpro)
|
|
610
|
-
- ๐ฌ GitHub Discussions for questions and community support
|
|
611
|
-
|
|
612
|
-
---
|
|
613
|
-
|
|
614
|
-
## ๐ Version History
|
|
615
|
-
|
|
616
|
-
### v2.8.2 (2025-01-15) - Scenario-Based Installation
|
|
617
|
-
- โจ Automatic plugin installation based on scenarios
|
|
618
|
-
- ๐ฏ 4 installation presets (minimal, docker-only, full-devops, performance)
|
|
619
|
-
- ๐ฆ Configuration persistence in `.claude/config.json`
|
|
620
|
-
- ๐ Installation results tracking
|
|
621
|
-
- ๐ Comprehensive documentation update
|
|
622
|
-
|
|
623
|
-
### v2.8.1 (2025-01-10) - Plugin Architecture
|
|
624
|
-
- ๐ Modular plugin system with 11 official plugins
|
|
625
|
-
- ๐ฆ npm workspaces for plugin organization
|
|
626
|
-
- ๐๏ธ Context7-driven architecture
|
|
627
|
-
- ๐ Smart plugin discovery
|
|
628
|
-
|
|
629
|
-
### v2.8.0 (2025-01-05) - GitHub Integration
|
|
630
|
-
- ๐ Full bidirectional GitHub sync
|
|
631
|
-
- โ
Issue sync with conflict detection
|
|
632
|
-
- ๐ฆ Epic sync with task checkboxes
|
|
633
|
-
- ๐ฏ 99% test coverage
|
|
634
|
-
|
|
635
|
-
### v2.7.0 (2024-12-20) - CLI Commands Complete
|
|
636
|
-
- ๐ 24 PM commands implemented
|
|
637
|
-
- โก 168 tests, 91.4% coverage
|
|
638
|
-
- ๐จ Modern UX with progress spinners
|
|
639
|
-
- ๐งช TDD methodology throughout
|
|
134
|
+
## Links
|
|
640
135
|
|
|
641
|
-
|
|
136
|
+
- **Documentation**: [rafeekpro.github.io/ClaudeAutoPM](https://rafeekpro.github.io/ClaudeAutoPM/)
|
|
137
|
+
- **npm**: [npmjs.com/package/claude-autopm](https://www.npmjs.com/package/claude-autopm)
|
|
138
|
+
- **Issues**: [GitHub Issues](https://github.com/rafeekpro/ClaudeAutoPM/issues)
|
|
139
|
+
- **Discussions**: [GitHub Discussions](https://github.com/rafeekpro/ClaudeAutoPM/discussions)
|
|
140
|
+
- **Changelog**: [CHANGELOG.md](CHANGELOG.md)
|
|
642
141
|
|
|
643
142
|
---
|
|
644
143
|
|
|
645
144
|
<p align="center">
|
|
646
|
-
<b>Built
|
|
145
|
+
<b>Built for the Claude Code community</b>
|
|
647
146
|
<br>
|
|
648
|
-
<sub>Star
|
|
147
|
+
<sub>Star this repo if ClaudeAutoPM helps your workflow!</sub>
|
|
649
148
|
</p>
|
package/package.json
CHANGED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Sync Documentation Script
|
|
5
|
+
*
|
|
6
|
+
* Copies docs-site/docs/ โ docs/ to maintain a mirror of the VitePress documentation
|
|
7
|
+
* in the repository root for direct GitHub browsing.
|
|
8
|
+
*
|
|
9
|
+
* Usage:
|
|
10
|
+
* node scripts/sync-docs.js # Sync all docs
|
|
11
|
+
* node scripts/sync-docs.js --dry # Show what would be synced
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
const fs = require('fs-extra');
|
|
15
|
+
const path = require('path');
|
|
16
|
+
const glob = require('glob');
|
|
17
|
+
|
|
18
|
+
const SOURCE_DIR = path.join(__dirname, '..', 'docs-site', 'docs');
|
|
19
|
+
const TARGET_DIR = path.join(__dirname, '..', 'docs');
|
|
20
|
+
const DRY_RUN = process.argv.includes('--dry');
|
|
21
|
+
|
|
22
|
+
// Directories to sync (exclude VitePress internals)
|
|
23
|
+
const SYNC_DIRS = [
|
|
24
|
+
'getting-started',
|
|
25
|
+
'user-guide',
|
|
26
|
+
'developer-guide',
|
|
27
|
+
'commands',
|
|
28
|
+
'agents',
|
|
29
|
+
'reference'
|
|
30
|
+
];
|
|
31
|
+
|
|
32
|
+
// Files to sync from root
|
|
33
|
+
const SYNC_FILES = [
|
|
34
|
+
'index.md',
|
|
35
|
+
'changelog.md'
|
|
36
|
+
];
|
|
37
|
+
|
|
38
|
+
async function main() {
|
|
39
|
+
console.log('๐ Documentation Sync');
|
|
40
|
+
console.log(` Source: ${SOURCE_DIR}`);
|
|
41
|
+
console.log(` Target: ${TARGET_DIR}`);
|
|
42
|
+
console.log(` Mode: ${DRY_RUN ? 'DRY RUN' : 'LIVE'}`);
|
|
43
|
+
console.log('');
|
|
44
|
+
|
|
45
|
+
// Verify source exists
|
|
46
|
+
if (!fs.existsSync(SOURCE_DIR)) {
|
|
47
|
+
console.error('โ Source directory not found:', SOURCE_DIR);
|
|
48
|
+
process.exit(1);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
let filesCopied = 0;
|
|
52
|
+
let dirsCreated = 0;
|
|
53
|
+
|
|
54
|
+
// Sync directories
|
|
55
|
+
for (const dir of SYNC_DIRS) {
|
|
56
|
+
const srcDir = path.join(SOURCE_DIR, dir);
|
|
57
|
+
const dstDir = path.join(TARGET_DIR, dir);
|
|
58
|
+
|
|
59
|
+
if (!fs.existsSync(srcDir)) {
|
|
60
|
+
console.log(` โ ๏ธ Skipping ${dir}/ (not found in source)`);
|
|
61
|
+
continue;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// Find all markdown files in directory
|
|
65
|
+
const files = glob.sync('**/*.md', { cwd: srcDir });
|
|
66
|
+
|
|
67
|
+
for (const file of files) {
|
|
68
|
+
const srcFile = path.join(srcDir, file);
|
|
69
|
+
const dstFile = path.join(dstDir, file);
|
|
70
|
+
const dstSubDir = path.dirname(dstFile);
|
|
71
|
+
|
|
72
|
+
// Ensure directory exists
|
|
73
|
+
if (!DRY_RUN && !fs.existsSync(dstSubDir)) {
|
|
74
|
+
fs.mkdirpSync(dstSubDir);
|
|
75
|
+
dirsCreated++;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
// Copy file
|
|
79
|
+
if (DRY_RUN) {
|
|
80
|
+
console.log(` โ ${dir}/${file}`);
|
|
81
|
+
} else {
|
|
82
|
+
fs.copySync(srcFile, dstFile);
|
|
83
|
+
}
|
|
84
|
+
filesCopied++;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// Sync root files
|
|
89
|
+
for (const file of SYNC_FILES) {
|
|
90
|
+
const srcFile = path.join(SOURCE_DIR, file);
|
|
91
|
+
const dstFile = path.join(TARGET_DIR, file);
|
|
92
|
+
|
|
93
|
+
if (!fs.existsSync(srcFile)) {
|
|
94
|
+
continue;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
if (DRY_RUN) {
|
|
98
|
+
console.log(` โ ${file}`);
|
|
99
|
+
} else {
|
|
100
|
+
fs.copySync(srcFile, dstFile);
|
|
101
|
+
}
|
|
102
|
+
filesCopied++;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
console.log('');
|
|
106
|
+
if (DRY_RUN) {
|
|
107
|
+
console.log(`โ
Would sync ${filesCopied} files`);
|
|
108
|
+
} else {
|
|
109
|
+
console.log(`โ
Synced ${filesCopied} files (${dirsCreated} directories created)`);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
main().catch((err) => {
|
|
114
|
+
console.error('โ Sync failed:', err.message);
|
|
115
|
+
process.exit(1);
|
|
116
|
+
});
|