tasks 1-3

This commit is contained in:
2026-06-19 18:42:42 +02:00
parent 223b9831c5
commit eec439cb39
7 changed files with 845 additions and 38 deletions
+7 -23
View File
@@ -5,10 +5,9 @@ alwaysApply: true
# sow-tools / Crucible Agent Guide
This repo owns the **builder logic** for the migration: one Go module
This repo owns the **builder logic:** one Go module
(`git.westgate.pw/ShadowsOverWestgate/sow-tools`) producing the `crucible`
dispatcher and the `crucible-<name>` binaries (D11). Read
`../AGENTS.md` (migration hub) and `../../KICKOFF_PROMPT.md` first.
dispatcher and the `crucible-<name>` binaries.
## What this repo owns / does not own
@@ -20,19 +19,11 @@ is `sow-platform`).
## Rules
1. **Migrated logic, not a fresh rewrite.** The `internal/` packages (`app`,
`pipeline`, `project`, `erf`, `gff`, `topdata`, `music`, `changelog`,
`validator`) were folded in from `gitea/sow-tools` at cutover; wired builders
delegate to `internal/app`'s command surface. Keep them in step with upstream
fixes rather than diverging silently.
2. **Fail closed, never fake.** A builder with no migrated logic yet (`depot`)
1. **Fail closed, never fake.** A builder with no migrated logic yet (`depot`)
exits `70`. Do not stub a builder to emit a placeholder artifact.
3. **Binaries are not committed.** They are CI artifacts / image layers (D19).
2. **Binaries are not committed.** They are CI artifacts / image layers.
`/bin/`, `*.exe`, `nwn-tool`, `sow-toolkit` are gitignored.
4. **No home-dir / `NWN_ROOT` guessing.** Builders take roots explicitly via
flag or env (project resolution is CWD-based, never `$HOME`). See
[`docs/consumer-contract.md`](docs/consumer-contract.md).
5. **The registry is the command surface.** `internal/dispatch.Registry` is the
3. **The registry is the command surface.** `internal/dispatch.Registry` is the
single source of truth; keep it in sync with `cmd/` and
[`docs/command-surface.md`](docs/command-surface.md). Adding a builder = a
`cmd/crucible-<name>/main.go` shim + a `Registry` entry + a doc row.
@@ -40,11 +31,8 @@ is `sow-platform`).
## Wiring a builder
1. Ensure the relevant `internal/` package(s) cover the work.
2. Add the legacy command(s) to the builder's `Legacy`/`Extra` set and set
`Wired: true` in `internal/dispatch`; the dispatcher delegates to
`app.Run`. `depot` is the remaining unwired builder.
3. Add tests; keep outputs deterministic (same input → same bytes).
4. `make check` must stay green; update `make smoke` to expect the wired exit.
2. Add tests; keep outputs deterministic (same input → same bytes).
3. `make check` must stay green; update `make smoke` to expect the wired exit.
## Commands
@@ -54,7 +42,3 @@ make build # cmd/* -> ./bin
make smoke # assert fail-closed contract
make image # crucible:<sha>
```
## Git
Never commit, branch, or push. Suggest a commit message; let the operator do it.