Crabbox and Blacksmith Testbox remote testing: isolation, cross-platform E2E, diagnostics, cleanup.
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-crabbox-5b65d5ada049 ,按照其中的说明把「crabbox」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Remote and clean-machine proof. Packages. Docker. Live providers. Desktop. Cross-OS. The consumer repository owns when its validation needs a remote environment; Crabbox availability alone is not a reason to offload local work.
Backends:
blacksmith-testbox: trusted maintainer source. Prepared CI. tbx_....aws: direct brokered Crabbox. Fresh PRs. Custom sync/env/capture. cbx_....local-container: Docker fallback. Not remote proof.ssh: existing operator host. macOS/Windows/WSL2.Always report provider, id, run URL, command, result. Never call Testbox “AWS Crabbox.”
This canonical skill owns portable Crabbox policy and CLI operations only.
Consumer-specific setup belongs in that repository's AGENTS.md, package
scripts, hydration workflow, or another file outside the synchronized skill.
Resolve these placeholders from trusted repository instructions before running an example:
<check-command>: the repository's focused or broad validation command.<install-and-check-command>: its clean-container install plus validation.<trusted-bootstrap-script>: a maintainer-reviewed untrusted-PR bootstrap
stored outside the untrusted checkout.<container-image> and <owner/repo#number>: the consumer's runtime and PR.Never invent a missing command or copy a command from another consumer.
Routine use of the configured Crabbox/Testbox environment is part of completing the requested task; do not ask for separate approval. This includes creating, reusing and stopping task-owned leases, temporary state, and clean checkouts or worktrees needed for proof or a task-required Crabbox repair.
A dirty, missing or occupied checkout is a reason to use a clean task-owned checkout or worktree, not a permission blocker. Preserve existing checkouts, branches and unrelated edits. Keep source-trust, credential, production-access, budget and publication boundaries; routine-use approval does not waive them.
Source trust determines which providers are allowed. It does not select one.
Test size, expected duration, and hydration failure do not authorize a provider
override. Omit --provider for normal work. Add it only when the user requests
that backend or the proof specifically tests its semantics.
Run from repo root.
command -v crabbox
crabbox --version
crabbox config show --json | jq '{provider, profile, target}'
crabbox run --help | sed -n '1,100p'
command -v blacksmith
blacksmith --version
Set the checked installed binary once. A consumer may document a different trusted wrapper, but the shared skill never assumes a sibling checkout or repository-specific script.
export CRABBOX="$(command -v crabbox)"
test -n "$CRABBOX"
"$CRABBOX" --version
"$CRABBOX" config show --json | jq '{provider, profile, target}'
Read .crabbox.yaml and config show; the resolved provider can also come from
user or environment configuration. If the binary is missing, follow the
consumer's trusted install instructions. For a source build or repair, verify
the canonical upstream and use a clean task-owned checkout or worktree. Never
assume a sibling checkout is trusted or overwrite its unrelated work. Keep
task-specific builds separate from the operator's installed binary.
Use this section only when config show resolves blacksmith-testbox or the
user explicitly requested Testbox. These provider-neutral commands preserve the
resolved configuration; add --provider blacksmith-testbox only for that
explicit override.
One-shot heavy gate:
"$CRABBOX" run --timing-json -- CI=1 <check-command>
Several commands: warm once, save id, reuse, stop.
"$CRABBOX" warmup --keep --timing-json
"$CRABBOX" run --id <tbx_id> --timing-json -- <check-command>
"$CRABBOX" stop <tbx_id>
Rules:
bash -c, not bash -lc. Bash syntax support does
not require login startup; login profiles can change directories. Before
validation, assert the exact physical checkout and expected source/patch
inside the shell that runs it. A matching HEAD alone cannot prove dirty sync.--id runs. Never rely on
--no-sync to preserve a remote baseline: Blacksmith has no native bypass,
and released Crabbox versions can silently ignore the flag. An unchanged
intentional rerun is not a Testbox exception.--reclaim only deliberate checkout-path ownership transfer.warmup --ref; use branch/tag.blacksmith testbox list hides states. Use list --all or
status --id <tbx_id>.--id. No status --json.--fresh-pr, --full-resync, --script*,
--env-helper, capture/download flags.Blacksmith CLI 0.4.60 (verified 2026-09-19) needs a trailing / on the remote
directory argument to enable recursive SCP; otherwise it fails with
not a regular file. A local trailing slash does not help, and SCP may add /
in the error text even when the caller omitted it.
mkdir -p ./downloads
blacksmith testbox download --id <tbx_id> screenshots/ ./downloads/
Use an explicit destination: this writes ./downloads/screenshots/; omitting
it can duplicate the basename (screenshots/screenshots/). Reuse the task-owned
lease and existing key path (--ssh-private-key when needed). Verify the downloaded
tree and hashes; recheck this workaround after CLI upgrades.
Clean trusted default-branch checkout. Installed trusted Crabbox binary. Fresh
lease per reviewed full head SHA. No instance role. No Tailscale. No hydration.
Only CI forwarded. Trusted bootstrap uploaded beside --fresh-pr.
cd <clean-trusted-default-branch-checkout>
env -u CRABBOX_AWS_INSTANCE_PROFILE \
"$CRABBOX" config show --json | \
jq -e '.aws.instanceProfile == ""' >/dev/null
env -u CRABBOX_AWS_INSTANCE_PROFILE \
-u CRABBOX_TAILSCALE \
-u CRABBOX_TAILSCALE_AUTH_KEY \
-u CRABBOX_TAILSCALE_AUTH_KEY_ENV \
-u CRABBOX_TAILSCALE_EXIT_NODE \
-u CRABBOX_TAILSCALE_EXIT_NODE_ALLOW_LAN_ACCESS \
-u CRABBOX_TAILSCALE_HOSTNAME_TEMPLATE \
-u CRABBOX_TAILSCALE_TAGS \
"$CRABBOX" warmup \
--provider aws --network public --tailscale=false \
--tailscale-exit-node= \
--tailscale-exit-node-allow-lan-access=false \
--keep --timing-json
"$CRABBOX" inspect --provider aws --id <cbx_id> --json | \
jq -e '.network == "public" and .tailscale == null' >/dev/null
env -u CRABBOX_AWS_INSTANCE_PROFILE \
CRABBOX_ENV_ALLOW=CI \
"$CRABBOX" run \
--provider aws --id <cbx_id> \
--fresh-pr <owner/repo#number> \
--no-hydrate --timing-json \
--script <trusted-bootstrap-script> -- \
<expected_full_head_sha> <check-command>
env -u CRABBOX_AWS_INSTANCE_PROFILE \
"$CRABBOX" stop --provider aws <cbx_id>
The consumer-owned bootstrap proves the IMDSv2 IAM credential endpoint returns
404, verifies the full SHA, removes inherited runtime injection variables,
pins the repository toolchain, isolates HOME, installs, and tests.
Head moved? Stop. Rewarm. No reuse across revisions. No remote PR or no-role proof unavailable? Secretless fork CI. No exceptions.
Trusted direct run:
"$CRABBOX" run \
--provider aws \
--idle-timeout 90m --ttl 240m --timing-json \
--shell -- \
"<check-command>"
Focused:
"$CRABBOX" run \
--provider aws --timing-json --shell -- \
"<check-command>"
Stale sync: retry --full-resync once. Still bad: fresh lease. One-shot should
stop itself; after failure/interruption verify "$CRABBOX" list --provider aws.
Broker auth, not cloud keys:
"$CRABBOX" config show
"$CRABBOX" doctor
"$CRABBOX" whoami
"$CRABBOX" login --url <broker-url> --provider aws
Normal validation asking for AWS keys usually means wrong path.
--fresh-pr <owner/repo#123>: clean remote checkout. Add --apply-local-patch
only for intentional local fixup. Direct providers only.
Use local Docker only when the resolved configuration selects it or the user explicitly requests a local-container lane:
"$CRABBOX" run \
--provider local-container \
--local-container-image <container-image> \
--no-hydrate --fresh-pr <owner/repo#number> \
--timing-json --shell -- \
"<install-and-check-command>"
Report local-container; not AWS/Testbox. Keep --no-hydrate and use a
repository-local dependency cache when host-mounted caches cannot cross filesystems.
Prefer built-ins:
--preflight: target/workspace/tool probes.--debug --timing-json: sync, command, total timing.--script <file> / --script-stdin: safe multiline direct-provider command.--allow-env NAME + --env-from-profile <file>: exact direct-provider env.CRABBOX_ENV_ALLOW=NAME,...: exact ambient env allowlist.--capture-stdout, --capture-stderr: direct-provider local capture.--capture-on-fail: test artifacts. Treat as secret-bearing until reviewed.--keep-on-failure: retain failed lease for debugging.--results-auto / --junit <path>: structured failure digest.CRABBOX_PHASE:<name> lines: phase timing.Secrets: exact key only. One command. Never print. Never repo file. Never shell history. No safe injection path? Report live auth blocked. No fake-key upgrade to “live proof.”
“Test in Crabbox” means user path, not merely remote unit tests.
Route:
Before/after: same Testbox when practical. Detached temp worktrees under /tmp.
Never checkout refs in synced root. For native Testbox, prepare and compare both
revisions within one synced invocation; later runs sync the local checkout again.
Full-screen CLI: real PTY. Interactive Clack: exact arrows/Enter; raw search
typing can lie.
Use the consumer's documented temporary state/config directory so proof cannot mutate the operator's normal installation.
Static hosts:
"$CRABBOX" run --provider ssh --target macos \
--static-host <macos-host> -- <check-command>
"$CRABBOX" run --provider ssh --target windows --windows-mode normal \
--static-host <windows-host> -- pwsh -NoProfile -Command '<check-command>'
"$CRABBOX" run --provider ssh --target windows --windows-mode wsl2 \
--static-host <windows-host> -- <check-command>
Windows/WSL2: prefer Azure when advertised/configured. Native Windows uses OpenSSH + PowerShell + Git + tar. Actions hydration Linux-only.
Brokered macOS: paid EC2 Mac. First quota/no-spend preflight. No silent substitution for Linux proof.
"$CRABBOX" admin hosts quota --provider aws --target macos \
--region eu-west-1 --type mac2.metal --json
"$CRABBOX" admin hosts allocate --provider aws --target macos \
--region eu-west-1 --type mac2.metal --dry-run --json
Human desktop: WebVNC preferred when the resolved provider supports it. Do not change providers only to gain desktop support.
"$CRABBOX" warmup --desktop --browser --keep
"$CRABBOX" desktop launch --id <id> \
--browser --url https://example.com --webvnc --open --take-control
"$CRABBOX" desktop doctor --id <id>
"$CRABBOX" webvnc status --id <id>
"$CRABBOX" artifacts collect --id <id> --all --output artifacts/<slug>
Before handoff, prove CLI/app from neutral ~:
"$CRABBOX" run --id <id> --shell -- \
"cd ~ && command -v <command> && <command> --version"
Visible desktop alone proves nothing. Keep browser windowed unless capture task. Never commit proof assets to product repo.
Identify layer: wrapper, provider, hydration, sync, SSH, command.
"$CRABBOX" doctor
"$CRABBOX" status --id <id> --wait
"$CRABBOX" inspect --id <id> --json
"$CRABBOX" history --limit 20
"$CRABBOX" logs <run_id>
"$CRABBOX" results <run_id>
blacksmith testbox list --all
blacksmith testbox status --id <tbx_id>
config show, doctor, whoami.--debug --timing-json, then --full-resync once.Crabbox stop does not accept --timing-json.
Crabbox stays generic: lease, sync, command, logs, results, timing, cleanup. Consumer setup belongs in that repository's hydration workflow and scripts.