aidevops 2.54.4 → 2.54.5

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
@@ -57,7 +57,7 @@ The result: AI agents that work *with* your development process, not around it.
57
57
  [![GitHub commits since latest release](https://img.shields.io/github/commits-since/marcusquinn/aidevops/latest)](https://github.com/marcusquinn/aidevops/commits/main)
58
58
 
59
59
  <!-- Repository Stats -->
60
- [![Version](https://img.shields.io/badge/Version-2.54.4-blue)](https://github.com/marcusquinn/aidevops/releases)
60
+ [![Version](https://img.shields.io/badge/Version-2.54.5-blue)](https://github.com/marcusquinn/aidevops/releases)
61
61
  [![GitHub repo size](https://img.shields.io/github/repo-size/marcusquinn/aidevops?style=flat&color=blue)](https://github.com/marcusquinn/aidevops)
62
62
  [![Lines of code](https://img.shields.io/badge/Lines%20of%20Code-18%2C000%2B-brightgreen)](https://github.com/marcusquinn/aidevops)
63
63
  [![GitHub language count](https://img.shields.io/github/languages/count/marcusquinn/aidevops)](https://github.com/marcusquinn/aidevops)
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.54.4
1
+ 2.54.5
package/aidevops.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI DevOps Framework CLI
4
4
  # Usage: aidevops <command> [options]
5
5
  #
6
- # Version: 2.54.4
6
+ # Version: 2.54.5
7
7
 
8
8
  set -euo pipefail
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "2.54.4",
3
+ "version": "2.54.5",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -3,6 +3,8 @@
3
3
  *
4
4
  * The npm package contains only the CLI wrapper. The full agent files
5
5
  * are deployed from ~/Git/aidevops via `aidevops update`.
6
+ *
7
+ * Note: Uses stderr so output is visible (npm suppresses stdout for lifecycle scripts)
6
8
  */
7
9
 
8
10
  const fs = require('fs');
@@ -12,6 +14,9 @@ const path = require('path');
12
14
  const agentsDir = path.join(os.homedir(), '.aidevops', 'agents');
13
15
  const versionFile = path.join(agentsDir, 'VERSION');
14
16
 
17
+ // Use stderr so npm doesn't suppress the output
18
+ const log = (msg = '') => process.stderr.write(msg + '\n');
19
+
15
20
  // Check current installed version
16
21
  let installedVersion = 'not installed';
17
22
  if (fs.existsSync(versionFile)) {
@@ -22,30 +27,30 @@ if (fs.existsSync(versionFile)) {
22
27
  const packageJson = require('../package.json');
23
28
  const packageVersion = packageJson.version;
24
29
 
25
- console.log('');
26
- console.log('aidevops CLI installed successfully!');
27
- console.log('');
28
- console.log(` CLI version: ${packageVersion}`);
29
- console.log(` Agents version: ${installedVersion}`);
30
- console.log('');
30
+ log('');
31
+ log('aidevops CLI installed successfully!');
32
+ log('');
33
+ log(` CLI version: ${packageVersion}`);
34
+ log(` Agents version: ${installedVersion}`);
35
+ log('');
31
36
 
32
37
  if (installedVersion === 'not installed') {
33
- console.log('To complete installation, run:');
34
- console.log('');
35
- console.log(' aidevops update');
36
- console.log('');
37
- console.log('This will clone the repository and deploy agents to ~/.aidevops/agents/');
38
+ log('To complete installation, run:');
39
+ log('');
40
+ log(' aidevops update');
41
+ log('');
42
+ log('This will clone the repository and deploy agents to ~/.aidevops/agents/');
38
43
  } else if (installedVersion !== packageVersion) {
39
- console.log('To update agents to match CLI version, run:');
40
- console.log('');
41
- console.log(' aidevops update');
42
- console.log('');
44
+ log('To update agents to match CLI version, run:');
45
+ log('');
46
+ log(' aidevops update');
47
+ log('');
43
48
  } else {
44
- console.log('CLI and agents are in sync. Ready to use!');
45
- console.log('');
46
- console.log('Quick start:');
47
- console.log(' aidevops status # Check installation');
48
- console.log(' aidevops init # Initialize in a project');
49
- console.log(' aidevops help # Show all commands');
49
+ log('CLI and agents are in sync. Ready to use!');
50
+ log('');
51
+ log('Quick start:');
52
+ log(' aidevops status # Check installation');
53
+ log(' aidevops init # Initialize in a project');
54
+ log(' aidevops help # Show all commands');
50
55
  }
51
- console.log('');
56
+ log('');
package/setup.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI Assistant Server Access Framework Setup Script
4
4
  # Helps developers set up the framework for their infrastructure
5
5
  #
6
- # Version: 2.54.4
6
+ # Version: 2.54.5
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)