claude-autopm 1.10.0 → 1.10.2

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.
@@ -79,30 +79,55 @@ class ConfigCommand {
79
79
 
80
80
  console.log('│ │');
81
81
 
82
- // Features
83
- if (config.features) {
84
- const dockerStatus = config.features.dockerFirst ? '✅ Enabled' : '❌ Disabled';
85
- console.log(`│ Docker First: ${this.padRight(dockerStatus, 22)} │`);
82
+ // Installation Configuration - check both new and legacy formats
83
+ const dockerEnabled = config.tools?.docker?.enabled || config.features?.dockerFirst || false;
84
+ const dockerFirst = config.tools?.docker?.first || false;
85
+ const dockerStatus = dockerEnabled ? (dockerFirst ? '✅ Enabled (First)' : '✅ Enabled') : '❌ Disabled';
86
+ console.log(`│ Docker: ${this.padRight(dockerStatus, 22)} │`);
87
+
88
+ const k8sEnabled = config.tools?.kubernetes?.enabled || config.features?.kubernetes || false;
89
+ const k8sStatus = k8sEnabled ? '✅ Enabled' : '❌ Disabled';
90
+ console.log(`│ Kubernetes: ${this.padRight(k8sStatus, 22)} │`);
91
+
92
+ // Execution strategy - check both formats
93
+ const executionStrategy = config.execution_strategy || config.execution?.strategy || 'adaptive';
94
+ console.log(`│ Execution: ${this.padRight(executionStrategy, 22)} │`);
95
+
96
+ // Show parallel limit if hybrid strategy
97
+ if (executionStrategy === 'hybrid' && config.parallel_limit) {
98
+ console.log(`│ Parallel Limit: ${this.padRight(config.parallel_limit.toString(), 22)} │`);
99
+ }
86
100
 
87
- const k8sStatus = config.features.kubernetes ? '✅ Enabled' : '❌ Disabled';
88
- console.log(`│ Kubernetes: ${this.padRight(k8sStatus, 22)} │`);
101
+ console.log('│ │');
89
102
 
90
- if (config.features.cicd) {
91
- console.log(`│ CI/CD: ${this.padRight(config.features.cicd, 22)} │`);
92
- }
93
- }
103
+ // Features - optional/legacy features
104
+ const mcpStatus = config.features?.mcp ? '✅ Enabled' : '❌ Disabled';
105
+ console.log(`│ MCP: ${this.padRight(mcpStatus, 22)} │`);
94
106
 
95
- // Execution strategy
96
- if (config.execution?.strategy) {
97
- console.log(`│ Execution: ${this.padRight(config.execution.strategy, 22)} │`);
98
- }
107
+ const autoCommit = config.features?.autoCommit ? '✅ Enabled' : '❌ Disabled';
108
+ console.log(`│ Auto Commit: ${this.padRight(autoCommit, 22)} │`);
109
+
110
+ // CI/CD
111
+ const cicdPlatform = config.features?.cicd || 'not configured';
112
+ console.log(`│ CI/CD: ${this.padRight(cicdPlatform, 22)} │`);
99
113
 
100
114
  // Current team
101
- if (config.teams?.current) {
102
- console.log(`│ Team: ${this.padRight(config.teams.current, 22)} │`);
103
- }
115
+ const currentTeam = config.teams?.current || 'base';
116
+ console.log(`│ Team: ${this.padRight(currentTeam, 22)} │`);
117
+
118
+ // Environment
119
+ const environment = config.environment || 'development';
120
+ console.log(`│ Environment: ${this.padRight(environment, 22)} │`)
104
121
 
105
122
  console.log('└─────────────────────────────────────────┘\n');
123
+
124
+ // Show available commands hint
125
+ console.log('💡 Available commands:');
126
+ console.log(' autopm config set <key> <value> - Set configuration value');
127
+ console.log(' autopm config toggle <feature> - Toggle feature on/off');
128
+ console.log(' autopm config switch <provider> - Switch to different provider');
129
+ console.log(' autopm config validate - Validate configuration');
130
+ console.log(' autopm config --help - Show all options\n');
106
131
  }
107
132
 
108
133
  /**
@@ -39,6 +39,7 @@ class Installer {
39
39
  '.claude/rules',
40
40
  '.claude/scripts',
41
41
  '.claude/checklists',
42
+ '.claude/strategies',
42
43
  '.claude/mcp',
43
44
  '.claude/.env.example',
44
45
  '.claude-code'
@@ -345,11 +346,34 @@ ${this.colors.BOLD}Examples:${this.colors.NC}
345
346
  console.log(`
346
347
  ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
347
348
 
348
- 1. ${this.colors.CYAN}Minimal${this.colors.NC} - Sequential execution, no Docker/K8s
349
- 2. ${this.colors.CYAN}Docker-only${this.colors.NC} - Adaptive execution with Docker
350
- 3. ${this.colors.GREEN}Full DevOps${this.colors.NC} - Adaptive execution with all features ${this.colors.BOLD}(RECOMMENDED)${this.colors.NC}
351
- 4. ${this.colors.YELLOW}Performance${this.colors.NC} - Hybrid parallel execution for power users
352
- 5. ${this.colors.CYAN}Custom${this.colors.NC} - Configure manually
349
+ ${this.colors.CYAN}1. Minimal${this.colors.NC} - Traditional development workflow
350
+ Sequential agent execution (one at a time)
351
+ Native tooling: npm, pip, local installs
352
+ Best for: Simple projects, learning, debugging
353
+ No containers or orchestration
354
+
355
+ ${this.colors.CYAN}2. Docker-only${this.colors.NC} - Containerized local development
356
+ • Adaptive execution (smart sequential/parallel choice)
357
+ • Docker containers for development environment
358
+ • Best for: Microservices, consistent environments
359
+ • Local Docker only, no Kubernetes
360
+
361
+ ${this.colors.GREEN}3. Full DevOps${this.colors.NC} - Complete CI/CD pipeline ${this.colors.BOLD}(RECOMMENDED)${this.colors.NC}
362
+ • Adaptive execution with Docker-first priority
363
+ • Kubernetes manifests and cloud deployment ready
364
+ • GitHub Actions with KIND clusters and Kaniko builds
365
+ • Best for: Production applications, enterprise projects
366
+
367
+ ${this.colors.YELLOW}4. Performance${this.colors.NC} - Maximum parallel execution
368
+ • Hybrid strategy: up to 5 parallel agents
369
+ • Advanced context isolation and security
370
+ • Full DevOps capabilities with speed optimization
371
+ • Best for: Large projects, massive refactoring, power users
372
+
373
+ ${this.colors.CYAN}5. Custom${this.colors.NC} - Manual configuration
374
+ • Configure execution strategy manually
375
+ • Choose your own agents and workflows
376
+ • Advanced users only
353
377
  `);
354
378
 
355
379
  if (process.env.AUTOPM_TEST_MODE === '1') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-autopm",
3
- "version": "1.10.0",
3
+ "version": "1.10.2",
4
4
  "description": "Autonomous Project Management Framework for Claude Code - Advanced AI-powered development automation",
5
5
  "main": "bin/autopm.js",
6
6
  "bin": {