@quo-systems/quo 0.2.13 → 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.
- package/README.md +10 -4
- package/SPEC.md +354 -536
- package/dist/being/being.d.ts +1 -0
- package/dist/being/being.js +8 -3
- package/dist/being/index.d.ts +1 -1
- package/dist/being/index.js +1 -1
- package/dist/being/types.d.ts +2 -0
- package/dist/being/types.js +17 -0
- package/dist/conformance/beings.d.ts +41 -0
- package/dist/conformance/beings.js +28 -2
- package/dist/conformance/index.d.ts +10 -1
- package/dist/conformance/index.js +162 -6
- package/dist/harbor/core.d.ts +4 -2
- package/dist/harbor/core.js +25 -4
- package/dist/harbor/index.d.ts +1 -1
- package/dist/harbor/memory.d.ts +3 -3
- package/dist/harbor/memory.js +6 -3
- package/dist/harbor/reach.js +1 -1
- package/dist/ward/cells.d.ts +2 -0
- package/dist/ward/cells.js +60 -11
- package/dist/ward/door.d.ts +1 -0
- package/dist/ward/door.js +29 -10
- package/dist/ward/ground.d.ts +3 -1
- package/dist/ward/ground.js +1 -1
- package/dist/ward/heirs.js +8 -1
- package/dist/ward/index.d.ts +2 -2
- package/dist/ward/index.js +3 -3
- package/dist/ward/owner.js +49 -8
- package/dist/ward/seal.d.ts +1 -0
- package/dist/ward/seal.js +10 -2
- package/dist/ward/stance.d.ts +1 -0
- package/dist/ward/stance.js +62 -4
- package/dist/ward/ward.js +5 -0
- package/package.json +5 -3
- package/quo-kit.md +523 -0
- package/src/being/being.ts +8 -3
- package/src/being/index.ts +1 -1
- package/src/being/types.ts +34 -0
- package/src/conformance/beings.ts +25 -2
- package/src/conformance/estate.ts +9 -9
- package/src/conformance/index.ts +204 -7
- package/src/conformance/reach.ts +1 -1
- package/src/harbor/core.ts +26 -5
- package/src/harbor/index.ts +1 -1
- package/src/harbor/memory.ts +7 -4
- package/src/harbor/reach.ts +1 -1
- package/src/ward/cells.ts +59 -10
- package/src/ward/door.ts +27 -9
- package/src/ward/ground.ts +39 -11
- package/src/ward/heirs.ts +7 -1
- package/src/ward/index.ts +4 -4
- package/src/ward/owner.ts +45 -10
- package/src/ward/seal.ts +11 -2
- package/src/ward/stance.ts +60 -4
- 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
|
|
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. `
|
|
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`,
|
|
98
|
-
publishes on green; `npm publish` inside this package refuses and says
|
|
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
|
|