@its-not-rocket-science/ananke 0.1.59 → 0.1.60
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 +14 -0
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,20 @@ Versioning follows [Semantic Versioning](https://semver.org/).
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [0.1.60] — 2026-03-31
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- **PM-1 — First-Party Reference Builds (complete):**
|
|
14
|
+
- `examples/reference/tactical-duel/` — end-to-end tactical demonstration: combat, anatomy, AI, `serializeBridgeFrame`, `hashWorldState`, `ReplayRecorder`. Runs in < 1 ms/tick; produces a replay file comparable with `npx ananke replay diff`. Includes architecture doc and pain-points guide.
|
|
15
|
+
- `examples/reference/campaign-sandbox/` — turn-based world simulation: four polities (Rome, Carthage, Athens, Sparta) with trade, alliances, population dynamics, plague outbreak, inter-polity spread, save/reload via `stampSnapshot`. Runs in < 1 ms/day. Includes full `README.md` with correct API signatures.
|
|
16
|
+
- `examples/reference/species-lab/` — xenobiology lab: attribute profiles for 6 species (Elf, Dwarf, Orc, Goblin, Troll, Halfling), extended-senses predicates, round-robin combat tournament (100 seeds × 15 matchups) with outcome distributions and physics insights. Quick mode (`--quick`) completes 150 trials in < 1 s. Includes pain-points guide and extension examples.
|
|
17
|
+
- Each reference build includes: architecture diagram, package choices rationale, measured performance envelope, pain points encountered and resolved, extension examples.
|
|
18
|
+
- npm scripts: `ref:tactical-duel`, `ref:campaign-sandbox`, `ref:species-lab`, `ref:species-lab:quick`.
|
|
19
|
+
- ROADMAP: PM-1 through PM-10 added (Platform Maturity Roadmap); PA-1, PA-5–PA-8 marked complete.
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
9
23
|
## [0.1.59] — 2026-03-30
|
|
10
24
|
|
|
11
25
|
### Added
|
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.60",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Deterministic lockstep-friendly SI-units RPG/physics core (fixed-point TS)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -268,6 +268,10 @@
|
|
|
268
268
|
"example:species": "node dist/examples/quickstart-species.js",
|
|
269
269
|
"example:lockstep": "node dist/examples/lockstep-server.js",
|
|
270
270
|
"example:rollback": "node dist/examples/rollback-client.js",
|
|
271
|
+
"ref:tactical-duel": "node dist/examples/reference/tactical-duel/index.js",
|
|
272
|
+
"ref:campaign-sandbox": "node dist/examples/reference/campaign-sandbox/index.js",
|
|
273
|
+
"ref:species-lab": "node dist/examples/reference/species-lab/index.js",
|
|
274
|
+
"ref:species-lab:quick": "node dist/examples/reference/species-lab/index.js --quick",
|
|
271
275
|
"generate-module-index": "node dist/tools/generate-module-index.js",
|
|
272
276
|
"pack": "node dist/tools/pack-cli.js pack",
|
|
273
277
|
"generate-fixtures": "node dist/tools/generate-fixtures.js",
|