feat(deploy): linux bring-up templates for observer/driver/slave + compose test#1
Merged
Conversation
…mpose smoke test
Promote the host-native installers out of `tests/prod_test/linux-{driver,slave}/`
(which were gitignored under the prod_test dir) into a top-level
`multi-agent/deploy/linux/` tree, refresh stale bits, and add an observer
template plus a docker-compose end-to-end deploy test.
deploy/linux/observer/ — new: systemd-hardened observer-server install
deploy/linux/driver/ — moved + `--observer-url` / `--workspace` flags + arm64 support
deploy/linux/slave/ — moved + `--observer-url` / `--workspace` flags + `file` skill in template
deploy/linux/compose-test/ — docker-compose stack that runs all three installers
against a local observer; entrypoints surface the device-code "join workspace"
URL each agent prints on first start.
Templates now use `__OBSERVER_URL__` / `__WORKSPACE_ID__` placeholders instead
of hardcoded prod-test values; install.sh `SERVICE_USER` defaults via
`${USER:-$(id -un)}` so it works in containers without a `USER` env var.
Pre-built binaries are published at the v0.0.1 release; install.sh prints both
a `curl` download command and a `go build` command in its missing-binary error.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
- multiagent/references/driver-tools.md: new "Slave File Tools" section covering read_slave_file / write_slave_file / stat_slave_file, including blob_handle reuse for cross-slave copy without re-fetching. - multiagent/SKILL.md & references/slave-skills.md & orchestration-patterns.md: warn against hand-rolling `cat <<EOF`/base64-in-bash payloads when the slave advertises `file`; prefer write_slave_file/read_slave_file. - mcp-acceptance/SKILL.md: document the file-tools alternative to remote_run.py with a tradeoff table (cleanup, re-run cost, inspection). - scaffold-mcp-server/SKILL.md: cross-reference write_slave_file as the preferred path for shipping generated server source to the slave. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
multi-agent/deploy/linux/with three bring-up templates (observer / driver / slave), promoted out of the gitignoredtests/prod_test/linux-*location.deploy/linux/compose-test/docker-compose stack that runs all three installers against a local observer and surfaces the device-code "join workspace" URL each agent prints on first start.Pre-built binaries for all four agent binaries (driver, slave, observer × amd64/arm64) are already published at the v0.0.1 release. install.sh prints both a `curl` download command and the `go build` invocation in its missing-binary error.
Test plan
🤖 Generated with Claude Code