Pure rename of the named production-isolation socket to match the product brand (Mosaic Fleet), per Jason. Behavior is identical — only the socket NAME changes. - 6 example presets: socket_name: mosaic-factory → mosaic-fleet - fleet.ts: DEFAULT_SOCKET_NAME = 'mosaic-fleet' (+ all literals) - systemd units + READMEs, roster.schema.json, start-agent-session.sh - docs/guides + fleet PRD/TASKS + scratchpads; tests updated The PoC roster is socket-LESS (default socket, no -L), so it is unaffected. docs/fleet/north-star.md is intentionally EXCLUDED (owned by the in-flight doctrine PR #629 — its mosaic-factory references are renamed there to avoid a merge conflict). The live legacy canary fleet still running on the old socket is a separate retire/migrate op, not this PR. Single find/replace — target trivially swappable if the brand is reconsidered. Verified: 172 fleet + onboarding tests green; tsc/eslint/prettier/sanitize clean. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EsgTQzV5YUGk1JtCLP4B83
58 lines
1.8 KiB
Markdown
58 lines
1.8 KiB
Markdown
# Mosaic tmux Fleet PoC
|
|
|
|
This directory contains the first durable tmux-backed fleet primitives for the
|
|
Mosaic software-factory model.
|
|
|
|
The lifecycle model follows the organization-neutral AI Guide playbook
|
|
`mosaicstack/aiguide:playbooks/tmux-fleet.md` (commit `2a0b0b5`): a dedicated
|
|
holder owns the tmux server/socket; agent units join it and stop only their own
|
|
exact-match session.
|
|
|
|
## Layout
|
|
|
|
- `mosaic-tmux-holder.service` — user-mode holder that owns the named tmux server.
|
|
- `mosaic-agent@.service` — user-mode template for one reusable agent session.
|
|
- `test-fleet-units.sh` — validates unit syntax and required relationships.
|
|
|
|
The agent template calls:
|
|
|
|
```text
|
|
~/.config/mosaic/tools/fleet/start-agent-session.sh <agent-name>
|
|
```
|
|
|
|
which starts or reuses a tmux session on `MOSAIC_TMUX_SOCKET`.
|
|
|
|
## Local customization
|
|
|
|
Per-agent overrides live outside the package in:
|
|
|
|
```text
|
|
~/.config/mosaic/fleet/agents/<agent>.env
|
|
```
|
|
|
|
Example:
|
|
|
|
```dotenv
|
|
MOSAIC_TMUX_SOCKET=mosaic-fleet
|
|
MOSAIC_AGENT_RUNTIME=claude
|
|
MOSAIC_AGENT_WORKDIR=$HOME/src/your-project
|
|
# Optional escape hatch for PoC/canary agents:
|
|
# MOSAIC_AGENT_COMMAND=mosaic yolo claude
|
|
```
|
|
|
|
## Manual canary sequence
|
|
|
|
```bash
|
|
mkdir -p ~/.config/systemd/user ~/.config/mosaic/tools/fleet ~/.config/mosaic/fleet/agents
|
|
cp packages/mosaic/framework/systemd/user/mosaic-*.service ~/.config/systemd/user/
|
|
cp packages/mosaic/framework/tools/fleet/start-agent-session.sh ~/.config/mosaic/tools/fleet/
|
|
chmod +x ~/.config/mosaic/tools/fleet/start-agent-session.sh
|
|
systemctl --user daemon-reload
|
|
systemctl --user start mosaic-tmux-holder.service
|
|
systemctl --user start mosaic-agent@canary.service
|
|
tmux -L mosaic-fleet ls
|
|
```
|
|
|
|
Do not use `tmux kill-server` without `-L mosaic-fleet`; this pattern is meant
|
|
to avoid disturbing the user's default tmux server.
|