claude-autopm 1.13.2 → 1.13.3
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 +80 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -199,6 +199,42 @@ autopm config switch github
|
|
|
199
199
|
autopm config validate
|
|
200
200
|
```
|
|
201
201
|
|
|
202
|
+
#### 4.6 Verify Installation & Configuration
|
|
203
|
+
|
|
204
|
+
After installation, verify that everything is properly configured:
|
|
205
|
+
|
|
206
|
+
```bash
|
|
207
|
+
# Comprehensive configuration check
|
|
208
|
+
autopm validate
|
|
209
|
+
|
|
210
|
+
# Shows:
|
|
211
|
+
# ✅ Essential Components (.claude directory, config, provider, git)
|
|
212
|
+
# ✅ Optional Components (MCP servers, git hooks, Node.js version)
|
|
213
|
+
# 📋 Next steps for incomplete setup
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
**Example Output:**
|
|
217
|
+
```
|
|
218
|
+
╔════════════════════════════════════════════════════════════════╗
|
|
219
|
+
║ 🔍 ClaudeAutoPM Configuration Status ║
|
|
220
|
+
╚════════════════════════════════════════════════════════════════╝
|
|
221
|
+
|
|
222
|
+
Essential Components:
|
|
223
|
+
✅ .claude directory - Framework installed
|
|
224
|
+
✅ Configuration file - Provider: github
|
|
225
|
+
✅ Provider setup - GitHub (configured)
|
|
226
|
+
✅ Git repository - Initialized
|
|
227
|
+
|
|
228
|
+
Optional Components:
|
|
229
|
+
✅ MCP servers - 2 active (context7-docs, github-mcp)
|
|
230
|
+
⚠️ Git hooks - Not installed (run: bash scripts/setup-hooks.sh)
|
|
231
|
+
✅ Node.js version - v20.10.0 (compatible)
|
|
232
|
+
|
|
233
|
+
Next Steps:
|
|
234
|
+
1. Install git hooks: bash scripts/setup-hooks.sh
|
|
235
|
+
2. Run MCP configuration check: autopm mcp check
|
|
236
|
+
```
|
|
237
|
+
|
|
202
238
|
#### 4. Ship Your First Feature (90 seconds)
|
|
203
239
|
|
|
204
240
|
##### Option A: Using Templates (Works Everywhere)
|
|
@@ -353,8 +389,9 @@ autopm mcp tree # Dependency tree
|
|
|
353
389
|
|
|
354
390
|
#### **Configuration & Diagnostics**
|
|
355
391
|
```bash
|
|
392
|
+
autopm mcp check # Quick configuration check
|
|
356
393
|
autopm mcp setup # Interactive API key setup
|
|
357
|
-
autopm mcp diagnose # Run diagnostics
|
|
394
|
+
autopm mcp diagnose # Run full diagnostics
|
|
358
395
|
autopm mcp test <server> # Test server connection
|
|
359
396
|
autopm mcp status # Show servers status
|
|
360
397
|
```
|
|
@@ -461,6 +498,48 @@ autopm pm:prd-parse user-authentication --overwrite
|
|
|
461
498
|
autopm pm:epic-close user-auth "All authentication features complete"
|
|
462
499
|
```
|
|
463
500
|
|
|
501
|
+
##### **Splitting Large PRDs into Multiple Epics**
|
|
502
|
+
|
|
503
|
+
For complex features, you can split a single PRD into multiple focused epics:
|
|
504
|
+
|
|
505
|
+
```bash
|
|
506
|
+
# 1. Create a comprehensive PRD
|
|
507
|
+
autopm pm:prd-new payment-system --template
|
|
508
|
+
|
|
509
|
+
# 2. Split into focused epics using AI analysis
|
|
510
|
+
/pm:prd-split payment-system
|
|
511
|
+
|
|
512
|
+
# This creates multiple epics from one PRD:
|
|
513
|
+
# ├─ payment-system-backend (API, database, payment gateway integration)
|
|
514
|
+
# ├─ payment-system-frontend (UI components, checkout flow)
|
|
515
|
+
# └─ payment-system-security (PCI compliance, encryption, audit logging)
|
|
516
|
+
|
|
517
|
+
# 3. Work on each epic independently
|
|
518
|
+
/pm:epic-decompose payment-system-backend
|
|
519
|
+
/pm:epic-sync payment-system-backend
|
|
520
|
+
|
|
521
|
+
# 4. Track overall PRD progress
|
|
522
|
+
autopm pm:prd-status payment-system
|
|
523
|
+
# Shows:
|
|
524
|
+
# Epic: payment-system-backend [████████░░] 80% (8/10 tasks)
|
|
525
|
+
# Epic: payment-system-frontend [████░░░░░░] 40% (4/10 tasks)
|
|
526
|
+
# Epic: payment-system-security [░░░░░░░░░░] 0% (0/8 tasks)
|
|
527
|
+
# Overall: 44% complete (12/28 tasks)
|
|
528
|
+
```
|
|
529
|
+
|
|
530
|
+
**When to split PRDs:**
|
|
531
|
+
- ✅ Feature requires multiple specialized teams (frontend, backend, DevOps)
|
|
532
|
+
- ✅ Different components have separate deployment timelines
|
|
533
|
+
- ✅ Epic would exceed 15-20 tasks (becomes hard to manage)
|
|
534
|
+
- ✅ Clear architectural boundaries exist (UI, API, infrastructure)
|
|
535
|
+
|
|
536
|
+
**Best practices:**
|
|
537
|
+
- 📝 Keep original PRD as the source of truth
|
|
538
|
+
- 🏷️ Use consistent naming: `<prd-name>-<component>`
|
|
539
|
+
- 🔗 Link epics back to parent PRD in description
|
|
540
|
+
- 📊 Track overall progress across all child epics
|
|
541
|
+
- 🎯 Each epic should be independently deployable when possible
|
|
542
|
+
|
|
464
543
|
#### **Issue Lifecycle**
|
|
465
544
|
```bash
|
|
466
545
|
# Start working on an issue
|