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.
@@ -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>