slice-tournament-zoo 0.5.6 → 0.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -13
- package/package.json +9 -1
- package/src/README.md +5 -5
package/README.md
CHANGED
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
</pre>
|
|
13
13
|
|
|
14
14
|
[](https://github.com/dr-robert-li/slice-tournament-zoo/actions/workflows/ci.yml)
|
|
15
|
-
[](
|
|
16
|
-
[](
|
|
15
|
+
[](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/LICENSE)
|
|
16
|
+
[](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/package.json)
|
|
17
17
|
|
|
18
18
|
</div>
|
|
19
19
|
|
|
@@ -87,7 +87,7 @@ needed (Node.js 20+ is the only requirement; the bundled copy fetches `tsx` via
|
|
|
87
87
|
`npx` on first use, so that first call needs network).
|
|
88
88
|
|
|
89
89
|
> Developing STZ itself, or running the engine without Claude Code? See
|
|
90
|
-
> [`docs/development/local-and-testing.md`](
|
|
90
|
+
> [`docs/development/local-and-testing.md`](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/docs/development/local-and-testing.md).
|
|
91
91
|
|
|
92
92
|
## Use
|
|
93
93
|
|
|
@@ -174,7 +174,7 @@ stz bridge project-dark-factory --root . --on # engage; --off to disengage
|
|
|
174
174
|
The toggle only flips the `darkFactory` flag in the run config — it never resets
|
|
175
175
|
your fan-out / models / strictness. `project-status` hoists the flag to the top
|
|
176
176
|
level, so engaging it between phases takes effect immediately. See
|
|
177
|
-
[`docs/development/dark-factory.md`](docs/development/dark-factory.md) for the full
|
|
177
|
+
[`docs/development/dark-factory.md`](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/docs/development/dark-factory.md) for the full
|
|
178
178
|
contract.
|
|
179
179
|
|
|
180
180
|
The DAG ordering and per-slice seeding are backed by the deterministic
|
|
@@ -187,7 +187,7 @@ any slice runs. When `/stz:slice` seeds the DAG, each slice inherits those early
|
|
|
187
187
|
phases as done, leaving only the tournament half for `/stz:run`. Project status
|
|
188
188
|
is derived from each slice's own `state.json`, so an interrupted pipeline resumes
|
|
189
189
|
by re-reading state. A worked run of the front phases (a `slugify` library) lives
|
|
190
|
-
in [`examples/full-pipeline/`](
|
|
190
|
+
in [`examples/full-pipeline/`](https://github.com/dr-robert-li/slice-tournament-zoo/tree/main/examples/full-pipeline).
|
|
191
191
|
|
|
192
192
|
### Run a slice as a tournament (in Claude Code)
|
|
193
193
|
|
|
@@ -341,17 +341,17 @@ split above is the real in-session flow.
|
|
|
341
341
|
For contributors and anyone going past day-to-day operation:
|
|
342
342
|
|
|
343
343
|
- **Contributing** — setup, the architecture rule, the quality bar:
|
|
344
|
-
[`CONTRIBUTING.md`](
|
|
345
|
-
- **Source layout** — the `src/` module map: [`src/README.md`](
|
|
344
|
+
[`CONTRIBUTING.md`](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/CONTRIBUTING.md).
|
|
345
|
+
- **Source layout** — the `src/` module map: [`src/README.md`](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/src/README.md).
|
|
346
346
|
- **Local development & testing** — run the engine without Claude Code, the mock
|
|
347
|
-
pipeline, CI checks: [`docs/development/local-and-testing.md`](
|
|
347
|
+
pipeline, CI checks: [`docs/development/local-and-testing.md`](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/docs/development/local-and-testing.md).
|
|
348
348
|
- **The bridge CLI** — the deterministic `stz bridge` subcommands:
|
|
349
|
-
[`docs/development/bridge-cli.md`](
|
|
349
|
+
[`docs/development/bridge-cli.md`](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/docs/development/bridge-cli.md).
|
|
350
350
|
- **Sealed-suite integrity** — the guide-vs-sensor contract behind the frozen
|
|
351
|
-
held-out suite: [`docs/development/sealed-suite.md`](
|
|
352
|
-
- **Requirement-to-test mapping** — [`docs/TESTPLAN.md`](
|
|
353
|
-
- **What is real versus deferred** — [`docs/AS-BUILT.md`](
|
|
351
|
+
held-out suite: [`docs/development/sealed-suite.md`](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/docs/development/sealed-suite.md).
|
|
352
|
+
- **Requirement-to-test mapping** — [`docs/TESTPLAN.md`](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/docs/TESTPLAN.md).
|
|
353
|
+
- **What is real versus deferred** — [`docs/AS-BUILT.md`](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/docs/AS-BUILT.md).
|
|
354
354
|
|
|
355
355
|
## License
|
|
356
356
|
|
|
357
|
-
[Apache-2.0](
|
|
357
|
+
[Apache-2.0](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/LICENSE).
|
package/package.json
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slice-tournament-zoo",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.7",
|
|
4
4
|
"description": "STZ: a contract-bounded slice pipeline that implements each slice adversarially via an N-specimen tournament with frozen sealed tests, GRPO-style selection, layered anti-reward-hacking, and a replayable markdown audit trail.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
|
+
"homepage": "https://github.com/dr-robert-li/slice-tournament-zoo#readme",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/dr-robert-li/slice-tournament-zoo.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/dr-robert-li/slice-tournament-zoo/issues"
|
|
13
|
+
},
|
|
6
14
|
"type": "module",
|
|
7
15
|
"bin": {
|
|
8
16
|
"stz": "bin/stz.mjs"
|
package/src/README.md
CHANGED
|
@@ -9,11 +9,11 @@ per-slice and project subcommands).
|
|
|
9
9
|
|
|
10
10
|
The `mock/` subfolder is the no-network testing harness (the `stz run` demo):
|
|
11
11
|
its orchestrator, the model-layer seam, and the deterministic mock. Not part of
|
|
12
|
-
the production path — see [`mock/`](
|
|
12
|
+
the production path — see [`mock/`](https://github.com/dr-robert-li/slice-tournament-zoo/tree/main/src/mock).
|
|
13
13
|
|
|
14
14
|
## Further reading
|
|
15
15
|
|
|
16
|
-
- The requirement-to-test mapping is in [`docs/TESTPLAN.md`](
|
|
17
|
-
- What is real versus deferred is in [`docs/AS-BUILT.md`](
|
|
18
|
-
- Running the engine locally / in CI: [`docs/development/local-and-testing.md`](
|
|
19
|
-
- The deterministic bridge CLI: [`docs/development/bridge-cli.md`](
|
|
16
|
+
- The requirement-to-test mapping is in [`docs/TESTPLAN.md`](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/docs/TESTPLAN.md).
|
|
17
|
+
- What is real versus deferred is in [`docs/AS-BUILT.md`](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/docs/AS-BUILT.md).
|
|
18
|
+
- Running the engine locally / in CI: [`docs/development/local-and-testing.md`](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/docs/development/local-and-testing.md).
|
|
19
|
+
- The deterministic bridge CLI: [`docs/development/bridge-cli.md`](https://github.com/dr-robert-li/slice-tournament-zoo/blob/main/docs/development/bridge-cli.md).
|