@quo-systems/quo 0.2.14 → 0.2.15

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.
Files changed (55) hide show
  1. package/README.md +10 -4
  2. package/SPEC.md +354 -536
  3. package/dist/being/being.d.ts +1 -0
  4. package/dist/being/being.js +8 -3
  5. package/dist/being/index.d.ts +1 -1
  6. package/dist/being/index.js +1 -1
  7. package/dist/being/types.d.ts +2 -0
  8. package/dist/being/types.js +17 -0
  9. package/dist/conformance/beings.d.ts +41 -0
  10. package/dist/conformance/beings.js +28 -2
  11. package/dist/conformance/index.d.ts +10 -1
  12. package/dist/conformance/index.js +162 -6
  13. package/dist/harbor/core.d.ts +4 -2
  14. package/dist/harbor/core.js +25 -4
  15. package/dist/harbor/index.d.ts +1 -1
  16. package/dist/harbor/memory.d.ts +3 -3
  17. package/dist/harbor/memory.js +6 -3
  18. package/dist/harbor/reach.js +1 -1
  19. package/dist/ward/cells.d.ts +2 -0
  20. package/dist/ward/cells.js +60 -11
  21. package/dist/ward/door.d.ts +1 -0
  22. package/dist/ward/door.js +29 -10
  23. package/dist/ward/ground.d.ts +3 -1
  24. package/dist/ward/ground.js +1 -1
  25. package/dist/ward/heirs.js +8 -1
  26. package/dist/ward/index.d.ts +2 -2
  27. package/dist/ward/index.js +3 -3
  28. package/dist/ward/owner.js +49 -8
  29. package/dist/ward/seal.d.ts +1 -0
  30. package/dist/ward/seal.js +10 -2
  31. package/dist/ward/stance.d.ts +1 -0
  32. package/dist/ward/stance.js +62 -4
  33. package/dist/ward/ward.js +5 -0
  34. package/package.json +5 -3
  35. package/quo-kit.md +523 -0
  36. package/src/being/being.ts +8 -3
  37. package/src/being/index.ts +1 -1
  38. package/src/being/types.ts +34 -0
  39. package/src/conformance/beings.ts +25 -2
  40. package/src/conformance/estate.ts +9 -9
  41. package/src/conformance/index.ts +204 -7
  42. package/src/conformance/reach.ts +1 -1
  43. package/src/harbor/core.ts +26 -5
  44. package/src/harbor/index.ts +1 -1
  45. package/src/harbor/memory.ts +7 -4
  46. package/src/harbor/reach.ts +1 -1
  47. package/src/ward/cells.ts +59 -10
  48. package/src/ward/door.ts +27 -9
  49. package/src/ward/ground.ts +39 -11
  50. package/src/ward/heirs.ts +7 -1
  51. package/src/ward/index.ts +4 -4
  52. package/src/ward/owner.ts +45 -10
  53. package/src/ward/seal.ts +11 -2
  54. package/src/ward/stance.ts +60 -4
  55. package/src/ward/ward.ts +6 -1
package/README.md CHANGED
@@ -13,8 +13,12 @@ Nothing else is Quo.
13
13
  beings and judges its door.
14
14
  - **Being.** One ordinary object, one voice.
15
15
 
16
- [`SPEC.md`](SPEC.md) is the truth. It is self-contained and
16
+ [`SPEC.md`](SPEC.md) is the truth. It is the protocol alone: what any ward in
17
+ any language must do for its bytes to be Quo. It is self-contained and
17
18
  assumes nothing from any other document, this README included. Read it first.
19
+ [`quo-kit.md`](quo-kit.md) is this kit: what one TypeScript
20
+ implementation chose and another kit may refuse. It assumes the spec, and
21
+ where the two disagree the spec wins.
18
22
 
19
23
  ## This package
20
24
 
@@ -84,7 +88,7 @@ the one request a door takes. They import by name,
84
88
  from the package. A kit reproduces them or it is not this
85
89
  protocol. `src/conformance/` is the behavioural hand, and it is a checklist
86
90
  a kit ports, not a harness it runs: the beings it is shown with run only in
87
- a TypeScript ward. `SPEC.md` "The tree" says the whole of it.
91
+ a TypeScript ward. `quo-kit.md` "The tree" says the whole of it.
88
92
 
89
93
  ## Publishing
90
94
 
@@ -94,8 +98,10 @@ compatibility promise before 1.0.0: the words may still move. `npm pack
94
98
  the spec, this file, the licence and the notice, and no tests and no
95
99
  configs. The spec ships because it is the truth the source and the vectors
96
100
  are read against. Publishing is gated from the root of the repository:
97
- `npm run release` there runs both gates, `check` and `check:terrain`, and
98
- publishes on green; `npm publish` inside this package refuses and says so.
101
+ `npm run release:quo` there runs both gates, `check` and `check:terrain`,
102
+ and publishes on green; `npm publish` inside this package refuses and says
103
+ so. This package carries the version of its own work and is bound to no
104
+ other's: a number equal to another package's is a coincidence.
99
105
 
100
106
  ## License
101
107