@manifesto-ai/core 2.9.0 → 2.10.0
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 +5 -4
- package/dist/index.js +1 -18499
- package/dist/index.js.map +1 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ Host -> CORE -> ComputeResult
|
|
|
37
37
|
| Execute effects | Host |
|
|
38
38
|
| Perform IO (network, filesystem) | Host |
|
|
39
39
|
| Persist snapshots | Host |
|
|
40
|
-
| Govern authority/proposals |
|
|
40
|
+
| Govern authority/proposals | `@manifesto-ai/governance` + `@manifesto-ai/lineage` |
|
|
41
41
|
| Handle UI/event bindings | SDK |
|
|
42
42
|
|
|
43
43
|
---
|
|
@@ -140,7 +140,7 @@ type Patch = { op: "set" | "unset" | "merge", path, value? };
|
|
|
140
140
|
type ComputeResult = { status, snapshot, requirements, trace };
|
|
141
141
|
```
|
|
142
142
|
|
|
143
|
-
> See [SPEC
|
|
143
|
+
> See [core-SPEC.md](docs/core-SPEC.md) for the current living specification.
|
|
144
144
|
|
|
145
145
|
---
|
|
146
146
|
|
|
@@ -195,8 +195,9 @@ For typical usage, see [`@manifesto-ai/sdk`](../sdk/) — the recommended entry
|
|
|
195
195
|
| Document | Purpose |
|
|
196
196
|
|----------|---------|
|
|
197
197
|
| [GUIDE.md](docs/GUIDE.md) | Step-by-step usage guide |
|
|
198
|
-
| [SPEC
|
|
199
|
-
| [
|
|
198
|
+
| [core-SPEC.md](docs/core-SPEC.md) | Current living specification |
|
|
199
|
+
| [VERSION-INDEX.md](docs/VERSION-INDEX.md) | Current and historical document map |
|
|
200
|
+
| [FDR-v1.0.0.md](docs/FDR-v1.0.0.md) | Historical design rationale |
|
|
200
201
|
|
|
201
202
|
---
|
|
202
203
|
|