aidevops 2.54.6 → 2.54.8
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 +5 -1
- package/VERSION +1 -1
- package/aidevops.sh +22 -2
- 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)
|
|
@@ -95,12 +95,16 @@ The result: AI agents that work *with* your development process, not around it.
|
|
|
95
95
|
|
|
96
96
|
```bash
|
|
97
97
|
npm install -g aidevops
|
|
98
|
+
aidevops update # Deploy agents (required after npm install)
|
|
98
99
|
```
|
|
99
100
|
|
|
101
|
+
> **Note**: npm suppresses postinstall output. Run `aidevops update` to deploy agents to `~/.aidevops/agents/`. The CLI will remind you if agents need updating.
|
|
102
|
+
|
|
100
103
|
**Bun** (fast alternative):
|
|
101
104
|
|
|
102
105
|
```bash
|
|
103
106
|
bun install -g aidevops
|
|
107
|
+
aidevops update # Deploy agents
|
|
104
108
|
```
|
|
105
109
|
|
|
106
110
|
**Homebrew** (macOS/Linux):
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.54.
|
|
1
|
+
2.54.8
|
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.
|
|
6
|
+
# Version: 2.54.8
|
|
7
7
|
|
|
8
8
|
set -euo pipefail
|
|
9
9
|
|
|
@@ -1696,12 +1696,32 @@ 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 ""
|
|
1703
1703
|
fi
|
|
1704
1704
|
|
|
1705
|
+
# Check if agents need updating (skip for update command itself)
|
|
1706
|
+
if [[ "$command" != "update" && "$command" != "upgrade" && "$command" != "u" ]]; then
|
|
1707
|
+
local cli_version agents_version
|
|
1708
|
+
cli_version=$(get_version)
|
|
1709
|
+
if [[ -f "$AGENTS_DIR/VERSION" ]]; then
|
|
1710
|
+
agents_version=$(cat "$AGENTS_DIR/VERSION")
|
|
1711
|
+
else
|
|
1712
|
+
agents_version="not installed"
|
|
1713
|
+
fi
|
|
1714
|
+
|
|
1715
|
+
if [[ "$agents_version" == "not installed" ]]; then
|
|
1716
|
+
echo -e "${YELLOW}[WARN]${NC} Agents not installed. Run: aidevops update"
|
|
1717
|
+
echo ""
|
|
1718
|
+
elif [[ "$cli_version" != "$agents_version" ]]; then
|
|
1719
|
+
echo -e "${YELLOW}[WARN]${NC} Version mismatch - CLI: $cli_version, Agents: $agents_version"
|
|
1720
|
+
echo -e " Run: aidevops update"
|
|
1721
|
+
echo ""
|
|
1722
|
+
fi
|
|
1723
|
+
fi
|
|
1724
|
+
|
|
1705
1725
|
case "$command" in
|
|
1706
1726
|
init|i)
|
|
1707
1727
|
shift
|
package/package.json
CHANGED
package/setup.sh
CHANGED