apps/route: AI trip planner on MapView — tool broker + local/cloud agent dispatch, nav session + simulated drive, layers/theme state, DDG image search, trip history, tilt-shift DOF layer (linear circle-of-confusion: level = log2 of radius, constant growth rate, tilt raises only the ceiling; tilt-shift on by default). Platform: Cx geo location API (macOS/iOS/Android/web) + permission plumbing, memory watchdog, headless build cfg. Map: nav layer M0 API, landcover drape, bridge dz. Geodata: 250m dual-radar compositor (radar_volume) + KNMI sync. Docs for the route/glass/blur/shiny work. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
18 lines
340 B
Bash
Executable file
18 lines
340 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
if [[ $# -ne 1 ]]; then
|
|
echo "usage: $(basename "$0") <script.ps1>" >&2
|
|
exit 2
|
|
fi
|
|
|
|
SCRIPT_PATH="$1"
|
|
STAGED_PATH="/tmp/codex_win_remote.ps1"
|
|
|
|
if [[ ! -f "$SCRIPT_PATH" ]]; then
|
|
echo "missing script file: $SCRIPT_PATH" >&2
|
|
exit 1
|
|
fi
|
|
|
|
cp "$SCRIPT_PATH" "$STAGED_PATH"
|
|
echo "$STAGED_PATH"
|