@neuroverseos/governance 0.6.0 → 0.7.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 +0 -3
- package/dist/{build-UTVDGHB3.js → build-EGBGZFIJ.js} +2 -2
- package/dist/chunk-T6EQ7ZBG.js +1571 -0
- package/dist/chunk-VGFDMPVB.js +436 -0
- package/dist/cli/neuroverse.cjs +2931 -213
- package/dist/cli/neuroverse.js +41 -90
- package/dist/cli/radiant.cjs +3997 -0
- package/dist/cli/radiant.d.cts +25 -0
- package/dist/cli/radiant.d.ts +25 -0
- package/dist/cli/radiant.js +429 -0
- package/dist/{derive-42IJW7JI.js → derive-7Y7YWVLU.js} +2 -2
- package/dist/index.js +28 -28
- package/dist/lenses-K5FVSALR.js +13 -0
- package/dist/radiant/index.cjs +3249 -0
- package/dist/radiant/index.d.cts +1301 -0
- package/dist/radiant/index.d.ts +1301 -0
- package/dist/radiant/index.js +90 -0
- package/dist/server-BXMC5NOE.js +271 -0
- package/dist/worlds/behavioral-demo.nv-world.md +50 -3
- package/package.json +7 -2
- package/dist/{chunk-735Z3HA4.js → chunk-FHXXD2TI.js} +3 -3
- package/dist/{configure-ai-5MP5DWTT.js → configure-ai-LL3VAPQW.js} +3 -3
package/README.md
CHANGED
|
@@ -55,7 +55,6 @@ NeuroVerse gives you composable primitives:
|
|
|
55
55
|
|
|
56
56
|
These blocks let you build robots/agents that can traverse heterogeneous spaces while remaining policy-compliant, auditable, and deterministic.
|
|
57
57
|
|
|
58
|
-
<<<<<<< codex/review-open-source-repo-for-ai-architecture
|
|
59
58
|
### Mental Model: Layered Rules (World → Law → Situation)
|
|
60
59
|
|
|
61
60
|
If you're explaining this to developers or non-technical stakeholders, use this:
|
|
@@ -202,8 +201,6 @@ Use this section to show real runtime behavior and response time.
|
|
|
202
201
|
4. **Level 4 — Spatial + Multi-Actor Governance**
|
|
203
202
|
Add zone opt-in, handshake negotiation, and dynamic policy composition.
|
|
204
203
|
|
|
205
|
-
=======
|
|
206
|
-
>>>>>>> main
|
|
207
204
|
---
|
|
208
205
|
|
|
209
206
|
## The Product: Three Screens
|
|
@@ -2,12 +2,12 @@ import {
|
|
|
2
2
|
DeriveInputError,
|
|
3
3
|
DeriveProviderError,
|
|
4
4
|
deriveWorld
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-FHXXD2TI.js";
|
|
6
6
|
import {
|
|
7
7
|
DERIVE_EXIT_CODES
|
|
8
8
|
} from "./chunk-FMSTRBBS.js";
|
|
9
|
-
import "./chunk-OT6PXH54.js";
|
|
10
9
|
import "./chunk-INWQHLPS.js";
|
|
10
|
+
import "./chunk-OT6PXH54.js";
|
|
11
11
|
import "./chunk-7P3S7MAY.js";
|
|
12
12
|
import {
|
|
13
13
|
emitWorldDefinition
|