claude-autopm 3.3.1 → 3.4.1

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.
Files changed (23) hide show
  1. package/install/install.js +32 -35
  2. package/package.json +1 -1
  3. package/packages/plugin-pm/commands/pm:prd-show.md +74 -0
  4. package/packages/plugin-pm/plugin.json +12 -31
  5. package/packages/plugin-pm-github/plugin.json +80 -0
  6. /package/packages/{plugin-pm → plugin-pm-github}/commands/github/github:workflow-create.md +0 -0
  7. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-close.md +0 -0
  8. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-merge.md +0 -0
  9. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-refresh.md +0 -0
  10. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-start.md +0 -0
  11. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-sync-modular.md +0 -0
  12. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-sync-original.md +0 -0
  13. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-sync.md +0 -0
  14. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:import.md +0 -0
  15. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-analyze.md +0 -0
  16. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-close.md +0 -0
  17. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-edit.md +0 -0
  18. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-reopen.md +0 -0
  19. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-show.md +0 -0
  20. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-start.md +0 -0
  21. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-status.md +0 -0
  22. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-sync.md +0 -0
  23. /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:sync.md +0 -0
@@ -453,44 +453,41 @@ ${this.colors.YELLOW}Note:${this.colors.NC} Some installation options require ad
453
453
  ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
454
454
  `);
455
455
 
456
- // Option 0: Lite PM (always available) - minimal PM setup
457
- console.log(`${this.colors.CYAN}0. Lite${this.colors.NC} - Minimal PM setup
458
- • Core + PM essentials (~50 commands)
459
- • Lowest context footprint for PM work
460
- • Best for: Simple PM tasks, learning
461
- • GitHub integration (no Azure DevOps)
456
+ // Option 0: Lite PM (always available) - local only, no provider sync
457
+ console.log(`${this.colors.CYAN}0. Lite${this.colors.NC} - Local PM only (no provider sync)
458
+ • Core + PM essentials (~32 commands)
459
+ • Lowest context footprint
460
+ • Best for: Local-first PM, learning
461
+ No GitHub or Azure sync
462
462
  ${this.colors.DIM}• Plugins: core, pm (2 plugins)${this.colors.NC}
463
463
  `);
464
464
 
