aidevops 2.57.0 → 2.59.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 +2 -2
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +13 -6
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)
|
|
@@ -870,7 +870,7 @@ Ordered as they appear in OpenCode Tab selector and other AI assistants (14 tota
|
|
|
870
870
|
|
|
871
871
|
| Name | File | Purpose | MCPs Enabled |
|
|
872
872
|
|------|------|---------|--------------|
|
|
873
|
-
| Plan+ | `plan-plus.md` |
|
|
873
|
+
| Plan+ | `plan-plus.md` | Planning with semantic search, writes to TODO.md/todo/ | context7, augment, repomix |
|
|
874
874
|
| Build+ | `build-plus.md` | Enhanced Build with context tools | context7, augment, repomix |
|
|
875
875
|
| Build-Agent | `build-agent.md` | Design and improve AI agents | context7, augment, repomix |
|
|
876
876
|
| Build-MCP | `build-mcp.md` | Build MCP servers with TS+Bun+ElysiaJS | context7, augment, repomix |
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.59.0
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
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.
|
|
6
|
+
# Version: 2.59.0
|
|
7
7
|
#
|
|
8
8
|
# Quick Install (one-liner):
|
|
9
9
|
# bash <(curl -fsSL https://aidevops.dev/install)
|
|
@@ -231,7 +231,7 @@ migrate_loop_state_directories() {
|
|
|
231
231
|
|
|
232
232
|
# Check for loop state files in old location
|
|
233
233
|
local has_loop_state=false
|
|
234
|
-
if [[ -f "$old_state_dir/ralph-loop.local.
|
|
234
|
+
if [[ -f "$old_state_dir/ralph-loop.local.state" ]] || \
|
|
235
235
|
[[ -f "$old_state_dir/loop-state.json" ]] || \
|
|
236
236
|
[[ -d "$old_state_dir/receipts" ]]; then
|
|
237
237
|
has_loop_state=true
|
|
@@ -245,7 +245,7 @@ migrate_loop_state_directories() {
|
|
|
245
245
|
mkdir -p "$new_state_dir"
|
|
246
246
|
|
|
247
247
|
# Move loop-related files
|
|
248
|
-
for file in ralph-loop.local.
|
|
248
|
+
for file in ralph-loop.local.state loop-state.json re-anchor.md guardrails.md; do
|
|
249
249
|
if [[ -f "$old_state_dir/$file" ]]; then
|
|
250
250
|
mv "$old_state_dir/$file" "$new_state_dir/"
|
|
251
251
|
print_info " Moved $file"
|
|
@@ -1266,9 +1266,16 @@ deploy_aidevops_agents() {
|
|
|
1266
1266
|
rm -rf "${target_dir:?}"/*
|
|
1267
1267
|
fi
|
|
1268
1268
|
|
|
1269
|
-
# Copy all agent files and folders
|
|
1270
|
-
#
|
|
1271
|
-
|
|
1269
|
+
# Copy all agent files and folders, excluding:
|
|
1270
|
+
# - loop-state/ (local runtime state, not agents)
|
|
1271
|
+
# Use rsync for selective exclusion
|
|
1272
|
+
if command -v rsync &>/dev/null; then
|
|
1273
|
+
rsync -a --exclude='loop-state/' "$source_dir/" "$target_dir/"
|
|
1274
|
+
else
|
|
1275
|
+
# Fallback: copy then remove loop-state
|
|
1276
|
+
cp -R "$source_dir"/* "$target_dir/"
|
|
1277
|
+
rm -rf "$target_dir/loop-state" 2>/dev/null || true
|
|
1278
|
+
fi
|
|
1272
1279
|
|
|
1273
1280
|
if [[ $? -eq 0 ]]; then
|
|
1274
1281
|
print_success "Deployed agents to $target_dir"
|