spine-rigc 0.36.1 β 1.0.1
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 +2 -17
- package/docs/AUTHORING.md +2 -0
- package/docs/INGEST.md +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -56,22 +56,6 @@ it cuts both ways:
|
|
|
56
56
|
trusted at all. So the [Spine Runtimes License Agreement](https://esotericsoftware.com/spine-runtimes-license)
|
|
57
57
|
applies to rigc exactly as it applies to any other runtime integration.
|
|
58
58
|
|
|
59
|
-
ποΈ **One sentence left this section on 2026-09-05, and its removal is a decision
|
|
60
|
-
rather than a tidy-up.** It read *"rigc is complementary to the editor. It is not
|
|
61
|
-
a replacement for it, and it is not a way around one."* That was a claim about
|
|
62
|
-
what rigc would never become, and
|
|
63
|
-
[#380](https://github.com/firejune/rigc/issues/380) β a format-agnostic core with
|
|
64
|
-
its own format and web player, Spine kept as one backend among others β is a
|
|
65
|
-
course the claim cannot survive. A promise the roadmap contradicts is worth less
|
|
66
|
-
than no promise, so it is retired rather than reworded
|
|
67
|
-
([#398](https://github.com/firejune/rigc/issues/398)). What a reader can check is
|
|
68
|
-
unchanged: rigc emits Spine skeleton data, links `spine-core`, validates through
|
|
69
|
-
it with no flag that turns that off, and carries the licence obligation the next
|
|
70
|
-
section states in full. A backend emitting something other than Spine data would
|
|
71
|
-
have no spine-core to check it against, and #380 treats an oracle of its own as
|
|
72
|
-
the prerequisite for shipping one β nothing here makes an unchecked emit path
|
|
73
|
-
acceptable.
|
|
74
|
-
|
|
75
59
|
### Licensing, stated plainly
|
|
76
60
|
|
|
77
61
|
rigc's own code is MIT (see [LICENSE](LICENSE)). That says nothing about Spine, and
|
|
@@ -686,7 +670,8 @@ letting `A17` blame the editor for the harness's own doing.
|
|
|
686
670
|
| π¬ **[docs/SPEC_COVERAGE.md](docs/SPEC_COVERAGE.md)** | Spine 4.3's full export surface against what rigc emits and what the official examples measurably use, with the ordered gap list |
|
|
687
671
|
| π **[the benchmark dossier](https://github.com/firejune/rigc/blob/main/docs/BENCHMARK.md)** | **why you can trust the output.** The yardstick, `diff` and `check` and what neither can see, the eight-rung ladder and the spineboy graduation exam, the run viewer, the 49 named assertions with their profiles, and the selftest that has watched every one of them fire. Repository material β it is not in the npm package |
|
|
688
672
|
| π [LADDER.md](https://github.com/firejune/rigc/blob/main/docs/LADDER.md) Β· [GATE.md](https://github.com/firejune/rigc/blob/main/docs/GATE.md) Β· [PILOT.md](https://github.com/firejune/rigc/blob/main/docs/PILOT.md) | the live rung ledger, the clause statements a candidate is graded against, and how to run an agent through the ladder and score what comes back |
|
|
689
|
-
|
|
|
673
|
+
| 𧬠[GENERATIONS.md](https://github.com/firejune/rigc/blob/main/docs/GENERATIONS.md) | **Spine data from another generation.** Why a 3.8β4.2 file read as 4.3 fails in silence, the policy that follows (detect from `skeleton.spine`, never guess, play on the matching runtime), what `A16` and `ingest` do with such a file, and the editor as the migration path. Repository material |
|
|
674
|
+
| πΊοΈ [ROADMAP.md](https://github.com/firejune/rigc/blob/main/ROADMAP.md) | where this is going, and where it has been. What 1.0 had to mean before the number was claimed, and what it was claimed on β conditions rather than a feature list, because direction here comes from what users hit |
|
|
690
675
|
| π [CLAUDE.md](https://github.com/firejune/rigc/blob/main/CLAUDE.md) | **the doctrine** β why the validator's messages are the product, why nothing reaches disk before green, why no number is ever invented, and what a change has to keep. [CONTRIBUTING.md](https://github.com/firejune/rigc/blob/main/CONTRIBUTING.md) calls it worth ten minutes before a first patch. Repository material |
|
|
691
676
|
|
|
692
677
|
## Why you can trust the output
|
package/docs/AUTHORING.md
CHANGED
|
@@ -727,6 +727,8 @@ is a `BLOCK GENERATION_UNKNOWN`, never rounded to the nearest: a catalog that ro
|
|
|
727
727
|
handed 19 skeletons labelled `3.8.99` a 4.2 runtime and every one of them posed as NaN
|
|
728
728
|
(row 7). Reading a file with *that generation's own* defaults is #706's item 2 and is
|
|
729
729
|
not in this tool β re-export as 4.3, or transcribe by hand ([INGEST.md](INGEST.md) Β§2).
|
|
730
|
+
[GENERATIONS.md](https://github.com/firejune/rigc/blob/main/docs/GENERATIONS.md) is
|
|
731
|
+
the whole policy, and the editor migration it names.
|
|
730
732
|
|
|
731
733
|
π **Do not delete the `note`.** Both written specs carry one saying the file is
|
|
732
734
|
decompiled and naming the skeleton it came from. A decompiled spec is
|
package/docs/INGEST.md
CHANGED
|
@@ -674,6 +674,11 @@ before it was a hand-edit of emitted JSON with nothing checking it. That is now
|
|
|
674
674
|
`ingest` hands you in one command; the sections below are how to read and change what
|
|
675
675
|
it hands you, and every rule in them applies to a spec `ingest` wrote.
|
|
676
676
|
|
|
677
|
+
A file from another Spine generation is the one case where transcription is not the
|
|
678
|
+
first fallback: migrate it through the editor of its own generation first, as
|
|
679
|
+
[GENERATIONS.md](https://github.com/firejune/rigc/blob/main/docs/GENERATIONS.md) Β§4
|
|
680
|
+
states.
|
|
681
|
+
|
|
677
682
|
π **The cost this section used to warn about is measured, and it is why Β§5 changed.**
|
|
678
683
|
The smallest skeleton of the corpus behind [#569](https://github.com/firejune/rigc/issues/569)
|
|
679
684
|
transcribed to a **257,422-byte** rig spec, of which 91.8 % is the six geometry
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spine-rigc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Rig compiler for Spine β declarative rig specs in, Spine 4.3 skeleton data out, verified by a spine-core round-trip. Built so AI agents can author rigs and check their own work; the output imports into the Spine editor.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|