465
- // Option 1: Standard PM (always available)
466
- console.log(`${this.colors.CYAN}1. Standard${this.colors.NC} - Standard PM with language support
467
- • Core + languages + PM (~55 commands)
468
- Sequential agent execution
469
- • Best for: Most projects
470
- GitHub integration (no Azure DevOps)
471
- ${this.colors.DIM}• Plugins: core, languages, pm (3 plugins)${this.colors.NC}
465
+ // Option 1: GitHub (always available)
466
+ console.log(`${this.colors.GREEN}1. GitHub${this.colors.NC} - PM with GitHub integration
467
+ • Core + languages + PM + GitHub sync (~50 commands)
468
+ Issues, PRs, and workflow sync
469
+ • Best for: GitHub-based projects
470
+ ${this.colors.DIM}Plugins: core, languages, pm, pm-github (4 plugins)${this.colors.NC}
472
471
  `);
473
472
 
474
- // Option 2: PM + Azure (always available)
475
- console.log(`${this.colors.CYAN}2. Azure${this.colors.NC} - Full PM with Azure DevOps
476
- • Core + languages + PM + Azure (~95 commands)
477
- Sequential agent execution
473
+ // Option 2: Azure (always available)
474
+ console.log(`${this.colors.CYAN}2. Azure${this.colors.NC} - PM with Azure DevOps integration
475
+ • Core + languages + PM + Azure sync (~70 commands)
476
+ Work items, sprints, and feature sync
478
477
  • Best for: Azure DevOps projects
479
- • Full GitHub + Azure DevOps integration
480
478
  ${this.colors.DIM}• Plugins: core, languages, pm, pm-azure (4 plugins)${this.colors.NC}
481
479
  `);
482
480
 
483
481
  // Option 3: Docker-only (requires Docker)
484
482
  if (availableTools.docker) {
485
- console.log(`${this.colors.CYAN}3. Docker-only${this.colors.NC} - Containerized local development
483
+ console.log(`${this.colors.CYAN}3. Docker${this.colors.NC} - Containerized development (GitHub + Azure)
486
484
  • Adaptive execution (smart sequential/parallel choice)
487
485
  • Docker containers for development environment
488
- Best for: Microservices, consistent environments
489
- Full PM + Azure DevOps integration
490
- ${this.colors.DIM}• Plugins: core, languages, frameworks, testing, devops, pm, pm-azure (7 plugins)${this.colors.NC}
486
+ Both GitHub and Azure DevOps integration
487
+ ${this.colors.DIM}Plugins: core, languages, frameworks, testing, devops, pm, pm-github, pm-azure (8 plugins)${this.colors.NC}
491
488
  `);
492
489
  } else {
493
- console.log(`${this.colors.DIM}3. Docker-only${this.colors.NC} ${this.colors.RED}(Docker not installed)${this.colors.NC}
490
+ console.log(`${this.colors.DIM}3. Docker${this.colors.NC} ${this.colors.RED}(Docker not installed)${this.colors.NC}
494
491
  `);
495
492
  }
496
493
 
@@ -498,10 +495,10 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
498
495
  if (availableTools.docker && availableTools.kubectl) {
499
496
  console.log(`${this.colors.GREEN}4. Full DevOps${this.colors.NC} - Complete CI/CD pipeline ${this.colors.BOLD}(RECOMMENDED)${this.colors.NC}
500
497
  • Adaptive execution with Docker-first priority
501
- • Kubernetes manifests and cloud deployment ready
502
- • GitHub Actions with KIND clusters and Kaniko builds
498
+ • Kubernetes + cloud deployment ready
499
+ Both GitHub and Azure DevOps integration
503
500
  • Best for: Production applications, enterprise projects
504
- ${this.colors.DIM}• Plugins: core, languages, frameworks, testing, devops, cloud, databases, pm, pm-azure, ai (10 plugins)${this.colors.NC}
501
+ ${this.colors.DIM}• Plugins: core, languages, frameworks, testing, devops, cloud, databases, pm, pm-github, pm-azure, ai (11 plugins)${this.colors.NC}
505
502
  `);
506
503
  } else if (availableTools.docker) {
507
504
  console.log(`${this.colors.DIM}4. Full DevOps${this.colors.NC} ${this.colors.RED}(kubectl not installed)${this.colors.NC}
@@ -516,9 +513,9 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
516
513
  console.log(`${this.colors.YELLOW}5. Performance${this.colors.NC} - Maximum parallel execution
517
514
  • Hybrid strategy: up to 5 parallel agents
518
515
  • Advanced context isolation and security
519
- Full DevOps capabilities with speed optimization
520
- • Best for: Large projects, massive refactoring, power users
521
- ${this.colors.DIM}• Plugins: ALL (12 plugins including pm-azure, data, ml)${this.colors.NC}
516
+ Both GitHub and Azure DevOps integration
517
+ • Best for: Large projects, power users
518
+ ${this.colors.DIM}• Plugins: ALL (13 plugins including pm-github, pm-azure, data, ml)${this.colors.NC}
522
519
  `);
523
520
  } else if (availableTools.docker) {
524
521
  console.log(`${this.colors.DIM}5. Performance${this.colors.NC} ${this.colors.RED}(kubectl not installed)${this.colors.NC}
@@ -554,7 +551,7 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
554
551
  const choice = answer.trim() || defaultChoice;
555
552
  const scenarios = {
556
553
  '0': 'lite',
557
- '1': 'standard',
554
+ '1': 'github',
558
555
  '2': 'azure',
559
556
  '3': 'docker',
560
557
  '4': 'full',
@@ -622,7 +619,7 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
622
619
  },
623
620
  plugins: ['plugin-core', 'plugin-pm']
624
621
  },
625
- standard: {
622
+ github: {
626
623
  version: version,
627
624
  installed: new Date().toISOString(),
628
625
  execution_strategy: 'sequential',
@@ -630,7 +627,7 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
630
627
  docker: { enabled: false },
631
628
  kubernetes: { enabled: false }
632
629
  },
633
- plugins: ['plugin-core', 'plugin-languages', 'plugin-pm']
630
+ plugins: ['plugin-core', 'plugin-languages', 'plugin-pm', 'plugin-pm-github']
634
631
  },
635
632
  azure: {
636
633
  version: version,
@@ -650,7 +647,7 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
650
647
  docker: { enabled: true, first: false },
651
648
  kubernetes: { enabled: false }
652
649
  },
653
- plugins: ['plugin-core', 'plugin-languages', 'plugin-frameworks', 'plugin-testing', 'plugin-devops', 'plugin-pm', 'plugin-pm-azure']
650
+ plugins: ['plugin-core', 'plugin-languages', 'plugin-frameworks', 'plugin-testing', 'plugin-devops', 'plugin-pm', 'plugin-pm-github', 'plugin-pm-azure']
654
651
  },
655
652
  full: {
656
653
  version: version,
@@ -660,7 +657,7 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
660
657
  docker: { enabled: true, first: true },
661
658
  kubernetes: { enabled: true }
662
659
  },
663
- plugins: ['plugin-core', 'plugin-languages', 'plugin-frameworks', 'plugin-testing', 'plugin-devops', 'plugin-cloud', 'plugin-databases', 'plugin-pm', 'plugin-pm-azure', 'plugin-ai']
660
+ plugins: ['plugin-core', 'plugin-languages', 'plugin-frameworks', 'plugin-testing', 'plugin-devops', 'plugin-cloud', 'plugin-databases', 'plugin-pm', 'plugin-pm-github', 'plugin-pm-azure', 'plugin-ai']
664
661
  },
665
662
  performance: {
666
663
  version: version,
@@ -671,7 +668,7 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
671
668
  docker: { enabled: true, first: false },
672
669
  kubernetes: { enabled: true }
673
670
  },
674
- plugins: ['plugin-core', 'plugin-languages', 'plugin-frameworks', 'plugin-testing', 'plugin-devops', 'plugin-cloud', 'plugin-databases', 'plugin-data', 'plugin-pm', 'plugin-pm-azure', 'plugin-ai', 'plugin-ml']
671
+ plugins: ['plugin-core', 'plugin-languages', 'plugin-frameworks', 'plugin-testing', 'plugin-devops', 'plugin-cloud', 'plugin-databases', 'plugin-data', 'plugin-pm', 'plugin-pm-github', 'plugin-pm-azure', 'plugin-ai', 'plugin-ml']
675
672
  }
