nexu-io/open-design

build-test

Run the project's build / typecheck / lint / test commands and emit the build.passing + tests.passing signals devloop convergence reads.

67Collecting
See how to use itView GitHub source
npx skills add https://github.com/nexu-io/open-design --skill "plugins/_official/atoms/build-test"
Automated source guideTestingStandard source

Source checked Jul 28, 2026·Refresh due Oct 26, 2026

Reorganized from the pinned upstream SKILL.md

Source-grounded testing guide: build-test

Spec §20.2 / §22.4: the "subjective critique-theater panel" is not enough on its own — a code-migration / tune-collab run must prove the build still passes. This atom shells out to the project's declared test commands and emits structured signals the devloop's until evaluator re…

npx skills add https://github.com/nexu-io/open-design --skill "plugins/_official/atoms/build-test"
Check the pinned source

The pinned source supports a structured brief, but not an expanded tutorial. Only detected inputs, outputs, and sections are shown.

295 source words · 6 usable sections

Test context

  • The active target stack (recorded in code/index.json +
  • The user's optional override (od plugin run --input
  • - The active target stack (recorded in code/index.json + plan.md's targetStack block). - The user's optional override (od plugin run --input testCommand='pnpm test').

Test artifacts

  • build.passing: boolean — the typecheck command exited 0.
  • tests.passing: boolean — the test command exited 0.
  • The atom emits two signals the devloop reads:

Testing workflow

Read build-test through these 4 source sections

Sections are extracted automatically from the pinned SKILL.md and link back to the source.

01

Inputs

The active target stack (recorded in code/index.json +

SKILL.md · Inputs
The active target stack (recorded in code/index.json +The user's optional override (od plugin run --input- The active target stack (recorded in code/index.json + plan.md's targetStack block). - The user's optional override (od plugin run --input testCommand='pnpm test').
02

Default commands by framework

Review the “Default commands by framework” section in the pinned source before continuing.

SKILL.md · Default commands by framework
Review and apply the “Default commands by framework” source section.
03

Output

The atom emits two signals the devloop reads:

SKILL.md · Output
build.passing: boolean — the typecheck command exited 0.tests.passing: boolean — the test command exited 0.The atom emits two signals the devloop reads:

Verification checklist

Verify each item before delivery

The source section “Inputs” has been checked.

The source section “Default commands by framework” has been checked.

The source section “Output” has been checked.

The source section “Convergence” has been checked.

Source output checked: build.passing: boolean — the typecheck command exited 0.

Source output checked: tests.passing: boolean — the test command exited 0.

Choose a different workflow

When another Skill is the better fit

FAQ

What does the build-test source document cover?

Spec §20.2 / §22.4: the "subjective critique-theater panel" is not enough on its own — a code-migration / tune-collab run must prove the build still passes. This atom shells out to the project's declared test commands and emits structured signals the devloop's until evaluator re…

How do I install build-test?

The source record exposes this install command: npx skills add https://github.com/nexu-io/open-design --skill "plugins/_official/atoms/build-test". Inspect the command and pinned source before running it.

Repository stars
82,073
Repository forks
9,485
Quality
67/100
Source repository last pushed

Quality breakdown

Based on traceable docs and repository signals; stars are not treated as quality.

67/100
Documentation23/30
Specificity12/25
Maintenance20/20
Trust signals12/25

Compare before choosing

Related Agent Skills and source variants

These links are selected from shared tasks, functions, stacks, platforms, and same-name variants. Compare the source owner, documentation, permissions, and maintenance signals.

View original Skill.mdThis page is parsed directly from the repository SKILL.md without editorial rewriting. Collected: Jul 28, 2026 · about 2 min

Build test

Spec §20.2 / §22.4: the "subjective critique-theater panel" is not enough on its own — a code-migration / tune-collab run must prove the build still passes. This atom shells out to the project's declared test commands and emits structured signals the devloop's until evaluator reads.

Inputs

  • The active target stack (recorded in code/index.json + plan.md's targetStack block).
  • The user's optional override (od plugin run --input testCommand='pnpm test').

Default commands by framework

frameworktypechecktest
nextpnpm typecheckpnpm test
vitepnpm typecheckpnpm test
remixpnpm typecheckpnpm test
custom(read from package.json.scripts)(read from package.json.scripts)

Output

project-cwd/
└── critique/
    ├── build-test.json   # { build: 'passing' | 'failing', tests: 'passing' | 'failing' | 'skipped', durationMs, commandsRun: [...], failures: [...] }
    └── build-test.log    # raw stdout / stderr (truncated to the runner's logBudgetBytes limit, default 1 MiB)

The atom emits two signals the devloop reads:

  • build.passing: boolean — the typecheck command exited 0.
  • tests.passing: boolean — the test command exited 0.

Plus the legacy critique.score so existing pipelines that read the score keep working: 5 when both pass, 3 when only build passes, 1 when both fail.

Convergence

Pipelines wire the atom into a devloop:

{
  "id": "verify",
  "atoms": ["patch-edit", "build-test"],
  "repeat": true,
  "until": "(build.passing && tests.passing) || iterations >= 8"
}

Anti-patterns the prompt fragment forbids

  • Running tests on a partially-edited working tree (the atom always runs after patch-edit, and only when plan.steps's current step is in completed state).
  • Suppressing test failures by changing test files; that violates the rewrite-plan ownership rule.
  • Setting tests: 'skipped' without a non-empty reason field.

Status

Implemented by the daemon runner in apps/daemon/src/plugins/atoms/build-test.ts. It executes the configured build and test commands, bounds runtime and captured logs, and persists the report and log outputs above.

Skill path
plugins/_official/atoms/build-test/SKILL.md
Commit SHA
89d6d4ef21ba
Repository license
Apache-2.0
Data collected