惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
宝玉的分享
宝玉的分享
量子位
Recent Announcements
Recent Announcements
Martin Fowler
Martin Fowler
J
Java Code Geeks
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
S
SegmentFault 最新的问题
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
小众软件
小众软件
The Cloudflare Blog
Y
Y Combinator Blog
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
IT之家
IT之家

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
chore(agents): prefer local validation over testbox · ope...
vincentkoc · 2026-04-22 · via Recent Commits to openclaw:main

@@ -1,14 +1,26 @@

11

---

22

name: blacksmith-testbox

33

description: >

4-

Validate code changes against real CI. Use for all tests, builds,

5-

migrations, and any command that depends on secrets or services.

6-

Use when testing, validating, checking, verifying, or before any

7-

commit or push.

4+

Validate code changes against real CI when local execution is not

5+

enough. Use for CI-parity checks, secrets/services, migrations, or

6+

builds/tests that cannot run reliably on the local machine. Do not

7+

replace repo-documented local test/build loops just because this

8+

skill exists.

89

---

9101011

# Blacksmith Testbox

111213+

## Scope

14+15+

Use Testbox when you need remote CI parity, injected secrets, hosted services,

16+

or an OS/runtime image that your local machine cannot provide cheaply.

17+18+

Do not default to Testbox for every local test/build loop. If the repo has

19+

documented local commands for normal iteration, use those first so you keep

20+

warm caches, local build state, and fast feedback.

21+22+

Testbox is the expensive path. Reach for it deliberately.

23+1224

## Install the CLI

13251426

If `blacksmith` is not installed, install it:

@@ -55,10 +67,41 @@ Optional flags:

55675668

- `--dashboard-url <url>` — Override dashboard URL (e.g. for staging)

576970+

## Decide first: local or Testbox

71+72+

Before warming anything up, check the repo's own instructions.

73+74+

Prefer local commands when:

75+76+

- the repo documents a supported local test/build workflow

77+

- you are iterating on unit tests, lint, typecheck, formatting, or other

78+

local-only validation

79+

- the value comes from warm local caches and fast repeat runs

80+

- the command does not need remote secrets, hosted services, or CI-only images

81+82+

Prefer Testbox when:

83+84+

- the repo explicitly requires CI-parity or remote validation

85+

- the command needs secrets, service containers, or provisioned infra

86+

- you are reproducing CI-only failures

87+

- you need the exact workflow image/job environment from GitHub Actions

88+89+

For OpenClaw specifically, normal local iteration should stay local:

90+91+

- `pnpm check:changed`

92+

- `pnpm test:changed`

93+

- `pnpm test <path-or-filter>`

94+

- `pnpm test:serial`

95+

- `pnpm build`

96+97+

Only use Testbox in OpenClaw when the user explicitly wants CI-parity or the

98+

check truly depends on remote secrets/services that the local repo loop cannot

99+

provide.

100+58101

## Setup: Warmup before coding

5910260-

Before writing any code, warm up a testbox. This returns an ID instantly

61-

and boots the CI environment in the background while you work:

103+

If you decided Testbox is actually warranted, warm one up early. This returns

104+

an ID instantly and boots the CI environment in the background while you work:

6210563106

blacksmith testbox warmup ci-check-testbox.yml

64107

# → tbx_01jkz5b3t9...

@@ -177,39 +220,45 @@ to the remote testbox before executing your command:

177220

testbox. The sync model keeps the remote in lockstep with your local managed

178221

file set.

179222180-

## CRITICAL: Never run tests locally

223+

## CRITICAL: Do not ban local tests

224+225+

Do not assume local validation is forbidden. Many repos intentionally invest in

226+

fast, warm local loops, and forcing every run through Testbox destroys that

227+

advantage.

228+229+

Use Testbox for the checks that actually need it: remote parity, secrets,

230+

services, CI-only runners, or reproducibility against the workflow image.

181231182-

Your local machine does not have the secrets, services, or environment

183-

parity needed to validate changes reliably. Every test run, migration,

184-

build, or integration check MUST go through Testbox.

232+

If the repo says local tests/builds are the normal path, follow the repo.

185233186234

## When to use

187235188-

ALWAYS use Testbox when:

236+

Use Testbox when:

189237190-

- Running any test (unit, integration, e2e)

191-

- Running database migrations

192-

- Building the project to check for compile errors

193-

- Running any command that depends on secrets or environment variables

194-

- Validating changes before committing

238+

- running database migrations or destructive environment checks

239+

- running commands that depend on secrets or environment variables not present locally

240+

- reproducing CI-only failures or validating against the workflow image

241+

- validating behavior that needs provisioned services or remote runners

242+

- doing a final parity check before commit/push when the repo or user wants that

195243196-

The ONLY exception is trivial checks with zero external dependencies

197-

(e.g., running a linter or formatter locally).

244+

Trim that list based on repo guidance. If the repo documents supported local

245+

tests/builds, prefer local for routine iteration and keep Testbox for the

246+

checks that need parity or remote state.

198247199248

## Workflow

200249201-

1. Warm up immediately when you receive a coding task:

250+

1. Decide whether the repo's local loop is the right default.

251+

2. Only if Testbox is warranted, warm up early:

202252

`blacksmith testbox warmup ci-check-testbox.yml` → save the ID

203-

2. Write code while the testbox boots in the background.

204-

3. Run tests (the CLI auto-waits if the testbox isn't ready yet):

253+

3. Write code while the testbox boots in the background.

254+

4. Run the remote command when needed:

205255

`blacksmith testbox run --id <ID> "npm test"`

206-

4. If tests fail, fix code and re-run (fast — same warm testbox, only

207-

changed files are synced).

208-

5. If you changed dependency manifests (package.json, etc.), prepend

256+

5. If tests fail, fix code and re-run against the same warm box.

257+

6. If you changed dependency manifests (package.json, etc.), prepend

209258

the install command: `blacksmith testbox run --id <ID> "npm install && npm test"`

210-

6. If you need artifacts (coverage reports, build outputs, etc.), download them:

259+

7. If you need artifacts (coverage reports, build outputs, etc.), download them:

211260

`blacksmith testbox download --id <ID> coverage/ ./coverage/`

212-

7. Once green, commit and push.

261+

8. Once green, commit and push.

213262214263

## OpenClaw full test suite

215264