claude-autopm 3.3.0 → 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 (2) hide show
  1. package/install/install.js +32 -32
  2. package/package.json +1 -1
@@ -453,33 +453,33 @@ ${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
-
465
- // Option 1: Minimal (always available)
466
- console.log(`${this.colors.CYAN}1. Minimal${this.colors.NC} - Basic development workflow
467
- • Core + language specialists (9 agents, 10 commands)
468
- • Sequential agent execution (one at a time)
469
- • Best for: Simple projects, learning, debugging
470
- • No PM workflows or containers
471
- ${this.colors.DIM}• Plugins: core, languages (2 plugins)${this.colors.NC}
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}
472
463
  `);
473
464
 
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)
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)
477
468
  • Sequential agent execution
478
- • Best for: Projects needing epic/issue tracking
469
+ • Best for: Most projects
479
470
  • GitHub integration (no Azure DevOps)
480
471
  ${this.colors.DIM}• Plugins: core, languages, pm (3 plugins)${this.colors.NC}
481
472
  `);
482
473
 
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
483
  // Option 3: Docker-only (requires Docker)
484
484
  if (availableTools.docker) {
485
485
  console.log(`${this.colors.CYAN}3. Docker-only${this.colors.NC} - Containerized local development
@@ -536,8 +536,8 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
536
536
  `);
537
537
 
538
538
  if (process.env.AUTOPM_TEST_MODE === '1') {
539
- this.printMsg('CYAN', 'Auto-selecting option 0 (micro) for test mode');
540
- return 'micro';
539
+ this.printMsg('CYAN', 'Auto-selecting option 0 (lite) for test mode');
540
+ return 'lite';
541
541
  }
542
542
 
543
543
  const rl = readline.createInterface({
@@ -546,16 +546,16 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
546
546
  });
547
547
 
548
548
  // Determine default based on available tools
549
- const defaultChoice = availableTools.docker && availableTools.kubectl ? '4' : '2';
549
+ const defaultChoice = availableTools.docker && availableTools.kubectl ? '4' : '1';
550
550
 
551
551
  return new Promise((resolve) => {
552
552
  const askQuestion = () => {
553
553
  rl.question(`${this.colors.CYAN}Enter your choice (0-6) [${defaultChoice}]: ${this.colors.NC}`, (answer) => {
554
554
  const choice = answer.trim() || defaultChoice;
555
555
  const scenarios = {
556
- '0': 'micro',
557
- '1': 'minimal',
558
- '2': 'standard',
556
+ '0': 'lite',
557
+ '1': 'standard',
558
+ '2': 'azure',
559
559
  '3': 'docker',
560
560
  '4': 'full',
561
561
  '5': 'performance',
@@ -612,7 +612,7 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
612
612
  }
613
613
 
614
614
  const configs = {
615
- micro: {
615
+ lite: {
616
616
  version: version,
617
617
  installed: new Date().toISOString(),
618
618
  execution_strategy: 'sequential',
@@ -620,9 +620,9 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
620
620
  docker: { enabled: false },
621
621
  kubernetes: { enabled: false }
622
622
  },
623
- plugins: ['plugin-core']
623
+ plugins: ['plugin-core', 'plugin-pm']
624
624
  },
625
- minimal: {
625
+ standard: {
626
626
  version: version,
627
627
  installed: new Date().toISOString(),
628
628
  execution_strategy: 'sequential',
@@ -630,9 +630,9 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
630
630
  docker: { enabled: false },
631
631
  kubernetes: { enabled: false }
632
632
  },
633
- plugins: ['plugin-core', 'plugin-languages']
633
+ plugins: ['plugin-core', 'plugin-languages', 'plugin-pm']
634
634
  },
635
- standard: {
635
+ azure: {
636
636
  version: version,
637
637
  installed: new Date().toISOString(),
638
638
  execution_strategy: 'sequential',
@@ -640,7 +640,7 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
640
640
  docker: { enabled: false },
641
641
  kubernetes: { enabled: false }
642
642
  },
643
- plugins: ['plugin-core', 'plugin-languages', 'plugin-pm']
643
+ plugins: ['plugin-core', 'plugin-languages', 'plugin-pm', 'plugin-pm-azure']
644
644
  },
645
645
  docker: {
646
646
  version: version,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-autopm",
3
- "version": "3.3.0",
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": [