@neuroverseos/governance 0.8.0 → 0.8.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 +61 -9
- package/dist/{chunk-MC6O5GV5.js → chunk-ETDIEVAX.js} +766 -131
- package/dist/{chunk-VGFDMPVB.js → chunk-F2LWMOM5.js} +283 -1
- package/dist/cli/neuroverse.cjs +1500 -346
- package/dist/cli/radiant.cjs +1095 -217
- package/dist/cli/radiant.js +4 -4
- package/dist/cli/worldmodel.cjs +300 -21
- package/dist/cli/worldmodel.js +76 -1
- package/dist/{lenses-K5FVSALR.js → lenses-YDMKSXDL.js} +5 -3
- package/dist/radiant/index.cjs +654 -130
- package/dist/radiant/index.d.cts +136 -10
- package/dist/radiant/index.d.ts +136 -10
- package/dist/radiant/index.js +23 -397
- package/dist/{server-DFNY5N5A.js → server-ZSQ6DRSN.js} +2 -2
- package/dist/worldmodel-create-5SWHVNMQ.js +195 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,28 +22,80 @@ Both ship in `@neuroverseos/governance`. Install once, use either or both.
|
|
|
22
22
|
|
|
23
23
|
## Radiant — behavioral intelligence for collaboration
|
|
24
24
|
|
|
25
|
-
Radiant gives meaning to behavior. It reads activity
|
|
25
|
+
Radiant gives meaning to behavior. It reads activity across every tool your team uses, classifies each event by who did it (human, AI, or both together), extracts behavioral signals, identifies patterns through AI interpretation governed by the worldmodel, and produces a structured read.
|
|
26
|
+
|
|
27
|
+
### Five data sources, one pipeline
|
|
28
|
+
|
|
29
|
+
| Source | What it reads | What it reveals |
|
|
30
|
+
|---|---|---|
|
|
31
|
+
| **GitHub** | Commits, PRs, reviews, comments | What was SHIPPED — architecture decisions, code quality, collaboration patterns |
|
|
32
|
+
| **ExoCortex** | attention.md, goals.md, sprint.md | What was STATED — the gap between intent and action is drift |
|
|
33
|
+
| **Discord** | Channel messages, threads, help requests | How the team COMMUNICATES — response times, newcomer welcome, unresolved debates |
|
|
34
|
+
| **Slack** | Workspace messages, partner channels | How the team COORDINATES externally — client engagement, coalition alignment |
|
|
35
|
+
| **Notion** | Page creation, updates, staleness | How the team DOCUMENTS — knowledge crystallization, doc gaps, decision records |
|
|
36
|
+
|
|
37
|
+
All five produce `Event[]` → same pipeline → one read. One command, all sources:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
npx @neuroverseos/governance radiant emergent aukilabs/ \
|
|
41
|
+
--lens auki-builder --worlds ./worlds/ --view team
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### Three views for different scopes
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
--view community # public repos + public channels. Anyone can reproduce.
|
|
48
|
+
--view team # + private repos + team channels. Team exocortex.
|
|
49
|
+
--view full # + cross-exocortex comparison. Leader's view.
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### Org-level reads
|
|
53
|
+
|
|
54
|
+
Point at an entire GitHub org, not just one repo:
|
|
26
55
|
|
|
27
56
|
```bash
|
|
28
|
-
|
|
29
|
-
|
|
57
|
+
radiant emergent aukilabs/ # entire org
|
|
58
|
+
radiant emergent aukilabs/exocortex # single repo
|
|
30
59
|
```
|
|
31
60
|
|
|
32
|
-
Output
|
|
61
|
+
### Output structure
|
|
33
62
|
|
|
34
63
|
```
|
|
35
64
|
EMERGENT — what patterns are visible in the team's work
|
|
36
|
-
MEANING — what it means against the worldmodel
|
|
65
|
+
MEANING — what it means against the worldmodel (plain English, no jargon)
|
|
37
66
|
MOVE — what to do about it (or "nothing's broken, keep shipping")
|
|
38
67
|
ALIGNMENT — L/C/N/R scores (human, AI, collaboration, composite)
|
|
39
68
|
GOVERNANCE — audit trail: which events triggered governance, on which side
|
|
40
69
|
DEPTH — what Radiant can see now vs what unlocks with more reads
|
|
41
70
|
```
|
|
42
71
|
|
|
43
|
-
Three scores nobody else measures
|
|
44
|
-
|
|
45
|
-
- **
|
|
46
|
-
- **
|
|
72
|
+
### Three alignment scores nobody else measures
|
|
73
|
+
|
|
74
|
+
- **L (Human work)** — is the human's activity aligned with the declared model? Not productivity — alignment.
|
|
75
|
+
- **C (AI work)** — is the AI's output governed by the worldmodel? Right vocabulary? Invariants respected?
|
|
76
|
+
- **N (Human–AI collaboration)** — when human and AI work together, is shared meaning preserved? This score only exists because the worldmodel provides a shared frame to measure against.
|
|
77
|
+
|
|
78
|
+
### Memory + evolution
|
|
79
|
+
|
|
80
|
+
Radiant writes each read to the ExoCortex as a dated Memory Palace file. Next run reads prior history, detects pattern persistence, and proposes worldmodel evolution — what to ADD (recurring candidate patterns) and what to REMOVE (invariants that haven't fired). A lean worldmodel with 5 sharp invariants is stronger than a bloated one with 20.
|
|
81
|
+
|
|
82
|
+
### MCP server
|
|
83
|
+
|
|
84
|
+
Configure Claude Code to call Radiant in conversation — no terminal needed:
|
|
85
|
+
|
|
86
|
+
```json
|
|
87
|
+
{
|
|
88
|
+
"mcpServers": {
|
|
89
|
+
"radiant": {
|
|
90
|
+
"command": "npx",
|
|
91
|
+
"args": ["@neuroverseos/governance", "radiant", "mcp",
|
|
92
|
+
"--worlds", "./worlds/", "--lens", "auki-builder"]
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
Ask Claude: *"What's emerging in aukilabs/exocortex this week?"* — Claude calls `radiant_emergent` behind the scenes and responds conversationally.
|
|
47
99
|
|
|
48
100
|
For the full Radiant documentation, see [`src/radiant/examples/auki/README.md`](src/radiant/examples/auki/README.md).
|
|
49
101
|
|