aidevops 2.54.7 → 2.55.0
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 +8 -11
- package/VERSION +1 -1
- package/aidevops.sh +4 -4
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ The result: AI agents that work *with* your development process, not around it.
|
|
|
57
57
|
[](https://github.com/marcusquinn/aidevops/commits/main)
|
|
58
58
|
|
|
59
59
|
<!-- Repository Stats -->
|
|
60
|
-
[](https://github.com/marcusquinn/aidevops/releases)
|
|
61
61
|
[](https://github.com/marcusquinn/aidevops)
|
|
62
62
|
[](https://github.com/marcusquinn/aidevops)
|
|
63
63
|
[](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.
|
|
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
|
|
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
|
|
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.
|
|
1
|
+
2.55.0
|
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.
|
|
6
|
+
# Version: 2.55.0
|
|
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"
|
|
@@ -1696,7 +1696,7 @@ main() {
|
|
|
1696
1696
|
|
|
1697
1697
|
# Auto-detect unregistered repo on any command (silent check)
|
|
1698
1698
|
local unregistered
|
|
1699
|
-
unregistered=$(detect_unregistered_repo 2>/dev/null)
|
|
1699
|
+
unregistered=$(detect_unregistered_repo 2>/dev/null) || true
|
|
1700
1700
|
if [[ -n "$unregistered" && "$command" != "detect" && "$command" != "repos" ]]; then
|
|
1701
1701
|
echo -e "${YELLOW}[TIP]${NC} This project uses aidevops but isn't registered. Run: aidevops repos add"
|
|
1702
1702
|
echo ""
|
package/package.json
CHANGED
package/setup.sh
CHANGED