atmos-specs-impllisted
Install: claude install-skill AruNi-01/atmos
# Atmos Specs · Implementation
This skill is the bridge from specs to shipped production code. You execute what TECH.md designed, you keep the regression gate green, and you do it in the layer order Atmos expects. Comprehensive test authoring for the spec (turning TEST.md scenarios into runnable tests) belongs to the sibling skill `atmos-specs-test-run`, which should run immediately after implementation for complete spec work unless the user explicitly asks to stop after production code.
## What this skill owns — and what it does not
- **Owns**: real production code in `crates/`, `apps/`, `packages/`, plus schema/migration/feature-flag files TECH.md names.
- **Owns**: compile + lint + existing-test regression gate on every chunk (`cargo check`, `cargo clippy`, `bun run typecheck`, `just lint`, targeted `cargo test` / `bun test` for pre-existing suites near the change).
- **May touch `TECH.md`**: only when implementation reveals a decision in TECH that is wrong or ambiguous. When that happens, update TECH alongside the code and call it out.
- **Does not own** authoring the scenario-level test suite described in TEST.md. Hand that off to `atmos-specs-test-run` after production code. In-line "smoke" tests that are *the cheapest way to prove the code you just wrote compiles and runs* are fine (and encouraged), but the systematic TEST.md coverage pass is not this skill's job.
- **Does not touch `PRD.md` / `BRAINSTORM.md`** — if PRD is wrong, stop and tell the user.
Why: separa