claude-autopm 1.12.2 → 1.12.3

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/README.md CHANGED
@@ -291,9 +291,17 @@ autopm azure:sprint-status
291
291
  autopm context:create
292
292
  ```
293
293
 
294
- ### New in v1.9.x: Complete PM Command Suite
294
+ ### Latest Features (v1.12.x)
295
295
 
296
- The latest release includes 17 new PM commands providing comprehensive project management capabilities:
296
+ **v1.12.2 - Smart Installation & Command Fixes**
297
+ - **Smart Tool Detection** - Installer automatically detects Docker and kubectl availability
298
+ - **Intelligent Defaults** - Installation options filtered based on available tools
299
+ - **Command Format Fixes** - All PM scripts now use consistent `/pm:...` format
300
+ - **Version Tracking** - Update command now properly detects installed versions
301
+
302
+ **v1.9.x - Complete PM Command Suite**
303
+
304
+ 17 new PM commands providing comprehensive project management capabilities:
297
305
 
298
306
  #### **PRD & Epic Management**
299
307
  ```bash
@@ -1,4 +1,6 @@
1
1
  {
2
+ "version": "1.12.2",
3
+ "installed": "2025-09-30T09:00:00Z",
2
4
  "execution_strategy": {
3
5
  "mode": "adaptive"
4
6
  },
@@ -514,8 +514,19 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
514
514
  }
515
515
 
516
516
  generateConfig(scenario) {
517
+ // Get version from package.json
518
+ let version = 'unknown';
519
+ try {
520
+ const packageJson = JSON.parse(fs.readFileSync(path.join(this.baseDir, 'package.json'), 'utf-8'));
521
+ version = packageJson.version;
522
+ } catch (error) {
523
+ // Fallback to unknown if package.json can't be read
524
+ }
525
+
517
526
  const configs = {
518
527
  minimal: {
528
+ version: version,
529
+ installed: new Date().toISOString(),
519
530
  execution_strategy: 'sequential',
520
531
  tools: {
521
532
  docker: { enabled: false },
@@ -523,6 +534,8 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
523
534
  }
524
535
  },
525
536
  docker: {
537
+ version: version,
538
+ installed: new Date().toISOString(),
526
539
  execution_strategy: 'adaptive',
527
540
  tools: {
528
541
  docker: { enabled: true, first: false },
@@ -530,6 +543,8 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
530
543
  }
531
544
  },
532
545
  full: {
546
+ version: version,
547
+ installed: new Date().toISOString(),
533
548
  execution_strategy: 'adaptive',
534
549
  tools: {
535
550
  docker: { enabled: true, first: true },
@@ -537,6 +552,8 @@ ${this.colors.BOLD}Select installation scenario:${this.colors.NC}
537
552
  }
538
553
  },
539
554
  performance: {
555
+ version: version,
556
+ installed: new Date().toISOString(),
540
557
  execution_strategy: 'hybrid',
541
558
  parallel_limit: 5,
542
559
  tools: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-autopm",
3
- "version": "1.12.2",
3
+ "version": "1.12.3",
4
4
  "description": "Autonomous Project Management Framework for Claude Code - Advanced AI-powered development automation",
5
5
  "main": "bin/autopm.js",
6
6
  "bin": {