676
673
  };
677
674
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-autopm",
3
- "version": "3.3.1",
3
+ "version": "3.4.1",
4
4
  "description": "Autonomous Project Management Framework for Claude Code - Advanced AI-powered development automation",
5
5
  "main": "bin/autopm.js",
6
6
  "workspaces": [
@@ -0,0 +1,74 @@
1
+ ---
2
+ allowed-tools: Read, Bash, Glob
3
+ ---
4
+
5
+ # /pm:prd-show - Display PRD Content
6
+
7
+ Display the full content of a Product Requirements Document (PRD).
8
+
9
+ ## Usage
10
+
11
+ ```
12
+ /pm:prd-show <feature_name>
13
+ ```
14
+
15
+ ## Arguments
16
+
17
+ - `<feature_name>` - Name of the PRD to display (without .md extension)
18
+
19
+ ## Instructions
20
+
21
+ 1. **Locate the PRD file:**
22
+ ```bash
23
+ ls .claude/prds/{feature_name}.md 2>/dev/null || ls .pm/prds/{feature_name}.md 2>/dev/null
24
+ ```
25
+
26
+ 2. **If not found by exact name, search:**
27
+ ```bash
28
+ find .claude/prds .pm/prds -name "*{feature_name}*.md" 2>/dev/null | head -1
29
+ ```
30
+
31
+ 3. **Read and display the PRD:**
32
+ - Use the Read tool to display the full PRD content
33
+ - Show the complete file including frontmatter
34
+ - DO NOT truncate or abbreviate
35
+
36
+ ## Output Format
37
+
38
+ ```
39
+ PRD: {feature_name}
40
+ File: {file_path}
41
+ ─────────────────────────────────────
42
+
43
+ {full PRD content}
44
+
45
+ ─────────────────────────────────────
46
+ 📋 Next steps:
47
+ • Edit: /pm:prd-edit {feature_name}
48
+ • Parse: /pm:prd-parse {feature_name}
49
+ • Status: /pm:prd-status
50
+ ```
51
+
52
+ ## Error Handling
53
+
54
+ If PRD not found:
55
+ ```
56
+ ❌ PRD not found: {feature_name}
57
+
58
+ Available PRDs:
59
+ {list of .md files in .claude/prds/ or .pm/prds/}
60
+
61
+ Create new: /pm:prd-new {feature_name}
62
+ ```
63
+
64
+ ## Required Documentation Access
65
+
66
+ **MANDATORY:** Before displaying PRD, query Context7 for best practices:
67
+
68
+ **Documentation Queries:**
69
+ - `mcp://context7/agile/product-requirements` - PRD best practices
70
+ - `mcp://context7/project-management/documentation` - documentation standards
71
+
72
+ **Why This is Required:**
73
+ - Ensures PRD format follows industry standards
74
+ - Validates PRD completeness against best practices
@@ -2,8 +2,8 @@
2
2
  "name": "@claudeautopm/plugin-pm",
3
3
  "version": "2.1.0",
4
4
  "schemaVersion": "2.0",
5
- "displayName": "Project Management",
6
- "description": "Complete project management plugin with PM workflows, epic management, issue tracking, and release automation",
5
+ "displayName": "Project Management Core",
6
+ "description": "Core PM plugin with provider-agnostic workflows, epic management, PRD handling, and local PM operations",
7
7
  "category": "project-management",
8
8
  "metadata": {
9
9
  "category": "Project Management",
@@ -811,52 +811,37 @@
811
811
  "commands": [
812
812
  {
813
813
  "subdirectory": "commands/",
814
- "description": "PM workflow commands (46 total)",
814
+ "description": "Core PM workflow commands (29 total)",
815
815
  "type": "collection",
816
816
  "categories": {
817
- "pm": "Core PM commands (45)",
818
- "github": "GitHub workflow commands (1)"
817
+ "pm": "Provider-agnostic PM commands (29)"
819
818
  },
820
819
  "discovery": "auto",
821
- "exclude": ["azure"],
822
820
  "tags": [
823
821
  "pm",
824
822
  "workflows",
825
823
  "epic",
826
- "task",
827
- "issue",
828
- "github"
824
+ "prd",
825
+ "local"
829
826
  ]
830
827
  }
831
828
  ],
832
829
  "features": {
833
830
  "epic_management": {
834
831
  "enabled": true,
835
- "description": "Complete epic lifecycle management"
836
- },
837
- "issue_tracking": {
838
- "enabled": true,
839
- "description": "GitHub issue integration and tracking"
840
- },
841
- "github_sync": {
842
- "enabled": true,
843
- "description": "Bidirectional GitHub synchronization"
832
+ "description": "Local epic lifecycle management"
844
833
  },
845
834
  "prd_management": {
846
835
  "enabled": true,
847
836
  "description": "Product Requirements Document workflows"
848
837
  },
849
- "release_automation": {
850
- "enabled": true,
851
- "description": "Automated release and publishing"
852
- },
853
- "analytics": {
854
- "enabled": true,
855
- "description": "Project metrics and analytics"
856
- },
857
838
  "context_management": {
858
839
  "enabled": true,
859
840
  "description": "Work context tracking and management"
841
+ },
842
+ "local_workflows": {
843
+ "enabled": true,
844
+ "description": "Provider-agnostic PM workflows"
860
845
  }
861
846
  },
862
847
  "dependencies": [],
@@ -868,13 +853,9 @@
868
853
  "project-management",
869
854
  "agile",
870
855
  "epics",
871
- "issues",
872
- "github",
873
856
  "workflows",
874
- "automation",
875
- "release",
876
857
  "prd",
877
- "analytics"
858
+ "local"
878
859
  ],
879
860
  "compatibleWith": ">=3.0.0"
880
861
  }
