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.
Files changed (45) hide show
  1. package/install/install.js +86 -43
  2. package/package.json +1 -1
  3. package/packages/plugin-pm/plugin.json +2 -3
  4. package/packages/plugin-pm-azure/plugin.json +81 -0
  5. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:COMMANDS.md +0 -0
  6. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:COMMAND_MAPPING.md +0 -0
  7. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:INTEGRATION_FIX.md +0 -0
  8. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:README.md +0 -0
  9. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:active-work.md +0 -0
  10. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:aliases.md +0 -0
  11. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:blocked-items.md +0 -0
  12. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:clean.md +0 -0
  13. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:docs-query.md +0 -0
  14. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:feature-decompose.md +0 -0
  15. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:feature-list.md +0 -0
  16. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:feature-new.md +0 -0
  17. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:feature-show.md +0 -0
  18. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:feature-start.md +0 -0
  19. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:fix-integration-example.md +0 -0
  20. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:help.md +0 -0
  21. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:import-us.md +0 -0
  22. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:init.md +0 -0
  23. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:next-task.md +0 -0
  24. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:search.md +0 -0
  25. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:sprint-status.md +0 -0
  26. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:standup.md +0 -0
  27. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:sync-all.md +0 -0
  28. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-analyze.md +0 -0
  29. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-close.md +0 -0
  30. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-edit.md +0 -0
  31. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-list.md +0 -0
  32. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-new.md +0 -0
  33. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-reopen.md +0 -0
  34. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-show.md +0 -0
  35. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-start.md +0 -0
  36. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-status.md +0 -0
  37. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:task-sync.md +0 -0
  38. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:us-edit.md +0 -0
  39. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:us-list.md +0 -0
  40. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:us-new.md +0 -0
  41. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:us-parse.md +0 -0
  42. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:us-show.md +0 -0
  43. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:us-status.md +0 -0
  44. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:validate.md +0 -0
  45. /package/packages/{plugin-pm → plugin-pm-azure}/commands/azure/azure:work-item-sync.md +0 -0
@@ -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 1: Minimal (always available)
457
- console.log(`${this.colors.CYAN}1. Minimal${this.colors.NC} - Traditional development workflow
458
- Sequential agent execution (one at a time)
459
- Native tooling: npm, pip, local installs
460
- • Best for: Simple projects, learning, debugging
461
- No containers or orchestration
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: Docker-only (requires Docker)
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}2. Docker-only${this.colors.NC} - Containerized local development
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
- Local Docker only, no Kubernetes
472
- ${this.colors.DIM}• Plugins: core, languages, frameworks, testing, devops, pm (6 plugins)${this.colors.NC}
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}2. Docker-only${this.colors.NC} ${this.colors.RED}(Docker not installed)${this.colors.NC}
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 3: Full DevOps (requires Docker and kubectl)
497
+ // Option 4: Full DevOps (requires Docker and kubectl)
480
498
  if (availableTools.docker && availableTools.kubectl) {
481
- console.log(`${this.colors.GREEN}3. Full DevOps${this.colors.NC} - Complete CI/CD pipeline ${this.colors.BOLD}(RECOMMENDED)${this.colors.NC}
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 (9 plugins)${this.colors.NC}
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}3. Full DevOps${this.colors.NC} ${this.colors.RED}(kubectl not installed)${this.colors.NC}
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}3. Full DevOps${this.colors.NC} ${this.colors.RED}(Docker and kubectl not installed)${this.colors.NC}
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 4: Performance (requires Docker and kubectl)
514
+ // Option 5: Performance (requires Docker and kubectl)
497
515
  if (availableTools.docker && availableTools.kubectl) {
498
- console.log(`${this.colors.YELLOW}4. Performance${this.colors.NC} - Maximum parallel execution
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 - core, languages, frameworks, testing, devops, cloud, databases, data, pm, ai, ml (11 plugins)${this.colors.NC}
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}4. Performance${this.colors.NC} ${this.colors.RED}(kubectl not installed)${this.colors.NC}
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}4. Performance${this.colors.NC} ${this.colors.RED}(Docker and kubectl not installed)${this.colors.NC}
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 5: Custom (always available)
514
- console.log(`${this.colors.CYAN}5. Custom${this.colors.NC} - Manual configuration
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 1 for test mode');
522
- return 'minimal';
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 ? '3' : '1';
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 (1-5) [${defaultChoice}]: ${this.colors.NC}`, (answer) => {
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
- '1': 'minimal',
539
- '2': 'docker',
540
- '3': 'full',
541
- '4': 'performance',
542
- '5': 'custom'
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
- if (choice === '2' && !availableTools.docker) {
549
- console.log(`${this.colors.RED}✗ Docker is required for this option. Please install Docker first or choose option 1 (Minimal).${this.colors.NC}`);
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
- if ((choice === '3' || choice === '4') && !availableTools.docker) {
555
- console.log(`${this.colors.RED}✗ Docker is required for this option. Please install Docker first or choose option 1 (Minimal).${this.colors.NC}`);
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
- if ((choice === '3' || choice === '4') && availableTools.docker && !availableTools.kubectl) {
561
- console.log(`${this.colors.RED}✗ kubectl is required for this option. Please install kubectl first or choose option 2 (Docker-only).${this.colors.NC}`);
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 1-5.${this.colors.NC}`);
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
- minimal: {
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-autopm",
3
- "version": "3.2.4",
3
+ "version": "3.3.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": [
@@ -811,21 +811,20 @@
811
811
  "commands": [
812
812
  {
813
813
  "subdirectory": "commands/",
814
- "description": "PM workflow commands (87 total)",
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
+ }