@neurcode-ai/cli 0.15.9 → 0.16.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/dist/commands/cursor.d.ts.map +1 -1
- package/dist/commands/cursor.js +60 -17
- package/dist/commands/cursor.js.map +1 -1
- package/dist/commands/runtime-adapter.d.ts.map +1 -1
- package/dist/commands/runtime-adapter.js +10 -5
- package/dist/commands/runtime-adapter.js.map +1 -1
- package/dist/commands/verify.d.ts.map +1 -1
- package/dist/commands/verify.js +5 -1
- package/dist/commands/verify.js.map +1 -1
- package/dist/utils/agent-guard.d.ts.map +1 -1
- package/dist/utils/agent-guard.js +49 -5
- package/dist/utils/agent-guard.js.map +1 -1
- package/dist/utils/cursor-gate.d.ts +2 -0
- package/dist/utils/cursor-gate.d.ts.map +1 -1
- package/dist/utils/cursor-gate.js +11 -1
- package/dist/utils/cursor-gate.js.map +1 -1
- package/dist/utils/cursor-mcp-agent.d.ts +25 -0
- package/dist/utils/cursor-mcp-agent.d.ts.map +1 -0
- package/dist/utils/cursor-mcp-agent.js +168 -0
- package/dist/utils/cursor-mcp-agent.js.map +1 -0
- package/dist/utils/cursor-pilot-readiness.d.ts +16 -0
- package/dist/utils/cursor-pilot-readiness.d.ts.map +1 -0
- package/dist/utils/cursor-pilot-readiness.js +36 -0
- package/dist/utils/cursor-pilot-readiness.js.map +1 -0
- package/dist/utils/mcp-server-pin.d.ts +1 -1
- package/dist/utils/mcp-server-pin.js +1 -1
- package/package.json +2 -2
|
@@ -18,7 +18,7 @@ const node_os_1 = require("node:os");
|
|
|
18
18
|
const node_path_1 = require("node:path");
|
|
19
19
|
const node_child_process_1 = require("node:child_process");
|
|
20
20
|
exports.MCP_SERVER_PACKAGE = '@neurcode-ai/mcp-server';
|
|
21
|
-
exports.MIN_MCP_SERVER_VERSION = '0.2.
|
|
21
|
+
exports.MIN_MCP_SERVER_VERSION = '0.2.5';
|
|
22
22
|
/** Legacy relative paths fail when Cursor MCP cwd is not the workspace root. */
|
|
23
23
|
exports.PINNED_MCP_ENTRY_RELATIVE = 'mcp-server/node_modules/@neurcode-ai/mcp-server/dist/index.js';
|
|
24
24
|
function pinnedMcpBaseRoot(repoRoot, global = false) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neurcode-ai/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.1",
|
|
4
4
|
"description": "Neurcode CLI \u2014 deterministic operational governance runtime for AI-assisted engineering (intent contracts, import-edge governance, replay continuity)",
|
|
5
5
|
"bin": {
|
|
6
6
|
"neurcode": "dist/index.js"
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@neurcode-ai/analysis": "^0.1.3",
|
|
42
42
|
"@neurcode-ai/brain": "^0.1.3",
|
|
43
|
-
"@neurcode-ai/contracts": "^0.1.
|
|
43
|
+
"@neurcode-ai/contracts": "^0.1.3",
|
|
44
44
|
"@neurcode-ai/core": "^0.1.0",
|
|
45
45
|
"@neurcode-ai/diff-parser": "^0.1.0",
|
|
46
46
|
"@neurcode-ai/governance-runtime": "^0.1.5",
|