aidevops 2.54.8 → 2.55.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.
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.8-blue)](https://github.com/marcusquinn/aidevops/releases)
60
+ [![Version](https://img.shields.io/badge/Version-2.55.2-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)
@@ -94,24 +94,21 @@ The result: AI agents that work *with* your development process, not around it.
94
94
  **npm** (recommended - [verified provenance](https://docs.npmjs.com/generating-provenance-statements)):
95
95
 
96
96
  ```bash
97
- npm install -g aidevops
98
- aidevops update # Deploy agents (required after npm install)
97
+ npm install -g aidevops && aidevops update
99
98
  ```
100
99
 
101
- > **Note**: npm suppresses postinstall output. Run `aidevops update` to deploy agents to `~/.aidevops/agents/`. The CLI will remind you if agents need updating.
100
+ > **Note**: npm suppresses postinstall output. The `&& aidevops update` deploys agents to `~/.aidevops/agents/`. The CLI will remind you if agents need updating.
102
101
 
103
102
  **Bun** (fast alternative):
104
103
 
105
104
  ```bash
106
- bun install -g aidevops
107
- aidevops update # Deploy agents
105
+ bun install -g aidevops && aidevops update
108
106
  ```
109
107
 
110
108
  **Homebrew** (macOS/Linux):
111
109
 
112
110
  ```bash
113
- brew tap marcusquinn/tap
114
- brew install aidevops
111
+ brew install marcusquinn/tap/aidevops && aidevops update
115
112
  ```
116
113
 
117
114
  **Direct from source** (aidevops.sh):
@@ -1472,13 +1469,13 @@ bash .agent/scripts/setup-mcp-integrations.sh all
1472
1469
 
1473
1470
  ```bash
1474
1471
  # npm (recommended)
1475
- npm install -g aidevops
1472
+ npm install -g aidevops && aidevops update
1476
1473
 
1477
1474
  # Bun (fast alternative)
1478
- bun install -g aidevops
1475
+ bun install -g aidevops && aidevops update
1479
1476
 
1480
1477
  # Homebrew
1481
- brew tap marcusquinn/tap && brew install aidevops
1478
+ brew install marcusquinn/tap/aidevops && aidevops update
1482
1479
 
1483
1480
  # Direct from source
1484
1481
  bash <(curl -fsSL https://aidevops.sh/install)
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.54.8
1
+ 2.55.2
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.8
6
+ # Version: 2.55.2
7
7
 
8
8
  set -euo pipefail
9
9
 
@@ -1669,8 +1669,8 @@ cmd_help() {
1669
1669
  echo " aidevops uninstall # Remove aidevops"
1670
1670
  echo ""
1671
1671
  echo "Installation:"
1672
- echo " npm install -g aidevops # via npm"
1673
- echo " brew install marcusquinn/tap/aidevops # via Homebrew"
1672
+ echo " npm install -g aidevops && aidevops update # via npm"
1673
+ echo " brew install marcusquinn/tap/aidevops && aidevops update # via Homebrew"
1674
1674
  echo " bash <(curl -fsSL https://aidevops.sh) # via curl"
1675
1675
  echo ""
1676
1676
  echo "Documentation: https://github.com/marcusquinn/aidevops"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "2.54.8",
3
+ "version": "2.55.2",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "main": "index.js",
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.8
6
+ # Version: 2.55.2
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)
@@ -1836,12 +1836,12 @@ add_opencode_plugin() {
1836
1836
 
1837
1837
  # Check if plugin array exists and if plugin is already configured
1838
1838
  local has_plugin_array
1839
- has_plugin_array=$(jq -e '.plugin' "$opencode_config" 2>/dev/null && echo "true" || echo "false")
1839
+ has_plugin_array=$(jq -e '.plugin' "$opencode_config" >/dev/null 2>&1 && echo "true" || echo "false")
1840
1840
 
1841
1841
  if [[ "$has_plugin_array" == "true" ]]; then
1842
1842
  # Check if plugin is already in the array
1843
1843
  local plugin_exists
1844
- plugin_exists=$(jq -e --arg p "$plugin_name" '.plugin | map(select(startswith($p))) | length > 0' "$opencode_config" 2>/dev/null && echo "true" || echo "false")
1844
+ plugin_exists=$(jq -e --arg p "$plugin_name" '.plugin | map(select(startswith($p))) | length > 0' "$opencode_config" >/dev/null 2>&1 && echo "true" || echo "false")
1845
1845
 
1846
1846
  if [[ "$plugin_exists" == "true" ]]; then
1847
1847
  # Update existing plugin to latest version
@@ -1965,12 +1965,12 @@ setup_oh_my_opencode() {
1965
1965
 
1966
1966
  # Check if plugin array exists
1967
1967
  local has_plugin_array
1968
- has_plugin_array=$(jq -e '.plugin' "$opencode_config" 2>/dev/null && echo "true" || echo "false")
1968
+ has_plugin_array=$(jq -e '.plugin' "$opencode_config" >/dev/null 2>&1 && echo "true" || echo "false")
1969
1969
 
1970
1970
  if [[ "$has_plugin_array" == "true" ]]; then
1971
1971
  # Check if plugin is already in the array
1972
1972
  local plugin_exists
1973
- plugin_exists=$(jq -e --arg p "$plugin_name" '.plugin | map(select(. == $p or startswith($p + "@"))) | length > 0' "$opencode_config" 2>/dev/null && echo "true" || echo "false")
1973
+ plugin_exists=$(jq -e --arg p "$plugin_name" '.plugin | map(select(. == $p or startswith($p + "@"))) | length > 0' "$opencode_config" >/dev/null 2>&1 && echo "true" || echo "false")
1974
1974
 
1975
1975
  if [[ "$plugin_exists" == "true" ]]; then
1976
1976
  print_info "Oh-My-OpenCode already configured"