@its-not-rocket-science/ananke 0.1.61 → 0.1.62
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/CHANGELOG.md +13 -0
- package/README.md +3 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,19 @@ Versioning follows [Semantic Versioning](https://semver.org/).
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [0.1.62] — 2026-04-01
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- **PM-3 — Supported-Recipes Matrix (complete):**
|
|
14
|
+
- `docs/recipes-matrix.md` (new, auto-generated): 36 recipes across 6 domains (Tactical ⚔️, Campaign 🏰, Content 📦, Renderer 🖼️, Multiplayer 🌐, Tooling 🔧). Each row maps a use case to recommended packages, stability tier (🟢 Stable / 🟡 Experimental), runnable npm script, performance envelope, and save/replay compatibility status. Domain tables, summary counts, and a quick-reference "I want to…" table at the bottom.
|
|
15
|
+
- `tools/generate-recipes-matrix.ts` (new): structured recipe catalogue as TypeScript array; outputs `docs/recipes-matrix.md` deterministically. Run `npm run generate-recipes-matrix` to refresh.
|
|
16
|
+
- `npm run generate-recipes-matrix` script added.
|
|
17
|
+
- README: "Not sure which entry point to use? → Recipes Matrix" note added near the cookbook paragraph; matrix linked first in the Further Reading table.
|
|
18
|
+
- 0 new tests (5,569 total). Coverage unchanged. Build: clean.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
9
22
|
## [0.1.61] — 2026-04-01
|
|
10
23
|
|
|
11
24
|
### Added
|
package/README.md
CHANGED
|
@@ -96,6 +96,8 @@ for (let tick = 0; tick < 2000; tick++) {
|
|
|
96
96
|
`stepWorld` is the only function that mutates state. Everything else is pure computation.
|
|
97
97
|
Call it at 20 Hz for real-time simulation; 1 Hz or lower for campaign-scale time.
|
|
98
98
|
|
|
99
|
+
Not sure which entry point to use? See the **[Recipes Matrix](docs/recipes-matrix.md)** — use case → package → stability → runnable example → performance in one table.
|
|
100
|
+
|
|
99
101
|
For task-oriented walkthroughs, see the **[Simulation Cookbook](docs/cookbook.md)** — 12 recipes
|
|
100
102
|
from "Simulate a duel" to "Load a content pack", each with step-by-step code and expected output.
|
|
101
103
|
|
|
@@ -414,6 +416,7 @@ Ananke's outputs are validated against historical and experimental sources:
|
|
|
414
416
|
|
|
415
417
|
| Document | What's in it |
|
|
416
418
|
|---|---|
|
|
419
|
+
| [`docs/recipes-matrix.md`](docs/recipes-matrix.md) | **Start here** — use case → package → stability → example → performance in one table |
|
|
417
420
|
| [`docs/cookbook.md`](docs/cookbook.md) | Task-oriented recipes — duel, 500-agent battle, species, renderer, campaign, replay, and more |
|
|
418
421
|
| [`docs/module-index.md`](docs/module-index.md) | All 41 entry points — stability tier, use case, key exports, doc links |
|
|
419
422
|
| [`docs/host-contract.md`](docs/host-contract.md) | Stable integration surface — everything needed to embed Ananke without reading `src/` |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@its-not-rocket-science/ananke",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.62",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Deterministic lockstep-friendly SI-units RPG/physics core (fixed-point TS)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -276,6 +276,7 @@
|
|
|
276
276
|
"ref:species-lab": "node dist/examples/reference/species-lab/index.js",
|
|
277
277
|
"ref:species-lab:quick": "node dist/examples/reference/species-lab/index.js --quick",
|
|
278
278
|
"generate-module-index": "node dist/tools/generate-module-index.js",
|
|
279
|
+
"generate-recipes-matrix": "node dist/tools/generate-recipes-matrix.js",
|
|
279
280
|
"pack": "node dist/tools/pack-cli.js pack",
|
|
280
281
|
"generate-fixtures": "node dist/tools/generate-fixtures.js",
|
|
281
282
|
"generate-zoo": "node dist/tools/generate-zoo.js",
|