- agents/sage/ launch files committed after Dewey's review (R1 revise, R2 approve). The launcher test now covers sage with its zai/glm-5.3 high pin. The README states the lead role and its limits, and the seat reads but never writes the old DYOR records under ~/.mosaic. - N6 (Dewey authored, Sage reviewed against pins): seat personas and the Rocko launcher name Sage as project lead and Darkwing as a collaborating engineering seat, per Jason's 2026-09-26 ruling. - docs/plans/2026-09-26_lead-decisions.md: the push, no merge into next and its conditions, the board restart, queue-as-data rulings, Gate F waiting on a T3 source, and what stays with Jason. Launcher tests 6/6 and 1/1, eight suites green. Not pushed. Co-Authored-By: Claude Opus 5.5 <[email protected]>
11 lines
580 B
Bash
Executable File
11 lines
580 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Sage's native development mode through the Mosaic agent entry point.
|
|
set -euo pipefail
|
|
REPO="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
# Register this seat with the control board (packages/seat) unless already
|
|
# registered by `mosaic launch` or only running the checks.
|
|
if [ -z "${MOSAIC_LAUNCH_REGISTERED:-}" ] && ! printf '%s\n' "$@" | grep -qx -- '--check'; then
|
|
exec "$REPO/scripts/mosaic" launch --repo "$REPO" --harness pi sage -- "$@"
|
|
fi
|
|
exec "$REPO/scripts/agent.sh" --host-dev sage --provider zai --model glm-5.3 --thinking high "$@"
|