claude-autopm 3.3.0 → 3.4.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/install/install.js +44 -47
- package/package.json +1 -1
- package/packages/plugin-pm/plugin.json +12 -31
- package/packages/plugin-pm-github/plugin.json +80 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/github/github:workflow-create.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-close.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-merge.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-refresh.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-start.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-sync-modular.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-sync-original.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:epic-sync.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:import.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-analyze.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-close.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-edit.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-reopen.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-show.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-start.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-status.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:issue-sync.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-github}/commands/pm:sync.md +0 -0
package/install/install.js
CHANGED
|
@@ -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:
|
|
457
|
-
console.log(`${this.colors.CYAN}0.
|
|
458
|
-
•
|
|
459
|
-
• Lowest context footprint
|
|
460
|
-
• Best for:
|
|
461
|
-
• No
|
|
462
|
-
${this.colors.DIM}• Plugins: core
|
|
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
|
+
${this.colors.DIM}• Plugins: core, pm (2 plugins)${this.colors.NC}
|
|
463
463
|
`);
|
|
464
464
|
|
|
465
|
-
// Option 1:
|
|
466
|
-
console.log(`${this.colors.
|
|
467
|
-
• Core +
|
|
468
|
-
•
|
|
469
|
-
• Best for:
|
|
470
|
-
•
|
|
471
|
-
${this.colors.DIM}• Plugins: core, languages (2 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:
|
|
475
|
-
console.log(`${this.colors.CYAN}2.
|
|
476
|
-
• Core + languages + PM
|
|
477
|
-
•
|
|
478
|
-
• Best for:
|
|
479
|
-
•
|
|
480
|
-
${this.colors.DIM}• Plugins: core, languages, pm (3 plugins)${this.colors.NC}
|
|
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
|
|
477
|
+
• Best for: Azure DevOps projects
|
|
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
|
|
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
|
-
•
|
|
489
|
-
•
|
|
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
|
|
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
|
|
502
|
-
• GitHub
|
|
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 (
|
|
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
|
-
•
|
|
520
|
-
• Best for: Large projects,
|
|
521
|
-
${this.colors.DIM}• Plugins: ALL (
|
|
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}
|
|
@@ -536,8 +533,8 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
|
|
|
536
533
|
`);
|
|
537
534
|
|
|
538
535
|
if (process.env.AUTOPM_TEST_MODE === '1') {
|
|
539
|
-
this.printMsg('CYAN', 'Auto-selecting option 0 (
|
|
540
|
-
return '
|
|
536
|
+
this.printMsg('CYAN', 'Auto-selecting option 0 (lite) for test mode');
|
|
537
|
+
return 'lite';
|
|
541
538
|
}
|
|
542
539
|
|
|
543
540
|
const rl = readline.createInterface({
|
|
@@ -546,16 +543,16 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
|
|
|
546
543
|
});
|
|
547
544
|
|
|
548
545
|
// Determine default based on available tools
|
|
549
|
-
const defaultChoice = availableTools.docker && availableTools.kubectl ? '4' : '
|
|
546
|
+
const defaultChoice = availableTools.docker && availableTools.kubectl ? '4' : '1';
|
|
550
547
|
|
|
551
548
|
return new Promise((resolve) => {
|
|
552
549
|
const askQuestion = () => {
|
|
553
550
|
rl.question(`${this.colors.CYAN}Enter your choice (0-6) [${defaultChoice}]: ${this.colors.NC}`, (answer) => {
|
|
554
551
|
const choice = answer.trim() || defaultChoice;
|
|
555
552
|
const scenarios = {
|
|
556
|
-
'0': '
|
|
557
|
-
'1': '
|
|
558
|
-
'2': '
|
|
553
|
+
'0': 'lite',
|
|
554
|
+
'1': 'github',
|
|
555
|
+
'2': 'azure',
|
|
559
556
|
'3': 'docker',
|
|
560
557
|
'4': 'full',
|
|
561
558
|
'5': 'performance',
|
|
@@ -612,7 +609,7 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
|
|
|
612
609
|
}
|
|
613
610
|
|
|
614
611
|
const configs = {
|
|
615
|
-
|
|
612
|
+
lite: {
|
|
616
613
|
version: version,
|
|
617
614
|
installed: new Date().toISOString(),
|
|
618
615
|
execution_strategy: 'sequential',
|
|
@@ -620,9 +617,9 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
|
|
|
620
617
|
docker: { enabled: false },
|
|
621
618
|
kubernetes: { enabled: false }
|
|
622
619
|
},
|
|
623
|
-
plugins: ['plugin-core']
|
|
620
|
+
plugins: ['plugin-core', 'plugin-pm']
|
|
624
621
|
},
|
|
625
|
-
|
|
622
|
+
github: {
|
|
626
623
|
version: version,
|
|
627
624
|
installed: new Date().toISOString(),
|
|
628
625
|
execution_strategy: 'sequential',
|
|
@@ -630,9 +627,9 @@ ${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']
|
|
630
|
+
plugins: ['plugin-core', 'plugin-languages', 'plugin-pm', 'plugin-pm-github']
|
|
634
631
|
},
|
|
635
|
-
|
|
632
|
+
azure: {
|
|
636
633
|
version: version,
|
|
637
634
|
installed: new Date().toISOString(),
|
|
638
635
|
execution_strategy: 'sequential',
|
|
@@ -640,7 +637,7 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
|
|
|
640
637
|
docker: { enabled: false },
|
|
641
638
|
kubernetes: { enabled: false }
|
|
642
639
|
},
|
|
643
|
-
plugins: ['plugin-core', 'plugin-languages', 'plugin-pm']
|
|
640
|
+
plugins: ['plugin-core', 'plugin-languages', 'plugin-pm', 'plugin-pm-azure']
|
|
644
641
|
},
|
|
645
642
|
docker: {
|
|
646
643
|
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
|
@@ -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": "
|
|
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 (
|
|
814
|
+
"description": "Core PM workflow commands (28 total)",
|
|
815
815
|
"type": "collection",
|
|
816
816
|
"categories": {
|
|
817
|
-
"pm": "
|
|
818
|
-
"github": "GitHub workflow commands (1)"
|
|
817
|
+
"pm": "Provider-agnostic PM commands (28)"
|
|
819
818
|
},
|
|
820
819
|
"discovery": "auto",
|
|
821
|
-
"exclude": ["azure"],
|
|
822
820
|
"tags": [
|
|
823
821
|
"pm",
|
|
824
822
|
"workflows",
|
|
825
823
|
"epic",
|
|
826
|
-
"
|
|
827
|
-
"
|
|
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": "
|
|
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
|
-
"
|
|
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
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|