claude-autopm 3.2.4 → 3.3.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 +81 -38
- package/package.json +1 -1
- package/packages/plugin-pm/plugin.json +2 -3
- package/packages/plugin-pm-azure/plugin.json +81 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:COMMANDS.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:COMMAND_MAPPING.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:INTEGRATION_FIX.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:README.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:active-work.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:aliases.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:blocked-items.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:clean.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:docs-query.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:feature-decompose.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:feature-list.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:feature-new.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:feature-show.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:feature-start.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:fix-integration-example.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:help.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:import-us.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:init.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:next-task.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:search.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:sprint-status.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:standup.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:sync-all.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-analyze.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-close.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-edit.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-list.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-new.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-reopen.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-show.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-start.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-status.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-sync.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:us-edit.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:us-list.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:us-new.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:us-parse.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:us-show.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:us-status.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:validate.md +0 -0
- /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:work-item-sync.md +0 -0
package/install/install.js
CHANGED
|
@@ -453,73 +453,91 @@ ${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: Micro (always available) - NEW ultra-light option
|
|
457
|
+
console.log(`${this.colors.CYAN}0. Micro${this.colors.NC} - Ultra-light, minimal context usage
|
|
458
|
+
• Only essential core agents (4 agents, 5 commands)
|
|
459
|
+
• Lowest context footprint (~2k tokens)
|
|
460
|
+
• Best for: Context-sensitive work, simple tasks
|
|
461
|
+
• No PM workflows, no language specialists
|
|
462
|
+
${this.colors.DIM}• Plugins: core only (1 plugin)${this.colors.NC}
|
|
463
|
+
`);
|
|
464
|
+
|
|
456
465
|
// Option 1: Minimal (always available)
|
|
457
|
-
console.log(`${this.colors.CYAN}1. Minimal${this.colors.NC} -
|
|
466
|
+
console.log(`${this.colors.CYAN}1. Minimal${this.colors.NC} - Basic development workflow
|
|
467
|
+
• Core + language specialists (9 agents, 10 commands)
|
|
458
468
|
• Sequential agent execution (one at a time)
|
|
459
|
-
• Native tooling: npm, pip, local installs
|
|
460
469
|
• Best for: Simple projects, learning, debugging
|
|
461
|
-
• No
|
|
470
|
+
• No PM workflows or containers
|
|
471
|
+
${this.colors.DIM}• Plugins: core, languages (2 plugins)${this.colors.NC}
|
|
472
|
+
`);
|
|
473
|
+
|
|
474
|
+
// Option 2: Standard (always available) - includes PM without Azure
|
|
475
|
+
console.log(`${this.colors.CYAN}2. Standard${this.colors.NC} - Development with project management
|
|
476
|
+
• Core + languages + PM workflows (~55 commands)
|
|
477
|
+
• Sequential agent execution
|
|
478
|
+
• Best for: Projects needing epic/issue tracking
|
|
479
|
+
• GitHub integration (no Azure DevOps)
|
|
462
480
|
${this.colors.DIM}• Plugins: core, languages, pm (3 plugins)${this.colors.NC}
|
|
463
481
|
`);
|
|
464
482
|
|
|
465
|
-
// Option
|
|
483
|
+
// Option 3: Docker-only (requires Docker)
|
|
466
484
|
if (availableTools.docker) {
|
|
467
|
-
console.log(`${this.colors.CYAN}
|
|
485
|
+
console.log(`${this.colors.CYAN}3. Docker-only${this.colors.NC} - Containerized local development
|
|
468
486
|
• Adaptive execution (smart sequential/parallel choice)
|
|
469
487
|
• Docker containers for development environment
|
|
470
488
|
• Best for: Microservices, consistent environments
|
|
471
|
-
•
|
|
472
|
-
${this.colors.DIM}• Plugins: core, languages, frameworks, testing, devops, pm (
|
|
489
|
+
• Full PM + Azure DevOps integration
|
|
490
|
+
${this.colors.DIM}• Plugins: core, languages, frameworks, testing, devops, pm, pm-azure (7 plugins)${this.colors.NC}
|
|
473
491
|
`);
|
|
474
492
|
} else {
|
|
475
|
-
console.log(`${this.colors.DIM}
|
|
493
|
+
console.log(`${this.colors.DIM}3. Docker-only${this.colors.NC} ${this.colors.RED}(Docker not installed)${this.colors.NC}
|
|
476
494
|
`);
|
|
477
495
|
}
|
|
478
496
|
|
|
479
|
-
// Option
|
|
497
|
+
// Option 4: Full DevOps (requires Docker and kubectl)
|
|
480
498
|
if (availableTools.docker && availableTools.kubectl) {
|
|
481
|
-
console.log(`${this.colors.GREEN}
|
|
499
|
+
console.log(`${this.colors.GREEN}4. Full DevOps${this.colors.NC} - Complete CI/CD pipeline ${this.colors.BOLD}(RECOMMENDED)${this.colors.NC}
|
|
482
500
|
• Adaptive execution with Docker-first priority
|
|
483
501
|
• Kubernetes manifests and cloud deployment ready
|
|
484
502
|
• GitHub Actions with KIND clusters and Kaniko builds
|
|
485
503
|
• Best for: Production applications, enterprise projects
|
|
486
|
-
${this.colors.DIM}• Plugins: core, languages, frameworks, testing, devops, cloud, databases, pm, ai (
|
|
504
|
+
${this.colors.DIM}• Plugins: core, languages, frameworks, testing, devops, cloud, databases, pm, pm-azure, ai (10 plugins)${this.colors.NC}
|
|
487
505
|
`);
|
|
488
506
|
} else if (availableTools.docker) {
|
|
489
|
-
console.log(`${this.colors.DIM}
|
|
507
|
+
console.log(`${this.colors.DIM}4. Full DevOps${this.colors.NC} ${this.colors.RED}(kubectl not installed)${this.colors.NC}
|
|
490
508
|
`);
|
|
491
509
|
} else {
|
|
492
|
-
console.log(`${this.colors.DIM}
|
|
510
|
+
console.log(`${this.colors.DIM}4. Full DevOps${this.colors.NC} ${this.colors.RED}(Docker and kubectl not installed)${this.colors.NC}
|
|
493
511
|
`);
|
|
494
512
|
}
|
|
495
513
|
|
|
496
|
-
// Option
|
|
514
|
+
// Option 5: Performance (requires Docker and kubectl)
|
|
497
515
|
if (availableTools.docker && availableTools.kubectl) {
|
|
498
|
-
console.log(`${this.colors.YELLOW}
|
|
516
|
+
console.log(`${this.colors.YELLOW}5. Performance${this.colors.NC} - Maximum parallel execution
|
|
499
517
|
• Hybrid strategy: up to 5 parallel agents
|
|
500
518
|
• Advanced context isolation and security
|
|
501
519
|
• Full DevOps capabilities with speed optimization
|
|
502
520
|
• Best for: Large projects, massive refactoring, power users
|
|
503
|
-
${this.colors.DIM}• Plugins: ALL
|
|
521
|
+
${this.colors.DIM}• Plugins: ALL (12 plugins including pm-azure, data, ml)${this.colors.NC}
|
|
504
522
|
`);
|
|
505
523
|
} else if (availableTools.docker) {
|
|
506
|
-
console.log(`${this.colors.DIM}
|
|
524
|
+
console.log(`${this.colors.DIM}5. Performance${this.colors.NC} ${this.colors.RED}(kubectl not installed)${this.colors.NC}
|
|
507
525
|
`);
|
|
508
526
|
} else {
|
|
509
|
-
console.log(`${this.colors.DIM}
|
|
527
|
+
console.log(`${this.colors.DIM}5. Performance${this.colors.NC} ${this.colors.RED}(Docker and kubectl not installed)${this.colors.NC}
|
|
510
528
|
`);
|
|
511
529
|
}
|
|
512
530
|
|
|
513
|
-
// Option
|
|
514
|
-
console.log(`${this.colors.CYAN}
|
|
531
|
+
// Option 6: Custom (always available)
|
|
532
|
+
console.log(`${this.colors.CYAN}6. Custom${this.colors.NC} - Manual configuration
|
|
515
533
|
• Configure execution strategy manually
|
|
516
534
|
• Choose your own agents and workflows
|
|
517
535
|
• Advanced users only
|
|
518
536
|
`);
|
|
519
537
|
|
|
520
538
|
if (process.env.AUTOPM_TEST_MODE === '1') {
|
|
521
|
-
this.printMsg('CYAN', 'Auto-selecting option
|
|
522
|
-
return '
|
|
539
|
+
this.printMsg('CYAN', 'Auto-selecting option 0 (micro) for test mode');
|
|
540
|
+
return 'micro';
|
|
523
541
|
}
|
|
524
542
|
|
|
525
543
|
const rl = readline.createInterface({
|
|
@@ -528,43 +546,48 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
|
|
|
528
546
|
});
|
|
529
547
|
|
|
530
548
|
// Determine default based on available tools
|
|
531
|
-
const defaultChoice = availableTools.docker && availableTools.kubectl ? '
|
|
549
|
+
const defaultChoice = availableTools.docker && availableTools.kubectl ? '4' : '2';
|
|
532
550
|
|
|
533
551
|
return new Promise((resolve) => {
|
|
534
552
|
const askQuestion = () => {
|
|
535
|
-
rl.question(`${this.colors.CYAN}Enter your choice (
|
|
553
|
+
rl.question(`${this.colors.CYAN}Enter your choice (0-6) [${defaultChoice}]: ${this.colors.NC}`, (answer) => {
|
|
536
554
|
const choice = answer.trim() || defaultChoice;
|
|
537
555
|
const scenarios = {
|
|
556
|
+
'0': 'micro',
|
|
538
557
|
'1': 'minimal',
|
|
539
|
-
'2': '
|
|
540
|
-
'3': '
|
|
541
|
-
'4': '
|
|
542
|
-
'5': '
|
|
558
|
+
'2': 'standard',
|
|
559
|
+
'3': 'docker',
|
|
560
|
+
'4': 'full',
|
|
561
|
+
'5': 'performance',
|
|
562
|
+
'6': 'custom'
|
|
543
563
|
};
|
|
544
564
|
|
|
545
565
|
const selectedScenario = scenarios[choice];
|
|
546
566
|
|
|
547
567
|
// Validate choice based on available tools
|
|
548
|
-
|
|
549
|
-
|
|
568
|
+
// Option 3 (Docker-only) requires Docker
|
|
569
|
+
if (choice === '3' && !availableTools.docker) {
|
|
570
|
+
console.log(`${this.colors.RED}✗ Docker is required for this option. Please install Docker first or choose option 0-2.${this.colors.NC}`);
|
|
550
571
|
askQuestion();
|
|
551
572
|
return;
|
|
552
573
|
}
|
|
553
574
|
|
|
554
|
-
|
|
555
|
-
|
|
575
|
+
// Options 4 (Full) and 5 (Performance) require Docker
|
|
576
|
+
if ((choice === '4' || choice === '5') && !availableTools.docker) {
|
|
577
|
+
console.log(`${this.colors.RED}✗ Docker is required for this option. Please install Docker first or choose option 0-2.${this.colors.NC}`);
|
|
556
578
|
askQuestion();
|
|
557
579
|
return;
|
|
558
580
|
}
|
|
559
581
|
|
|
560
|
-
|
|
561
|
-
|
|
582
|
+
// Options 4 (Full) and 5 (Performance) require kubectl
|
|
583
|
+
if ((choice === '4' || choice === '5') && availableTools.docker && !availableTools.kubectl) {
|
|
584
|
+
console.log(`${this.colors.RED}✗ kubectl is required for this option. Please install kubectl first or choose option 3 (Docker-only).${this.colors.NC}`);
|
|
562
585
|
askQuestion();
|
|
563
586
|
return;
|
|
564
587
|
}
|
|
565
588
|
|
|
566
589
|
if (!selectedScenario) {
|
|
567
|
-
console.log(`${this.colors.RED}✗ Invalid choice. Please select
|
|
590
|
+
console.log(`${this.colors.RED}✗ Invalid choice. Please select 0-6.${this.colors.NC}`);
|
|
568
591
|
askQuestion();
|
|
569
592
|
return;
|
|
570
593
|
}
|
|
@@ -589,7 +612,27 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
|
|
|
589
612
|
}
|
|
590
613
|
|
|
591
614
|
const configs = {
|
|
615
|
+
micro: {
|
|
616
|
+
version: version,
|
|
617
|
+
installed: new Date().toISOString(),
|
|
618
|
+
execution_strategy: 'sequential',
|
|
619
|
+
tools: {
|
|
620
|
+
docker: { enabled: false },
|
|
621
|
+
kubernetes: { enabled: false }
|
|
622
|
+
},
|
|
623
|
+
plugins: ['plugin-core']
|
|
624
|
+
},
|
|
592
625
|
minimal: {
|
|
626
|
+
version: version,
|
|
627
|
+
installed: new Date().toISOString(),
|
|
628
|
+
execution_strategy: 'sequential',
|
|
629
|
+
tools: {
|
|
630
|
+
docker: { enabled: false },
|
|
631
|
+
kubernetes: { enabled: false }
|
|
632
|
+
},
|
|
633
|
+
plugins: ['plugin-core', 'plugin-languages']
|
|
634
|
+
},
|
|
635
|
+
standard: {
|
|
593
636
|
version: version,
|
|
594
637
|
installed: new Date().toISOString(),
|
|
595
638
|
execution_strategy: 'sequential',
|
|
@@ -607,7 +650,7 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
|
|
|
607
650
|
docker: { enabled: true, first: false },
|
|
608
651
|
kubernetes: { enabled: false }
|
|
609
652
|
},
|
|
610
|
-
plugins: ['plugin-core', 'plugin-languages', 'plugin-frameworks', 'plugin-testing', 'plugin-devops', 'plugin-pm']
|
|
653
|
+
plugins: ['plugin-core', 'plugin-languages', 'plugin-frameworks', 'plugin-testing', 'plugin-devops', 'plugin-pm', 'plugin-pm-azure']
|
|
611
654
|
},
|
|
612
655
|
full: {
|
|
613
656
|
version: version,
|
|
@@ -617,7 +660,7 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
|
|
|
617
660
|
docker: { enabled: true, first: true },
|
|
618
661
|
kubernetes: { enabled: true }
|
|
619
662
|
},
|
|
620
|
-
plugins: ['plugin-core', 'plugin-languages', 'plugin-frameworks', 'plugin-testing', 'plugin-devops', 'plugin-cloud', 'plugin-databases', 'plugin-pm', 'plugin-ai']
|
|
663
|
+
plugins: ['plugin-core', 'plugin-languages', 'plugin-frameworks', 'plugin-testing', 'plugin-devops', 'plugin-cloud', 'plugin-databases', 'plugin-pm', 'plugin-pm-azure', 'plugin-ai']
|
|
621
664
|
},
|
|
622
665
|
performance: {
|
|
623
666
|
version: version,
|
|
@@ -628,7 +671,7 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
|
|
|
628
671
|
docker: { enabled: true, first: false },
|
|
629
672
|
kubernetes: { enabled: true }
|
|
630
673
|
},
|
|
631
|
-
plugins: ['plugin-core', 'plugin-languages', 'plugin-frameworks', 'plugin-testing', 'plugin-devops', 'plugin-cloud', 'plugin-databases', 'plugin-data', 'plugin-pm', 'plugin-ai', 'plugin-ml']
|
|
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']
|
|
632
675
|
}
|
|
633
676
|
};
|
|
634
677
|
|
package/package.json
CHANGED
|
@@ -811,21 +811,20 @@
|
|
|
811
811
|
"commands": [
|
|
812
812
|
{
|
|
813
813
|
"subdirectory": "commands/",
|
|
814
|
-
"description": "PM workflow commands (
|
|
814
|
+
"description": "PM workflow commands (46 total)",
|
|
815
815
|
"type": "collection",
|
|
816
816
|
"categories": {
|
|
817
817
|
"pm": "Core PM commands (45)",
|
|
818
|
-
"azure": "Azure DevOps integration commands (41)",
|
|
819
818
|
"github": "GitHub workflow commands (1)"
|
|
820
819
|
},
|
|
821
820
|
"discovery": "auto",
|
|
821
|
+
"exclude": ["azure"],
|
|
822
822
|
"tags": [
|
|
823
823
|
"pm",
|
|
824
824
|
"workflows",
|
|
825
825
|
"epic",
|
|
826
826
|
"task",
|
|
827
827
|
"issue",
|
|
828
|
-
"azure",
|
|
829
828
|
"github"
|
|
830
829
|
]
|
|
831
830
|
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@claudeautopm/plugin-pm-azure",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"schemaVersion": "2.0",
|
|
5
|
+
"displayName": "Azure DevOps Integration",
|
|
6
|
+
"description": "Azure DevOps integration plugin with work items, sprints, features, user stories, and task management",
|
|
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-azure"
|
|
17
|
+
},
|
|
18
|
+
"size": "~12 KB (gzipped)",
|
|
19
|
+
"required": false,
|
|
20
|
+
"tags": [
|
|
21
|
+
"azure-devops",
|
|
22
|
+
"work-items",
|
|
23
|
+
"sprints",
|
|
24
|
+
"agile",
|
|
25
|
+
"integration"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"commands": [
|
|
29
|
+
{
|
|
30
|
+
"subdirectory": "commands/azure/",
|
|
31
|
+
"description": "Azure DevOps integration commands (41 total)",
|
|
32
|
+
"type": "collection",
|
|
33
|
+
"categories": {
|
|
34
|
+
"azure": "Azure DevOps work item management"
|
|
35
|
+
},
|
|
36
|
+
"discovery": "auto",
|
|
37
|
+
"tags": [
|
|
38
|
+
"azure",
|
|
39
|
+
"devops",
|
|
40
|
+
"work-items",
|
|
41
|
+
"sprints",
|
|
42
|
+
"features",
|
|
43
|
+
"user-stories",
|
|
44
|
+
"tasks"
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"features": {
|
|
49
|
+
"azure_devops_integration": {
|
|
50
|
+
"enabled": true,
|
|
51
|
+
"description": "Full Azure DevOps work item management"
|
|
52
|
+
},
|
|
53
|
+
"sprint_management": {
|
|
54
|
+
"enabled": true,
|
|
55
|
+
"description": "Sprint planning and tracking"
|
|
56
|
+
},
|
|
57
|
+
"feature_decomposition": {
|
|
58
|
+
"enabled": true,
|
|
59
|
+
"description": "Feature breakdown into user stories and tasks"
|
|
60
|
+
},
|
|
61
|
+
"work_item_sync": {
|
|
62
|
+
"enabled": true,
|
|
63
|
+
"description": "Bidirectional sync with Azure DevOps"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"dependencies": [],
|
|
67
|
+
"peerPlugins": [
|
|
68
|
+
"@claudeautopm/plugin-core",
|
|
69
|
+
"@claudeautopm/plugin-pm"
|
|
70
|
+
],
|
|
71
|
+
"keywords": [
|
|
72
|
+
"claudeautopm",
|
|
73
|
+
"azure-devops",
|
|
74
|
+
"work-items",
|
|
75
|
+
"sprints",
|
|
76
|
+
"agile",
|
|
77
|
+
"project-management",
|
|
78
|
+
"integration"
|
|
79
|
+
],
|
|
80
|
+
"compatibleWith": ">=3.0.0"
|
|
81
|
+
}
|
|
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
|
/package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:fix-integration-example.md
RENAMED
|
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
|
|
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
|