nexus-prime 6.6.1 → 7.0.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 +208 -275
- package/dist/adapters/admin/authoring.d.ts +14 -0
- package/dist/adapters/admin/authoring.js +116 -0
- package/dist/adapters/admin/control.d.ts +39 -0
- package/dist/adapters/admin/control.js +41 -0
- package/dist/adapters/admin/index.d.ts +38 -0
- package/dist/adapters/admin/index.js +39 -0
- package/dist/adapters/admin/types.d.ts +45 -0
- package/dist/adapters/admin/types.js +8 -0
- package/dist/adapters/cli/index.d.ts +12 -0
- package/dist/adapters/cli/index.js +12 -0
- package/dist/adapters/hooks/context.d.ts +27 -0
- package/dist/adapters/hooks/context.js +28 -0
- package/dist/adapters/hooks/execution.d.ts +14 -0
- package/dist/adapters/hooks/execution.js +21 -0
- package/dist/adapters/hooks/health.d.ts +12 -0
- package/dist/adapters/hooks/health.js +14 -0
- package/dist/adapters/hooks/index.d.ts +83 -0
- package/dist/adapters/hooks/index.js +118 -0
- package/dist/adapters/hooks/memory.d.ts +32 -0
- package/dist/adapters/hooks/memory.js +23 -0
- package/dist/adapters/hooks/types.d.ts +34 -0
- package/dist/adapters/hooks/types.js +23 -0
- package/dist/adapters/mcp/index.d.ts +12 -0
- package/dist/adapters/mcp/index.js +12 -0
- package/dist/adapters/shared/formatters/branded-response.d.ts +13 -0
- package/dist/adapters/shared/formatters/branded-response.js +12 -0
- package/dist/adapters/shared/formatters/bullets.d.ts +7 -0
- package/dist/adapters/shared/formatters/bullets.js +9 -0
- package/dist/adapters/shared/formatters/index.d.ts +12 -0
- package/dist/adapters/shared/formatters/index.js +11 -0
- package/dist/adapters/shared/formatters/json-details.d.ts +7 -0
- package/dist/adapters/shared/formatters/json-details.js +9 -0
- package/dist/adapters/shared/formatters/response-envelope.d.ts +20 -0
- package/dist/adapters/shared/formatters/response-envelope.js +37 -0
- package/dist/adapters/shared/index.d.ts +8 -0
- package/dist/adapters/shared/index.js +8 -0
- package/dist/adapters/shared/types.d.ts +40 -0
- package/dist/adapters/shared/types.js +10 -0
- package/dist/agents/adapters/mcp/definitions.d.ts +19 -0
- package/dist/agents/adapters/mcp/definitions.js +99 -105
- package/dist/agents/adapters/mcp/dispatch.js +6 -0
- package/dist/agents/adapters/mcp/handlers/governance.js +4 -4
- package/dist/agents/adapters/mcp/handlers/kernel-execution.d.ts +26 -0
- package/dist/agents/adapters/mcp/handlers/kernel-execution.js +98 -0
- package/dist/agents/adapters/mcp/handlers/memory.js +0 -76
- package/dist/agents/adapters/mcp/handlers/misc.js +1 -169
- package/dist/agents/adapters/mcp/handlers/orchestration.js +42 -16
- package/dist/agents/adapters/mcp/helpers.d.ts +2 -4
- package/dist/agents/adapters/mcp/helpers.js +4 -13
- package/dist/agents/adapters/mcp.js +2 -12
- package/dist/cli/kernel-exec.d.ts +18 -0
- package/dist/cli/kernel-exec.js +57 -0
- package/dist/cli.js +33 -15
- package/dist/dashboard/app/index.html +0 -7
- package/dist/dashboard/app/main.js +2 -7
- package/dist/dashboard/app/state.js +0 -1
- package/dist/dashboard/app/views/workforce.js +1 -1
- package/dist/dashboard/app/widgets/runtime-badge.js +1 -6
- package/dist/dashboard/routes/architects.js +2 -10
- package/dist/dashboard/routes/assets.js +3 -62
- package/dist/dashboard/routes/authoring.js +0 -136
- package/dist/dashboard/routes/governance.js +2 -115
- package/dist/dashboard/routes/health.js +1 -2
- package/dist/dashboard/routes/license.js +4 -43
- package/dist/dashboard/routes/memory.js +5 -66
- package/dist/dashboard/server.js +13 -0
- package/dist/dashboard/types.d.ts +2 -0
- package/dist/engines/event-bus.d.ts +4 -1
- package/dist/engines/memory/store.js +2 -0
- package/dist/engines/memory.d.ts +9 -0
- package/dist/engines/memory.js +32 -11
- package/dist/engines/nxl-interpreter.js +2 -2
- package/dist/engines/orchestrator.d.ts +1 -1
- package/dist/engines/orchestrator.js +31 -16
- package/dist/kernel/context/contracts.d.ts +12 -0
- package/dist/kernel/context/contracts.js +9 -0
- package/dist/kernel/context/index.d.ts +25 -0
- package/dist/kernel/context/index.js +44 -0
- package/dist/kernel/context/service.d.ts +73 -0
- package/dist/kernel/context/service.js +183 -0
- package/dist/kernel/context/types.d.ts +69 -0
- package/dist/kernel/context/types.js +11 -0
- package/dist/kernel/execution/contracts.d.ts +21 -0
- package/dist/kernel/execution/contracts.js +10 -0
- package/dist/kernel/execution/index.d.ts +13 -0
- package/dist/kernel/execution/index.js +9 -0
- package/dist/kernel/execution/ledger.d.ts +32 -0
- package/dist/kernel/execution/ledger.js +96 -0
- package/dist/kernel/execution/service.d.ts +79 -0
- package/dist/kernel/execution/service.js +629 -0
- package/dist/kernel/execution/types.d.ts +131 -0
- package/dist/kernel/execution/types.js +13 -0
- package/dist/kernel/index.d.ts +54 -0
- package/dist/kernel/index.js +63 -0
- package/dist/kernel/runtime/backend.d.ts +20 -0
- package/dist/kernel/runtime/backend.js +55 -0
- package/dist/kernel/runtime/contracts.d.ts +35 -0
- package/dist/kernel/runtime/contracts.js +12 -0
- package/dist/kernel/runtime/index.d.ts +10 -0
- package/dist/kernel/runtime/index.js +8 -0
- package/dist/kernel/runtime/types.d.ts +44 -0
- package/dist/kernel/runtime/types.js +8 -0
- package/dist/licensing/license-sync.d.ts +3 -0
- package/dist/licensing/license-sync.js +7 -0
- package/package.json +10 -2
- package/dist/dashboard/app/styles/authoring.css +0 -199
- package/dist/dashboard/app/views/authoring.js +0 -295
package/README.md
CHANGED
|
@@ -2,31 +2,31 @@
|
|
|
2
2
|
<img src="https://nexus-prime.cfd/assets/nexus-prime-logo.png" alt="Nexus Prime" width="120" height="120">
|
|
3
3
|
|
|
4
4
|
<h1>Nexus Prime</h1>
|
|
5
|
-
<p><strong>
|
|
6
|
-
<p><i>
|
|
5
|
+
<p><strong>End agent amnesia.</strong></p>
|
|
6
|
+
<p><i>Your coding agents finally remember. Finally coordinate. Finally stop burning your token budget.</i></p>
|
|
7
7
|
|
|
8
8
|
<p>
|
|
9
9
|
<a href="https://www.npmjs.com/package/nexus-prime"><img src="https://img.shields.io/npm/v/nexus-prime?style=for-the-badge&color=00ff88&label=npm" alt="npm version"></a>
|
|
10
10
|
<a href="https://www.npmjs.com/package/nexus-prime"><img src="https://img.shields.io/npm/d18m/nexus-prime?style=for-the-badge&color=00d4ff&label=downloads" alt="npm downloads"></a>
|
|
11
11
|
<a href="https://www.npmjs.com/package/nexus-prime"><img src="https://img.shields.io/npm/dw/nexus-prime?style=for-the-badge&color=00d4ff&label=weekly" alt="weekly downloads"></a>
|
|
12
|
-
<
|
|
13
|
-
<
|
|
12
|
+
<img src="https://img.shields.io/badge/node-%3E%3D20-339933?style=for-the-badge&logo=node.js&logoColor=white" alt="Node.js">
|
|
13
|
+
<img src="https://img.shields.io/badge/TypeScript-5.x-3178C6?style=for-the-badge&logo=typescript&logoColor=white" alt="TypeScript">
|
|
14
14
|
</p>
|
|
15
15
|
|
|
16
16
|
<p>
|
|
17
|
-
<img src="https://img.shields.io/badge/
|
|
18
|
-
<img src="https://img.shields.io/badge/
|
|
19
|
-
<img src="https://img.shields.io/badge/
|
|
20
|
-
<img src="https://img.shields.io/badge/
|
|
21
|
-
<img src="https://img.shields.io/badge/
|
|
17
|
+
<img src="https://img.shields.io/badge/Protocol-MCP-4285F4?style=for-the-badge" alt="MCP Protocol">
|
|
18
|
+
<img src="https://img.shields.io/badge/license-Commercial-6f42c1?style=for-the-badge" alt="Commercial License">
|
|
19
|
+
<a href="https://nexus-prime.cfd/pricing"><img src="https://img.shields.io/badge/30--day-free%20trial-00ff88?style=for-the-badge" alt="30-day free trial"></a>
|
|
20
|
+
<img src="https://img.shields.io/badge/independent%20creators-free%20forever-ff69b4?style=for-the-badge" alt="Free for IC creators">
|
|
21
|
+
<img src="https://img.shields.io/badge/platform-macOS%20%7C%20Linux%20%7C%20Windows-444?style=for-the-badge" alt="Cross-platform">
|
|
22
22
|
</p>
|
|
23
23
|
|
|
24
24
|
<p>
|
|
25
|
-
<
|
|
26
|
-
<
|
|
27
|
-
<
|
|
28
|
-
<
|
|
29
|
-
<img src="https://img.shields.io/badge/
|
|
25
|
+
<img src="https://img.shields.io/badge/AI%20coding%20agents-supported-8A2BE2?style=flat-square" alt="AI coding agents">
|
|
26
|
+
<img src="https://img.shields.io/badge/local--first-%E2%9C%93-00ff88?style=flat-square" alt="Local-first">
|
|
27
|
+
<img src="https://img.shields.io/badge/zero--cloud-%E2%9C%93-00ff88?style=flat-square" alt="Zero cloud">
|
|
28
|
+
<img src="https://img.shields.io/badge/no%20data%20leaves%20your%20machine-%E2%9C%93-00ff88?style=flat-square" alt="Privacy">
|
|
29
|
+
<img src="https://img.shields.io/badge/pilot%20program-open-ff9500?style=flat-square" alt="Pilot program">
|
|
30
30
|
</p>
|
|
31
31
|
|
|
32
32
|
<p>
|
|
@@ -38,45 +38,55 @@
|
|
|
38
38
|
<a href="https://www.producthunt.com/products/nexus-prime?embed=true&utm_source=badge-featured&utm_medium=badge&utm_campaign=badge-nexus-prime" target="_blank" rel="noopener noreferrer"><img alt="Nexus-Prime — Product Hunt" width="250" height="54" src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1096831&theme=dark&t=1773345508816"></a>
|
|
39
39
|
</div>
|
|
40
40
|
|
|
41
|
-
> **Coding agents
|
|
41
|
+
> **Coding agents were never built to remember. Nexus Prime gives them a memory.**
|
|
42
42
|
>
|
|
43
|
-
>
|
|
43
|
+
> Install once. Every coding agent on your machine gets smarter — together.
|
|
44
44
|
|
|
45
45
|
---
|
|
46
46
|
|
|
47
47
|
## Contents
|
|
48
48
|
|
|
49
|
-
- [
|
|
49
|
+
- [The problem](#the-problem)
|
|
50
|
+
- [What changes when you install](#what-changes-when-you-install)
|
|
50
51
|
- [Quick start](#quick-start)
|
|
51
52
|
- [Features](#features)
|
|
52
53
|
- [See it in action](#see-it-in-action)
|
|
53
|
-
- [
|
|
54
|
-
- [
|
|
55
|
-
- [Real numbers](#real-numbers)
|
|
54
|
+
- [Works with](#works-with)
|
|
55
|
+
- [What users see](#what-users-see)
|
|
56
56
|
- [Who it's for](#who-its-for)
|
|
57
|
-
- [
|
|
58
|
-
- [Configuration](#configuration)
|
|
59
|
-
- [CLI reference](#cli-reference)
|
|
60
|
-
- [Comparison](#comparison)
|
|
57
|
+
- [Pricing](#pricing)
|
|
61
58
|
- [FAQ](#faq)
|
|
62
|
-
- [
|
|
63
|
-
- [Contributing](#contributing)
|
|
59
|
+
- [Privacy](#privacy)
|
|
64
60
|
- [Community & support](#community--support)
|
|
65
61
|
- [License](#license)
|
|
66
62
|
|
|
67
63
|
---
|
|
68
64
|
|
|
69
|
-
##
|
|
65
|
+
## The problem
|
|
66
|
+
|
|
67
|
+
Every coding agent you use starts every session cold.
|
|
68
|
+
|
|
69
|
+
It has no idea what you worked on yesterday. It has no idea what your teammate's Cursor session just finished. It re-reads your repo from scratch, every single turn, for every single question — because that's the only thing it knows how to do.
|
|
70
70
|
|
|
71
|
-
One tracked
|
|
71
|
+
One tracked session was measured at **100,000,000 tokens**. Ninety-nine point four percent of them were input. **166 tokens read for every 1 written.** Your agent isn't thinking. It's re-orienting. And you're paying for that re-orientation over and over.
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
This is **agent amnesia** — and it's the quiet tax on every hour you spend with AI-assisted coding.
|
|
74
74
|
|
|
75
|
-
|
|
75
|
+
**Nexus Prime ends it.**
|
|
76
76
|
|
|
77
|
-
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## What changes when you install
|
|
78
80
|
|
|
79
|
-
|
|
81
|
+
| Before Nexus Prime | After Nexus Prime |
|
|
82
|
+
| :--- | :--- |
|
|
83
|
+
| Every session starts cold | Your agents pick up where they (or any other agent) left off |
|
|
84
|
+
| You pick files manually and pray they fit the context | Your agent reads only what matters — automatically |
|
|
85
|
+
| Memory grows but nothing learns | What was true yesterday is still true today |
|
|
86
|
+
| Multi-file edits sometimes leave the codebase in a half-broken state | Every change is reviewed and safe before it lands |
|
|
87
|
+
| Your Cursor and your Claude Code sessions are two strangers | They share the same memory, in real time |
|
|
88
|
+
| Token bills climb and you can't see why | A live dashboard shows exactly where every token went |
|
|
89
|
+
| Five-figure monthly LLM spend and no lever to pull | **Users typically cut input tokens by 60–90%** |
|
|
80
90
|
|
|
81
91
|
---
|
|
82
92
|
|
|
@@ -95,7 +105,7 @@ npm install -g nexus-prime
|
|
|
95
105
|
</td>
|
|
96
106
|
<td width="50%">
|
|
97
107
|
|
|
98
|
-
### 2. Wire
|
|
108
|
+
### 2. Wire every agent you use
|
|
99
109
|
|
|
100
110
|
```bash
|
|
101
111
|
nexus-prime setup all
|
|
@@ -110,21 +120,24 @@ nexus-prime setup all
|
|
|
110
120
|
|
|
111
121
|
```bash
|
|
112
122
|
nexus-prime start
|
|
113
|
-
open http://localhost:3377
|
|
114
123
|
```
|
|
115
124
|
|
|
125
|
+
Then visit `http://localhost:3377`.
|
|
126
|
+
|
|
116
127
|
</td>
|
|
117
128
|
<td width="50%">
|
|
118
129
|
|
|
119
|
-
### 4. Use your agent
|
|
130
|
+
### 4. Use your agent like normal
|
|
120
131
|
|
|
121
|
-
Memory, budgeting, and safe execution are
|
|
132
|
+
That's it. Memory, budgeting, and safe execution are already on.
|
|
122
133
|
|
|
123
134
|
</td>
|
|
124
135
|
</tr>
|
|
125
136
|
</table>
|
|
126
137
|
|
|
127
|
-
Prefer
|
|
138
|
+
Prefer one-liner installs? `curl -fsSL https://nexus-prime.cfd/install.sh | bash`
|
|
139
|
+
|
|
140
|
+
Your agent calls `nexus_session_bootstrap` + `nexus_orchestrate` automatically. Auto-bootstrap runs on first non-bootstrap call, so you never have to wire the packet by hand.
|
|
128
141
|
|
|
129
142
|
---
|
|
130
143
|
|
|
@@ -134,60 +147,69 @@ Prefer `curl`? `curl -fsSL https://nexus-prime.cfd/install.sh | bash`
|
|
|
134
147
|
<tr>
|
|
135
148
|
<td width="33%" valign="top">
|
|
136
149
|
|
|
137
|
-
### 🧠
|
|
138
|
-
|
|
150
|
+
### 🧠 Memory that sticks
|
|
151
|
+
|
|
152
|
+
Your agents remember what they did yesterday, last week, last sprint. Across every tool you use.
|
|
139
153
|
|
|
140
154
|
</td>
|
|
141
155
|
<td width="33%" valign="top">
|
|
142
156
|
|
|
143
|
-
### 💰
|
|
144
|
-
|
|
157
|
+
### 💰 Bills that stop climbing
|
|
158
|
+
|
|
159
|
+
Your agent reads what matters — nothing else. Users typically see **60–90% fewer input tokens**.
|
|
145
160
|
|
|
146
161
|
</td>
|
|
147
162
|
<td width="33%" valign="top">
|
|
148
163
|
|
|
149
|
-
### 🛡️
|
|
150
|
-
|
|
164
|
+
### 🛡️ Safer coding sessions
|
|
165
|
+
|
|
166
|
+
Every multi-file edit is reviewed before it lands. No more half-broken commits because the agent got interrupted.
|
|
151
167
|
|
|
152
168
|
</td>
|
|
153
169
|
</tr>
|
|
154
170
|
<tr>
|
|
155
171
|
<td width="33%" valign="top">
|
|
156
172
|
|
|
157
|
-
### 🔌
|
|
158
|
-
|
|
173
|
+
### 🔌 Works with your stack
|
|
174
|
+
|
|
175
|
+
Claude Code, Cursor, Codex, Windsurf, OpenCode, Aider, Continue, Cline, Antigravity — all wired by one command.
|
|
159
176
|
|
|
160
177
|
</td>
|
|
161
178
|
<td width="33%" valign="top">
|
|
162
179
|
|
|
163
|
-
### 🏠
|
|
164
|
-
|
|
180
|
+
### 🏠 Your code, your machine
|
|
181
|
+
|
|
182
|
+
Everything runs locally. No cloud. No telemetry without your consent. No vendor lock-in.
|
|
165
183
|
|
|
166
184
|
</td>
|
|
167
185
|
<td width="33%" valign="top">
|
|
168
186
|
|
|
169
|
-
### 👁️
|
|
170
|
-
|
|
187
|
+
### 👁️ A live dashboard
|
|
188
|
+
|
|
189
|
+
Watch memory form. Watch tokens drop. See every agent call in real time, at `localhost:3377`.
|
|
171
190
|
|
|
172
191
|
</td>
|
|
173
192
|
</tr>
|
|
174
193
|
<tr>
|
|
175
194
|
<td width="33%" valign="top">
|
|
176
195
|
|
|
177
|
-
### 🤝
|
|
178
|
-
|
|
196
|
+
### 🤝 Agents that coordinate
|
|
197
|
+
|
|
198
|
+
Your Cursor session and your Claude Code session share the same memory — simultaneously, without stepping on each other.
|
|
179
199
|
|
|
180
200
|
</td>
|
|
181
201
|
<td width="33%" valign="top">
|
|
182
202
|
|
|
183
|
-
### 🧬
|
|
184
|
-
|
|
203
|
+
### 🧬 Handoff across sessions
|
|
204
|
+
|
|
205
|
+
Close your laptop mid-task. Open it tomorrow. Any agent picks up exactly where the last one stopped.
|
|
185
206
|
|
|
186
207
|
</td>
|
|
187
208
|
<td width="33%" valign="top">
|
|
188
209
|
|
|
189
|
-
### ⚡ Zero
|
|
190
|
-
|
|
210
|
+
### ⚡ Zero config
|
|
211
|
+
|
|
212
|
+
Install, run `setup all`, done. The wizard detects every coding agent on your machine and wires each one.
|
|
191
213
|
|
|
192
214
|
</td>
|
|
193
215
|
</tr>
|
|
@@ -198,308 +220,212 @@ Structured handoff across agents, tools, repos. Context survives restarts, crash
|
|
|
198
220
|
## See it in action
|
|
199
221
|
|
|
200
222
|
<div align="center">
|
|
201
|
-
<img src="https://nexus-prime.cfd/assets/screenshots/dashboard_cockpit_hero.png" alt="Nexus Prime dashboard — memory graph
|
|
223
|
+
<img src="https://nexus-prime.cfd/assets/screenshots/dashboard_cockpit_hero.png" alt="Nexus Prime dashboard — the memory graph and live activity your coding agent has been missing" width="1024">
|
|
202
224
|
<br>
|
|
203
|
-
<sub><b>
|
|
225
|
+
<sub><b>The cockpit</b> — everything your agent is doing, everything it's remembered, everything it's saved you.</sub>
|
|
204
226
|
</div>
|
|
205
227
|
|
|
206
228
|
<br>
|
|
207
229
|
|
|
208
230
|
<div align="center">
|
|
209
|
-
<img src="https://nexus-prime.cfd/assets/screenshots/dashboard_knowledge_trace.png" alt="Nexus Prime knowledge trace —
|
|
231
|
+
<img src="https://nexus-prime.cfd/assets/screenshots/dashboard_knowledge_trace.png" alt="Nexus Prime knowledge trace — why the agent chose what it read" width="1024">
|
|
210
232
|
<br>
|
|
211
|
-
<sub><b>
|
|
233
|
+
<sub><b>The receipts</b> — every decision is traced, so you can see <i>why</i> your agent did what it did.</sub>
|
|
212
234
|
</div>
|
|
213
235
|
|
|
214
236
|
---
|
|
215
237
|
|
|
216
|
-
##
|
|
217
|
-
|
|
218
|
-
```
|
|
219
|
-
┌─────────────────────────┐
|
|
220
|
-
Claude Code ──┐ │ Nexus Prime Daemon │
|
|
221
|
-
Cursor ───────┤ │ │
|
|
222
|
-
Codex ────────┼──── MCP ────►│ ┌─────────────────────┐ │
|
|
223
|
-
Windsurf ─────┤ │ │ Orchestrator │ │
|
|
224
|
-
Aider ────────┤ │ └──────────┬──────────┘ │
|
|
225
|
-
(+5 more) ────┘ │ ▼ │
|
|
226
|
-
│ Knowledge Fabric │──► Dashboard :3377
|
|
227
|
-
│ ┌────┬────┬────┬─────┐ │
|
|
228
|
-
│ │Mem │RAG │Repo│Trace│ │
|
|
229
|
-
│ └────┴────┴────┴─────┘ │
|
|
230
|
-
│ ▼ │
|
|
231
|
-
│ Token Budget │
|
|
232
|
-
│ ▼ │
|
|
233
|
-
│ Worktree Runtime │
|
|
234
|
-
│ (ghost-pass) │
|
|
235
|
-
│ ▼ │
|
|
236
|
-
│ SQLite (local) │
|
|
237
|
-
└──────────────────────────┘
|
|
238
|
-
```
|
|
239
|
-
|
|
240
|
-
### The three pillars
|
|
238
|
+
## Works with
|
|
241
239
|
|
|
242
|
-
|
|
243
|
-
|--------|------|------------|
|
|
244
|
-
| 🧠 **Brain** | Thinks before the agent reads | Orchestrator · Memory Fabric · Token Supremacy · Knowledge Graph · Phantom Execution |
|
|
245
|
-
| 🤝 **Workforce** | Decomposes and executes | Synapse (autonomous operative hiring) · Architects (structured work management) |
|
|
246
|
-
| 👁️ **Eyes** | Makes it observable | Live dashboard · Memory topology · Token telemetry · Execution history |
|
|
247
|
-
|
|
248
|
-
### The default flow
|
|
249
|
-
|
|
250
|
-
```
|
|
251
|
-
nexus_session_bootstrap(goal, files?) ← automatic on first tool call
|
|
252
|
-
↓
|
|
253
|
-
nexus_orchestrate(prompt) ← picks specialists, routes work
|
|
254
|
-
↓
|
|
255
|
-
Worktree Runtime ← isolated git + ghost-pass + merge oracle
|
|
256
|
-
↓
|
|
257
|
-
Runtime Truth ← packets, ledger, session DNA persisted
|
|
258
|
-
```
|
|
259
|
-
|
|
260
|
-
You don't call these yourself. Your agent does, automatically, on every turn.
|
|
261
|
-
|
|
262
|
-
---
|
|
263
|
-
|
|
264
|
-
## Supported agents
|
|
265
|
-
|
|
266
|
-
Nexus Prime auto-configures MCP for **9 coding agents** with one command:
|
|
240
|
+
Nexus Prime wires up every major coding agent with one command:
|
|
267
241
|
|
|
268
242
|
<div align="center">
|
|
269
243
|
|
|
270
244
|
| | | |
|
|
271
245
|
|:---:|:---:|:---:|
|
|
272
246
|
| **Claude Code** | **Cursor** | **Codex** |
|
|
273
|
-
| `setup claude` | `setup cursor` | `setup codex` |
|
|
274
247
|
| **Windsurf** | **OpenCode** | **Antigravity** |
|
|
275
|
-
| `setup windsurf` | `setup opencode` | `setup antigravity` |
|
|
276
248
|
| **Aider** | **Continue.dev** | **Cline** |
|
|
277
|
-
| `setup aider` | `setup continue` | `setup cline` |
|
|
278
249
|
|
|
279
250
|
</div>
|
|
280
251
|
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
---
|
|
284
|
-
|
|
285
|
-
## Real numbers
|
|
286
|
-
|
|
287
|
-
Numbers from real users running real workflows:
|
|
288
|
-
|
|
289
|
-
| Metric | Typical before | Typical after | Delta |
|
|
290
|
-
|--------|---------------:|--------------:|------:|
|
|
291
|
-
| Input tokens per session | 10M–100M | 1M–10M | **60–90% ↓** |
|
|
292
|
-
| Cold-start context time | 30s–2min | <1s | **~100× ↓** |
|
|
293
|
-
| Memory across sessions | ❌ None | ✓ Full | — |
|
|
294
|
-
| Multi-agent state share | ❌ None | ✓ Instant | — |
|
|
295
|
-
| Failed multi-file edits | Common | Rare (ghost-pass gate) | — |
|
|
252
|
+
Pick one: `nexus-prime setup claude` · `setup cursor` · `setup codex` · `setup windsurf` · `setup opencode` · `setup antigravity` · `setup aider` · `setup continue` · `setup cline`
|
|
296
253
|
|
|
297
|
-
|
|
254
|
+
Or just wire everything: **`nexus-prime setup all`**
|
|
298
255
|
|
|
299
256
|
---
|
|
300
257
|
|
|
301
|
-
##
|
|
258
|
+
## Competitive position
|
|
302
259
|
|
|
303
|
-
-
|
|
304
|
-
- **🧠 AI infra builders** who measure token ROI and refuse cloud lock-in
|
|
305
|
-
- **🏢 Platform teams** deploying coding agents across a fleet and need a control surface
|
|
306
|
-
- **⚙️ Deep-tech power users** who've hit every context-window wall and want a real fix
|
|
307
|
-
- **📊 Anyone** who's paid a five-figure monthly LLM bill and wondered where the tokens went
|
|
260
|
+
Nexus Prime is the only control plane that remembers the repo, budgets the tokens, and ghost-passes every mutation — locally, in one process. Compare head-to-head on [nexus-prime.cfd/comparison.html](https://nexus-prime.cfd/comparison.html) or read the full docs on [nexus-prime.cfd/knowledge-base.html](https://nexus-prime.cfd/knowledge-base.html).
|
|
308
261
|
|
|
309
262
|
---
|
|
310
263
|
|
|
311
|
-
##
|
|
264
|
+
## What users see
|
|
312
265
|
|
|
313
|
-
|
|
266
|
+
Numbers from real users running real workflows on their own machines:
|
|
314
267
|
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
268
|
+
| Metric | Typical before | Typical after | What it means |
|
|
269
|
+
|--------|---------------:|--------------:|:--------------|
|
|
270
|
+
| Input tokens per session | 10M – 100M | 1M – 10M | **60–90% lower bills** |
|
|
271
|
+
| Cold-start context time | 30s – 2 min | under a second | Agents feel instant |
|
|
272
|
+
| Memory across sessions | None | Full | Nothing gets forgotten |
|
|
273
|
+
| Multi-agent state sharing | None | Real-time | Your tools stop fighting each other |
|
|
274
|
+
| Half-broken multi-file edits | Common | Rare | Merge with confidence |
|
|
322
275
|
|
|
323
|
-
|
|
324
|
-
nexus-prime license status # check current plan
|
|
325
|
-
nexus-prime license activate <key> # activate Pro / Team / Enterprise
|
|
326
|
-
nexus-prime license sync # pull latest entitlements
|
|
327
|
-
```
|
|
328
|
-
|
|
329
|
-
→ [nexus-prime.cfd/pricing](https://nexus-prime.cfd/pricing)
|
|
276
|
+
No benchmarks from a press release — this is what the dashboard shows you, on day one.
|
|
330
277
|
|
|
331
278
|
---
|
|
332
279
|
|
|
333
|
-
##
|
|
334
|
-
|
|
335
|
-
### Embedding backends
|
|
336
|
-
|
|
337
|
-
Pick quality vs cost vs privacy — fully configurable, falls back gracefully.
|
|
338
|
-
|
|
339
|
-
| Backend | Env | Model | Tradeoff |
|
|
340
|
-
|---------|-----|-------|----------|
|
|
341
|
-
| **Local TF-IDF** *(default)* | `NEXUS_EMBED_MODE=local` | Built-in 128-dim | Zero setup, zero cost, fully offline |
|
|
342
|
-
| **Ollama** | `NEXUS_EMBED_MODE=ollama` | `nomic-embed-text` | Local LLM-grade quality |
|
|
343
|
-
| **HuggingFace** | `NEXUS_EMBED_MODE=huggingface` | `all-MiniLM-L6-v2` | Local, broader model choice |
|
|
344
|
-
| **OpenAI** | `NEXUS_EMBED_MODE=api` | `text-embedding-3-small` | Best quality, per-call cost |
|
|
280
|
+
## Who it's for
|
|
345
281
|
|
|
346
|
-
|
|
282
|
+
Nexus Prime is for people who take AI-assisted coding seriously:
|
|
347
283
|
|
|
348
|
-
|
|
284
|
+
- **Engineers** who ship with AI every day and want their agents to actually get better over time
|
|
285
|
+
- **Creators and indie hackers** burning through trial credits and wondering where the tokens went
|
|
286
|
+
- **Teams** running coding agents across multiple people, multiple tools, and multiple repos
|
|
287
|
+
- **Power users** who've hit every context-window wall and want a real fix
|
|
288
|
+
- **Anyone** who's paid a four- or five-figure monthly LLM bill and felt it
|
|
349
289
|
|
|
350
|
-
|
|
351
|
-
|----------|---------|
|
|
352
|
-
| `NEXUS_TELEMETRY` | `on` / `off` — consent to anonymous telemetry |
|
|
353
|
-
| `NEXUS_SEALED_MODE` | `1` to escalate medium-severity findings to blocking |
|
|
354
|
-
| `NEXUS_SELF_IMPROVE` | `1` / `0` — enable Darwin auto-proposal loop |
|
|
355
|
-
| `NEXUS_EMBED_MODE` | Embedding backend selection |
|
|
356
|
-
| `GITHUB_TOKEN` | Optional; falls back to `gh` CLI |
|
|
290
|
+
If any of that sounds like you — keep reading.
|
|
357
291
|
|
|
358
292
|
---
|
|
359
293
|
|
|
360
|
-
##
|
|
294
|
+
## Pricing
|
|
361
295
|
|
|
362
|
-
|
|
363
|
-
# Installation & setup
|
|
364
|
-
nexus-prime setup all # interactive wizard for every detected IDE
|
|
365
|
-
nexus-prime setup <client> # wire a specific IDE
|
|
366
|
-
|
|
367
|
-
# Daemon lifecycle
|
|
368
|
-
nexus-prime start # spawn shared background daemon
|
|
369
|
-
nexus-prime stop # graceful shutdown with memory flush
|
|
370
|
-
nexus-prime status # daemon health, version, uptime
|
|
371
|
-
nexus-prime restart # stop + start
|
|
372
|
-
|
|
373
|
-
# Observability
|
|
374
|
-
nexus-prime watch # live colour-coded MCP event tail
|
|
375
|
-
nexus-prime watch --all # every event, unfiltered
|
|
376
|
-
nexus-prime watch --filter <regex> # custom filter
|
|
377
|
-
|
|
378
|
-
# Licensing
|
|
379
|
-
nexus-prime license status
|
|
380
|
-
nexus-prime license activate <key>
|
|
381
|
-
nexus-prime license sync
|
|
382
|
-
|
|
383
|
-
# Diagnostics
|
|
384
|
-
nexus-prime doctor # health check: DBs, permissions, peers
|
|
385
|
-
nexus-prime mcp # run as MCP server (stdio mode)
|
|
386
|
-
```
|
|
296
|
+
<div align="center">
|
|
387
297
|
|
|
388
|
-
|
|
298
|
+
**Free for 30 days. No credit card. No feature gating.**
|
|
389
299
|
|
|
390
|
-
|
|
300
|
+
</div>
|
|
391
301
|
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
302
|
+
<table>
|
|
303
|
+
<tr>
|
|
304
|
+
<th>Plan</th>
|
|
305
|
+
<th>Who it's for</th>
|
|
306
|
+
<th>Price</th>
|
|
307
|
+
<th>Caps</th>
|
|
308
|
+
</tr>
|
|
309
|
+
<tr>
|
|
310
|
+
<td><b>🎁 Free Trial</b></td>
|
|
311
|
+
<td>Everyone — try it risk-free</td>
|
|
312
|
+
<td>Free for 30 days</td>
|
|
313
|
+
<td>All Pro features</td>
|
|
314
|
+
</tr>
|
|
315
|
+
<tr>
|
|
316
|
+
<td><b>💎 Independent Creators</b></td>
|
|
317
|
+
<td>Indie builders, solo engineers, students, OSS maintainers</td>
|
|
318
|
+
<td><b>Free forever</b></td>
|
|
319
|
+
<td>Unlimited usage on personal projects</td>
|
|
320
|
+
</tr>
|
|
321
|
+
<tr>
|
|
322
|
+
<td><b>🚀 Pilot Program</b></td>
|
|
323
|
+
<td>First 10 companies onboarding Nexus Prime</td>
|
|
324
|
+
<td><b>Free pilot</b> — contact us</td>
|
|
325
|
+
<td>Full Team features, white-glove onboarding</td>
|
|
326
|
+
</tr>
|
|
327
|
+
<tr>
|
|
328
|
+
<td><b>⚡ Pro</b></td>
|
|
329
|
+
<td>Professional engineers</td>
|
|
330
|
+
<td>See pricing page</td>
|
|
331
|
+
<td>10 projects · 10k memory entries · solo self-improvement</td>
|
|
332
|
+
</tr>
|
|
333
|
+
<tr>
|
|
334
|
+
<td><b>🏢 Team</b></td>
|
|
335
|
+
<td>Engineering teams</td>
|
|
336
|
+
<td>See pricing page</td>
|
|
337
|
+
<td>Unlimited projects · 100k memory entries · team coordination</td>
|
|
338
|
+
</tr>
|
|
339
|
+
<tr>
|
|
340
|
+
<td><b>🛡️ Enterprise</b></td>
|
|
341
|
+
<td>Larger orgs, regulated industries</td>
|
|
342
|
+
<td>Contact us</td>
|
|
343
|
+
<td>Unlimited everything · fleet features · dedicated support</td>
|
|
344
|
+
</tr>
|
|
345
|
+
</table>
|
|
402
346
|
|
|
403
|
-
|
|
347
|
+
```bash
|
|
348
|
+
nexus-prime license status # check your plan
|
|
349
|
+
nexus-prime license activate <key> # activate any paid tier
|
|
350
|
+
```
|
|
404
351
|
|
|
405
|
-
→ [
|
|
352
|
+
→ **[nexus-prime.cfd/pricing](https://nexus-prime.cfd/pricing)** · **[Apply to the pilot program](mailto:hello@nexus-prime.cfd?subject=Pilot%20Program)**
|
|
406
353
|
|
|
407
354
|
---
|
|
408
355
|
|
|
409
356
|
## FAQ
|
|
410
357
|
|
|
411
358
|
<details>
|
|
412
|
-
<summary><b>
|
|
359
|
+
<summary><b>Will my code ever leave my machine?</b></summary>
|
|
413
360
|
<br>
|
|
414
|
-
No. Everything runs locally
|
|
361
|
+
No. Everything runs locally. There is no cloud sync, no remote processing, no code upload. Anonymous usage telemetry is opt-in — you turn it on if you want, off by default.
|
|
415
362
|
</details>
|
|
416
363
|
|
|
417
364
|
<details>
|
|
418
|
-
<summary><b>
|
|
365
|
+
<summary><b>Does this replace Claude Code, Cursor, or my IDE?</b></summary>
|
|
419
366
|
<br>
|
|
420
|
-
No — it
|
|
367
|
+
No — it supercharges them. Keep the agents you already love. Nexus Prime adds memory, token budgeting, and safe execution underneath. You don't change your workflow; your workflow just gets better.
|
|
421
368
|
</details>
|
|
422
369
|
|
|
423
370
|
<details>
|
|
424
|
-
<summary><b>
|
|
371
|
+
<summary><b>What happens after the 30-day trial ends?</b></summary>
|
|
425
372
|
<br>
|
|
426
|
-
|
|
373
|
+
You're never locked out. You can keep using a free tier, pick a paid plan, or — if you're an independent creator — apply for free-forever access. Your memory, data, and projects stay yours either way.
|
|
427
374
|
</details>
|
|
428
375
|
|
|
429
376
|
<details>
|
|
430
|
-
<summary><b>
|
|
377
|
+
<summary><b>Is it free for indie developers and creators?</b></summary>
|
|
431
378
|
<br>
|
|
432
|
-
Yes
|
|
379
|
+
Yes. If you build independently — solo founder, indie dev, content creator, student, OSS maintainer — you qualify for unlimited free usage. Just <a href="mailto:hello@nexus-prime.cfd?subject=Creator%20Program">email us</a> and we'll sort it.
|
|
433
380
|
</details>
|
|
434
381
|
|
|
435
382
|
<details>
|
|
436
|
-
<summary><b>
|
|
383
|
+
<summary><b>My team wants to try this across the whole engineering org. What's the pilot?</b></summary>
|
|
437
384
|
<br>
|
|
438
|
-
|
|
385
|
+
We're taking <b>10 companies</b> into our pilot program — full Team features free, white-glove onboarding, direct access to the team building it. First come, first served. <a href="mailto:hello@nexus-prime.cfd?subject=Pilot%20Program">Reach out</a>.
|
|
439
386
|
</details>
|
|
440
387
|
|
|
441
388
|
<details>
|
|
442
|
-
<summary><b>
|
|
389
|
+
<summary><b>Will it actually speed my agent up?</b></summary>
|
|
443
390
|
<br>
|
|
444
|
-
Yes.
|
|
391
|
+
Yes. Less irrelevant context on the wire means faster turns and sharper responses. You also pay less per turn. The dashboard at <code>localhost:3377</code> shows you the exact savings in real time.
|
|
445
392
|
</details>
|
|
446
393
|
|
|
447
394
|
<details>
|
|
448
|
-
<summary><b>
|
|
395
|
+
<summary><b>Does it work on Windows?</b></summary>
|
|
449
396
|
<br>
|
|
450
|
-
|
|
397
|
+
Yes — Windows, macOS, and Linux are all first-class. Node 20+ is the only requirement.
|
|
451
398
|
</details>
|
|
452
399
|
|
|
453
400
|
<details>
|
|
454
|
-
<summary><b>
|
|
401
|
+
<summary><b>Can multiple team members share state?</b></summary>
|
|
455
402
|
<br>
|
|
456
|
-
|
|
403
|
+
Each engineer runs their own local instance — nothing is shared across machines by default. Team coordination features (shared memory, role-based access) are on the Team and Enterprise plans.
|
|
457
404
|
</details>
|
|
458
405
|
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|:------:|-----------|
|
|
465
|
-
| ✅ | v6 — Shared daemon, MCP strip, watch CLI, token optimizer fallback |
|
|
466
|
-
| 🔨 | v6.x — Memory scoping by operative, auto-token optimization call sites |
|
|
467
|
-
| 📐 | v7 — Federation relay (multi-machine state sync), Architects UI |
|
|
468
|
-
| 🔮 | v8 — Byzantine consensus for multi-agent review, simulation sandbox GA |
|
|
406
|
+
<details>
|
|
407
|
+
<summary><b>What if I hit my plan's cap?</b></summary>
|
|
408
|
+
<br>
|
|
409
|
+
Nothing stops working. You get a gentle in-app nudge and a link to upgrade. Your data is never held hostage.
|
|
410
|
+
</details>
|
|
469
411
|
|
|
470
|
-
|
|
412
|
+
<details>
|
|
413
|
+
<summary><b>Can I uninstall cleanly if I change my mind?</b></summary>
|
|
414
|
+
<br>
|
|
415
|
+
Yes. <code>nexus-prime stop && npm uninstall -g nexus-prime</code> — that's it. Your original agent setups keep working exactly as before.
|
|
416
|
+
</details>
|
|
471
417
|
|
|
472
418
|
---
|
|
473
419
|
|
|
474
|
-
##
|
|
475
|
-
|
|
476
|
-
PRs welcome. See [`CLAUDE.md`](./CLAUDE.md) for engineering guardrails:
|
|
420
|
+
## Privacy
|
|
477
421
|
|
|
478
|
-
|
|
479
|
-
- One logical change per commit.
|
|
480
|
-
- `npx tsc --noEmit` green before every commit, `bun test` green before every push.
|
|
481
|
-
- No sync I/O on the hot path (enforced by ESLint).
|
|
482
|
-
- Read [`docs/architecture/engine-taxonomy.md`](./docs/architecture/engine-taxonomy.md) before touching engines.
|
|
422
|
+
Nexus Prime was designed privacy-first, because the code on your machine is yours:
|
|
483
423
|
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
bun test
|
|
490
|
-
```
|
|
491
|
-
|
|
492
|
-
---
|
|
493
|
-
|
|
494
|
-
## Documentation
|
|
495
|
-
|
|
496
|
-
- 🌐 [**nexus-prime.cfd**](https://nexus-prime.cfd) — product site + interactive demo
|
|
497
|
-
- 💳 [**Pricing**](https://nexus-prime.cfd/pricing) — plan comparison
|
|
498
|
-
- 📚 [**Knowledge Base**](https://nexus-prime.cfd/knowledge-base.html) — runtime contract, packets, memory, telemetry
|
|
499
|
-
- 🧩 [**Catalog**](https://nexus-prime.cfd/catalog.html) — every MCP surface, client, subsystem
|
|
500
|
-
- 🏗️ [**Architecture Diagrams**](https://nexus-prime.cfd/architecture-diagrams.html) — control plane, memory fabric, RAG gate, token budget
|
|
501
|
-
- 🔌 [**Integrations**](https://nexus-prime.cfd/integrations.html) — verified setup per client
|
|
502
|
-
- 🆚 [**Comparison**](https://nexus-prime.cfd/comparison.html) — vs session memory tools
|
|
424
|
+
- 🏠 **100% local.** All data lives on your disk, in your home directory.
|
|
425
|
+
- 🚫 **No cloud sync.** Your code, your memory, your logs — never uploaded.
|
|
426
|
+
- 🔐 **No required account.** You can run the free trial without signing up for anything.
|
|
427
|
+
- 📊 **Telemetry is opt-in.** Off by default. When on, only aggregate, anonymous event counts are sent — never source code, never memory contents.
|
|
428
|
+
- 🗑️ **Uninstall is clean.** Everything lives in one directory you can delete.
|
|
503
429
|
|
|
504
430
|
---
|
|
505
431
|
|
|
@@ -507,13 +433,13 @@ bun test
|
|
|
507
433
|
|
|
508
434
|
<div align="center">
|
|
509
435
|
|
|
510
|
-
| Channel |
|
|
511
|
-
|
|
512
|
-
| 💬 [**Discord**](https://discord.gg/tByGZgk5gS) | Real-time help, show-and-tell, feature
|
|
513
|
-
| 🔴 [**Reddit**](https://www.reddit.com/r/Nexus_Prime/) | Long-form posts, releases, community wins |
|
|
514
|
-
| 🐦 [**X / Twitter**](https://x.com/nexusprime_ai) | Launch announcements,
|
|
515
|
-
|
|
|
516
|
-
|
|
|
436
|
+
| Channel | What to use it for |
|
|
437
|
+
|---------|-------------------|
|
|
438
|
+
| 💬 [**Discord**](https://discord.gg/tByGZgk5gS) | Real-time help, show-and-tell, feature ideas |
|
|
439
|
+
| 🔴 [**Reddit — r/Nexus_Prime**](https://www.reddit.com/r/Nexus_Prime/) | Long-form posts, releases, community wins |
|
|
440
|
+
| 🐦 [**X / Twitter**](https://x.com/nexusprime_ai) | Launch announcements, tips, updates |
|
|
441
|
+
| 📧 [**hello@nexus-prime.cfd**](mailto:hello@nexus-prime.cfd) | Pilot program, creator program, enterprise, press |
|
|
442
|
+
| 🌐 [**nexus-prime.cfd**](https://nexus-prime.cfd) | Product site, demos, pricing, setup guides |
|
|
517
443
|
|
|
518
444
|
</div>
|
|
519
445
|
|
|
@@ -521,16 +447,23 @@ bun test
|
|
|
521
447
|
|
|
522
448
|
## License
|
|
523
449
|
|
|
524
|
-
|
|
450
|
+
Nexus Prime is a **commercial product** with generous free tiers:
|
|
451
|
+
|
|
452
|
+
- ✅ Free for 30 days, for everyone
|
|
453
|
+
- ✅ Free forever for independent creators
|
|
454
|
+
- ✅ Free pilot for the first 10 partner companies
|
|
455
|
+
- 💳 Paid plans for professional, team, and enterprise usage
|
|
456
|
+
|
|
457
|
+
Commercial use without a valid license is prohibited. See [nexus-prime.cfd/pricing](https://nexus-prime.cfd/pricing) for current plans and terms.
|
|
525
458
|
|
|
526
459
|
<div align="center">
|
|
527
460
|
|
|
528
461
|
<br>
|
|
529
462
|
|
|
530
|
-
<sub>Built for engineers who ship. ·
|
|
463
|
+
<sub>Built for engineers who ship. · Local-first. · Privacy-first. · Cloud-free.</sub>
|
|
531
464
|
|
|
532
465
|
<br><br>
|
|
533
466
|
|
|
534
|
-
<sub>If Nexus Prime
|
|
467
|
+
<sub>If Nexus Prime ends your agent's amnesia, tell another engineer. That's how good tools spread. 🧠</sub>
|
|
535
468
|
|
|
536
469
|
</div>
|