The ledger prints a queue section above the weekly table. It checks four things: - open issues named by done rows; - owner registrations for active rows; - closed issues for done rows; - the age of required rows. The result is fail, incomplete or reduced pass. It uses its own Gitea budget of the open list plus at most 10 lookups. A full open page counts only while an issue in some row's closes has no known state (lead decision 40). T3 seats are exempt per run with --unsupported-runtime. The weekly routine is in packages/ledger/README.md. Built by Darkwing (build.patch ab1f12ca, manifest 0b20bbca). Filbert reviewed it: round 1 81f26f2e asked for changes (C1, ISO requiredSince never aged); round 2 ce8ce150 approved. Also carries Filbert's plan amendment for decision 40 (68a25ffe). Co-Authored-By: Claude Opus 5.5 <[email protected]>
Darkwing development TUI
From any terminal, run:
/home/jwoltje/src/mosaic-stack-dev-test/agents/darkwing/launch.sh
The agent launcher is a thin shim to scripts/agent.sh --host-dev darkwing,
forwarding all arguments unchanged. scripts/agent.sh is the common entry
point; scripts/agent-host-dev.sh implements its native development mode.
The host launcher opens the repository as Darkwing's workspace.
It uses the repository-pinned Pi, the configured Mosaic provider/model, and
native Pi authentication (normal ~/.pi/agent, or PI_CODING_AGENT_DIR if
explicitly set). It never copies credentials. Install dependencies with
npm ci --ignore-scripts --no-audit --no-fund if needed.
--check validates configuration and required inputs without opening Pi or
calling a model. --fresh starts a new conversation without deleting earlier
ones. Normal launches continue the latest conversation under
.pi/state/darkwing/sessions/; the first launch creates one. A launcher lock
rejects simultaneous launches through this script. It does not exclude Pi
processes started another way. Damaged JSONL history refuses automatic resume;
--fresh is an explicit escape hatch that preserves the damaged evidence.
The current files are combined into a private launch snapshot under
.pi/state/darkwing/launches/:
contracts/CONSTITUTION.mdandcontracts/STANDARDS.mdagents/darkwing/SOUL.md<configured dataRoot>/user/USER.md, the deployment's live user profile- the repository's
AGENTS.mdand Darkwing'sCONTEXT.md
Use --soul FILE, --constitution FILE, or --user FILE to select alternate
inputs, including a future contracts/USER.md. Relative paths resolve from
the repository root. Missing or empty inputs refuse launch. Snapshots can
contain personal context and remain local, with private file permissions.
Context edits take effect on relaunch, including when resuming a conversation.
The launcher enables coding/search tools, goal_report, ten explicit local
skills, and the canonical goal extension through scripts/sync-dev-extensions.sh.
Ambient context, skills, extensions, templates, and themes are disabled.
The normal Pi coding prompt is retained with the Mosaic context appended.
Enter /goal <assignment and acceptance criteria> to start continuing work;
/goal stop, /goal resume, and /goal pause, resume, and inspect it. A new
process does not automatically adopt a previous process's goal.
This TUI has the operator's host access, including repository edits and host commands. Its tool list is not OS isolation. It creates no managed role or fleet registration. Worker dispatch still uses the governed Mosaic task runner. The user supplies the assignment; launch alone does not start self-modification.
Deployment findings
The existing scripts/agent.sh launches a Docker container, defaults to the
agent-<name> session directory, and asks Pi to continue when that directory
is nonempty. Its default workspace is <dataRoot>/workspaces/<name>, not this
checkout. src/load-contracts.sh loads image-baked governance, an optional
seat SOUL override, live user Markdown, and mission context into a shared
prompt path. A seat override requires agent.json; a standalone SOUL is not
discovered. adapters/pi/adapter.sh disables extensions. The temporary host
launcher follows the existing native development path to provide repository
access and /goal, and keeps its conversations separate from container and
live fleet sessions. It does not invoke release alignment on startup.