nexus-prime 7.9.11 → 7.9.12
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/dist/cli.js +7 -2
- package/dist/engines/mcp-entrypoint.js +7 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -221,7 +221,7 @@ function renderCodexManagedBlock(content) {
|
|
|
221
221
|
CODEX_MANAGED_START,
|
|
222
222
|
'## Nexus Prime Bootstrap (managed)',
|
|
223
223
|
'',
|
|
224
|
-
'> This block is managed by `nexus-prime setup codex
|
|
224
|
+
'> This block is managed by `nexus-prime setup codex` or automatic bootstrap.',
|
|
225
225
|
'> Keep your project-specific Codex guidance above or below it.',
|
|
226
226
|
'',
|
|
227
227
|
content.trim(),
|
|
@@ -815,6 +815,11 @@ program
|
|
|
815
815
|
// stdio transport requires strict JSON-RPC on stdout — no console.log here.
|
|
816
816
|
const workspaceContext = resolveWorkspaceContext({ workspaceRoot: getWorkspaceRoot() });
|
|
817
817
|
const caller = detectCallerIDE();
|
|
818
|
+
process.env.NEXUS_DAEMON_AUTOSPAWN ??= '0';
|
|
819
|
+
process.env.NEXUS_DASHBOARD_IN_MCP ??= '0';
|
|
820
|
+
process.env.NEXUS_ARCHITECTS_LAZY ??= '1';
|
|
821
|
+
process.env.NEXUS_SYNAPSE_LAZY ??= '1';
|
|
822
|
+
process.env.NEXUS_AUTOMATION_SCHEDULER_DISABLED ??= '1';
|
|
818
823
|
const marker = readSetupMarker();
|
|
819
824
|
const autoConfigEnabled = process.env.NEXUS_MCP_AUTO_CONFIG === '1';
|
|
820
825
|
if (caller && autoConfigEnabled) {
|
|
@@ -866,7 +871,7 @@ program
|
|
|
866
871
|
console.error(`[nexus-prime] ${caller} MCP config written. Future runs skip this step.`);
|
|
867
872
|
}
|
|
868
873
|
catch (err) {
|
|
869
|
-
console.error(`[nexus-prime] Auto-config failed: ${err?.message ?? err}. Run \`
|
|
874
|
+
console.error(`[nexus-prime] Auto-config failed: ${err?.message ?? err}. Run \`nexus-prime setup\` manually.`);
|
|
870
875
|
}
|
|
871
876
|
}
|
|
872
877
|
}
|
|
@@ -9,6 +9,11 @@ export function buildNexusMcpEnv(workspaceRoot) {
|
|
|
9
9
|
NEXUS_MCP_TOOL_PROFILE: 'autonomous',
|
|
10
10
|
NEXUS_MCP_AUTO_CONFIG: '0',
|
|
11
11
|
NEXUS_MCP_DAEMON_TIMEOUT_MS: '5000',
|
|
12
|
+
NEXUS_DAEMON_AUTOSPAWN: '0',
|
|
13
|
+
NEXUS_DASHBOARD_IN_MCP: '0',
|
|
14
|
+
NEXUS_ARCHITECTS_LAZY: '1',
|
|
15
|
+
NEXUS_SYNAPSE_LAZY: '1',
|
|
16
|
+
NEXUS_AUTOMATION_SCHEDULER_DISABLED: '1',
|
|
12
17
|
...(workspaceRoot ? { NEXUS_WORKSPACE_ROOT: workspaceRoot } : {}),
|
|
13
18
|
};
|
|
14
19
|
}
|
|
@@ -29,5 +34,6 @@ export function isStableNexusMcpServerConfig(server, envKey = 'env') {
|
|
|
29
34
|
&& args.includes('mcp')
|
|
30
35
|
&& !args.includes('-y')
|
|
31
36
|
&& env?.NEXUS_MCP_TOOL_PROFILE === 'autonomous'
|
|
32
|
-
&& env?.NEXUS_MCP_AUTO_CONFIG === '0'
|
|
37
|
+
&& env?.NEXUS_MCP_AUTO_CONFIG === '0'
|
|
38
|
+
&& env?.NEXUS_DAEMON_AUTOSPAWN === '0');
|
|
33
39
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexus-prime",
|
|
3
|
-
"version": "7.9.
|
|
3
|
+
"version": "7.9.12",
|
|
4
4
|
"description": "Local-first MCP control plane for coding agents with bootstrap-orchestrate execution, memory fabric, token budgeting, and worktree-backed swarms",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|