@@ -0,0 +1,80 @@
1
+ {
2
+ "name": "@claudeautopm/plugin-pm-github",
3
+ "version": "1.0.0",
4
+ "schemaVersion": "2.0",
5
+ "displayName": "GitHub Integration",
6
+ "description": "GitHub integration plugin with issues, PRs, sync, and workflow automation",
7
+ "category": "project-management",
8
+ "metadata": {
9
+ "category": "Project Management",
10
+ "author": "ClaudeAutoPM Team",
11
+ "license": "MIT",
12
+ "homepage": "https://github.com/rafeekpro/ClaudeAutoPM",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/rafeekpro/ClaudeAutoPM.git",
16
+ "directory": "packages/plugin-pm-github"
17
+ },
18
+ "size": "~15 KB (gzipped)",
19
+ "required": false,
20
+ "tags": [
21
+ "github",
22
+ "issues",
23
+ "pull-requests",
24
+ "sync",
25
+ "integration"
26
+ ]
27
+ },
28
+ "commands": [
29
+ {
30
+ "subdirectory": "commands/",
31
+ "description": "GitHub integration commands (18 total)",
32
+ "type": "collection",
33
+ "categories": {
34
+ "pm": "GitHub issue and epic sync commands (17)",
35
+ "github": "GitHub workflow commands (1)"
36
+ },
37
+ "discovery": "auto",
38
+ "tags": [
39
+ "github",
40
+ "issues",
41
+ "sync",
42
+ "epic",
43
+ "pull-requests"
44
+ ]
45
+ }
46
+ ],
47
+ "features": {
48
+ "github_issues": {
49
+ "enabled": true,
50
+ "description": "GitHub issue management and tracking"
51
+ },
52
+ "github_sync": {
53
+ "enabled": true,
54
+ "description": "Bidirectional GitHub synchronization"
55
+ },
56
+ "github_workflows": {
57
+ "enabled": true,
58
+ "description": "GitHub Actions workflow creation"
59
+ },
60
+ "epic_github_integration": {
61
+ "enabled": true,
62
+ "description": "Epic sync with GitHub issues"
63
+ }
64
+ },
65
+ "dependencies": [],
66
+ "peerPlugins": [
67
+ "@claudeautopm/plugin-core",
68
+ "@claudeautopm/plugin-pm"
69
+ ],
70
+ "keywords": [
71
+ "claudeautopm",
72
+ "github",
73
+ "issues",
74
+ "pull-requests",
75
+ "sync",
76
+ "workflows",
77
+ "integration"
78
+ ],
79
+ "compatibleWith": ">=3.0.0"
80
+ }