aether-colony 3.1.1 → 3.1.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/.claude/commands/ant/build.md +57 -6
- package/.claude/commands/ant/continue.md +43 -1
- package/.opencode/commands/ant/build.md +107 -11
- package/.opencode/commands/ant/continue.md +43 -1
- package/.opencode/commands/ant/maturity.md +92 -0
- package/.opencode/commands/ant/verify-castes.md +85 -0
- package/CHANGELOG.md +9 -0
- package/package.json +2 -2
- package/runtime/aether-utils.sh +16 -0
- package/.opencode/commands/ant/ant:build.md +0 -982
- package/.opencode/commands/ant/ant:verify-castes.md +0 -157
package/runtime/aether-utils.sh
CHANGED
|
@@ -1953,6 +1953,22 @@ NODESCRIPT
|
|
|
1953
1953
|
fi
|
|
1954
1954
|
;;
|
|
1955
1955
|
|
|
1956
|
+
swarm-display-render)
|
|
1957
|
+
# Render the swarm display to terminal
|
|
1958
|
+
# Usage: swarm-display-render [swarm_id]
|
|
1959
|
+
swarm_id="${1:-default-swarm}"
|
|
1960
|
+
|
|
1961
|
+
display_script="$SCRIPT_DIR/utils/swarm-display.sh"
|
|
1962
|
+
|
|
1963
|
+
if [[ -f "$display_script" ]]; then
|
|
1964
|
+
# Execute the display script
|
|
1965
|
+
bash "$display_script" "$swarm_id" 2>/dev/null || true
|
|
1966
|
+
json_ok '{"rendered":true}'
|
|
1967
|
+
else
|
|
1968
|
+
json_err "$E_FILE_NOT_FOUND" "Display script not found: $display_script"
|
|
1969
|
+
fi
|
|
1970
|
+
;;
|
|
1971
|
+
|
|
1956
1972
|
swarm-timing-start)
|
|
1957
1973
|
# Record start time for an ant
|
|
1958
1974
|
# Usage: swarm-timing-start <ant_name>
|