claude-autopm 3.2.4 → 3.3.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.
- package/install/install.js +86 -43
- 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
|
|
457
|
-
console.log(`${this.colors.CYAN}
|
|
458
|
-
•
|
|
459
|
-
•
|
|
460
|
-
• Best for: Simple
|
|
461
|
-
•
|
|
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)
|
|
462
|
+
${this.colors.DIM}• Plugins: core, pm (2 plugins)${this.colors.NC}
|
|
463
|
+
`);
|
|
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)
|
|
462
471
|
${this.colors.DIM}• Plugins: core, languages, pm (3 plugins)${this.colors.NC}
|
|
463
472
|
`);
|
|
464
473
|
|
|
465
|
-
// Option 2:
|
|
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
|
|
478
|
+
• Best for: Azure DevOps projects
|
|
479
|
+
• Full GitHub + Azure DevOps integration
|
|
480
|
+
${this.colors.DIM}• Plugins: core, languages, pm, pm-azure (4 plugins)${this.colors.NC}
|
|
481
|
+
`);
|
|
482
|
+
|
|
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 (lite) for test mode');
|
|
540
|
+
return 'lite';
|
|
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' : '1';
|
|
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 = {
|
|
538
|
-
'
|
|
539
|
-
'
|
|
540
|
-
'
|
|
541
|
-
'
|
|
542
|
-
'
|
|
556
|
+
'0': 'lite',
|
|
557
|
+
'1': 'standard',
|
|
558
|
+
'2': 'azure',
|
|
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,17 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
|
|
|
589
612
|
}
|
|
590
613
|
|
|
591
614
|
const configs = {
|
|
592
|
-
|
|
615
|
+
lite: {
|
|
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', 'plugin-pm']
|
|
624
|
+
},
|
|
625
|
+
standard: {
|
|
593
626
|
version: version,
|
|
594
627
|
installed: new Date().toISOString(),
|
|
595
628
|
execution_strategy: 'sequential',
|
|
@@ -599,6 +632,16 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
|
|
|
599
632
|
},
|
|
600
633
|
plugins: ['plugin-core', 'plugin-languages', 'plugin-pm']
|
|
601
634
|
},
|
|
635
|
+
azure: {
|
|
636
|
+
version: version,
|
|
637
|
+
installed: new Date().toISOString(),
|
|
638
|
+
execution_strategy: 'sequential',
|
|
639
|
+
tools: {
|
|
640
|
+
docker: { enabled: false },
|
|
641
|
+
kubernetes: { enabled: false }
|
|
642
|
+
},
|
|
643
|
+
plugins: ['plugin-core', 'plugin-languages', 'plugin-pm', 'plugin-pm-azure']
|
|
644
|
+
},
|
|
602
645
|
docker: {
|
|
603
646
|
version: version,
|
|
604
647
|
installed: new Date().toISOString(),
|
|
@@ -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
|