code-build

Routes approved implementation plans to scope-owning agents and verifies test results.

4|Updated Aug 8, 2026
One-click install
npx skills add https://github.com/alexeyshishin/as-skill --skill code-build-alexeyshishin
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-build
Source: https://github.com/alexeyshishin/as-skill/tree/main/domains/code/skills/code-build
Command: npx skills add https://github.com/alexeyshishin/as-skill --skill code-build-alexeyshishin

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? After a plan is approved, teams still need to split the work across frontend, backend, devops, and mobile owners, run the tests, and produce an honest implementation report. Doing this by hand risks missed files, unverified claims of success, and lost cross-layer contract notes. ## Core Features & Use Cases - Scope-based routing: Reads the plan's affected_files and matches each file to the executing agent defined in the project's AGENTS.md table, asking the user when no owner matches. - Parallel agent orchestration: Spawns one Task call per matched executing agent, passing contract notes between dependent layers (e.g., backend api_changes to frontend). - Verified reporting: Refuses to claim success when any agent reports status: blocked or a failing test, and writes a per-agent build report to swarm-report/<slug>-build.md. - Use Case: After running /code-plan for a feature touching API and UI, invoke /code-build <slug> to have backend and frontend agents implement their scopes in parallel and receive a test-backed build report. ## Quick Start Run /code-build with the slug of an existing approved plan, for example by asking the assistant to execute /code-build user-auth after the plan file exists in swarm-report.

Frequently Asked Questions about code-build

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I implement an approved plan across multiple code layers?

Run /code-build <slug> after /code-plan has produced swarm-report/<slug>-plan.md. The skill matches each affected file to the owning executing agent in AGENTS.md, spawns those agents in parallel, and writes a build report with real test results.

What happens if I run code-build before code-plan?

The skill aborts immediately. It looks for swarm-report/<slug>-plan.md and, if the file is missing, tells you to run /code-plan first, since it never operates without an approved plan.

Does code-build edit code itself?

No. It is an orchestrator that only routes work. All code changes are made by the spawned executing agents (frontend, backend, devops, mobile), each following its own agent definition file.

What happens when a test fails during the build?

The skill does not claim success. It reports the failing output verbatim, stops, and suggests retrying /code-build after the fix; the separate test-gate Stop hook also blocks unverified completion claims.

What if a file in the plan has no matching agent?

The skill does not guess an owner. It asks the user which executing agent should handle the unmatched file before proceeding with the build.