skill: note global naming and non-interactive shell gotchas#193
Open
daveonkels wants to merge 1 commit intoboldsoftware:mainfrom
Open
skill: note global naming and non-interactive shell gotchas#193daveonkels wants to merge 1 commit intoboldsoftware:mainfrom
daveonkels wants to merge 1 commit intoboldsoftware:mainfrom
Conversation
Add a short Naming section explaining that VM names are globally unique,
and the error message agents will see when they collide.
Extend the non-interactive shells section with two workarounds learned
from running provisioning scripts through agent harnesses:
- heredocs collapse when passed as a quoted argument to ssh; use
bash -s over stdin (or base64) instead
- ssh exe.dev ssh <vm> bypasses per-VM known_hosts entirely, which
is convenient for one-shot commands in non-interactive scripts
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
Two small additions to
skill/SKILL.md, both motivated by getting an agent productive against exe.dev for the first time:New "Naming" section. VM names are globally unique across customers. The first time an agent picks a generic slug (
app-test,demo-1, etc.) and sees the"this VM name is not available"error, it has no way to know whether it collided with one of its own VMs or someone else's. Three lines of skill text save a confused round-trip.Two extensions to "Working in non-interactive and sandboxed environments":
ssh <vm>.exe.xyz "<cmd>"from many shells. The fix isbash -sover stdin (or base64 transport for binaries / whitespace-sensitive payloads). Hit this multiple times when provisioning a VM via an agent harness.ssh exe.dev ssh <vm> "<cmd>"is a useful escape hatch for non-interactive scripts — the lobby's host key is already trusted, so there's no per-VMknown_hostsplumbing oraccept-newprompt. It's already documented inssh exe.dev help, but pulling it forward into the skill (alongside the existingaccept-newadvice) makes it discoverable for agents that read the skill but not the help.Tone matches the existing skill (terse, no list-of-pitfalls, brief explanation of the why).
Diff
+18 lines, 0 deletions. No changes outside
skill/SKILL.md.Test plan
ssh exe.devCLI (Trial plan).