@danielblomma/cortex-mcp 1.5.0 → 1.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/package.json +1 -1
- package/scaffold/scripts/dashboard.mjs +3 -0
- package/scaffold/scripts/parsers/csharp.mjs +1 -1
- package/scaffold/scripts/parsers/dotnet/CSharpParser/CSharpParser.csproj +2 -1
- package/scaffold/scripts/parsers/dotnet/VbNetParser/VbNetParser.csproj +2 -1
- package/scaffold/scripts/parsers/vbnet.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danielblomma/cortex-mcp",
|
|
3
3
|
"mcpName": "io.github.DanielBlomma/cortex",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.7.0",
|
|
5
5
|
"description": "Local, repo-scoped context platform for coding assistants. Semantic search, graph relationships, and architectural rule context.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"author": "Daniel Blomma",
|
|
@@ -199,6 +199,7 @@ function computeFreshness(manifest) {
|
|
|
199
199
|
try {
|
|
200
200
|
const output = execSync("git status --porcelain", {
|
|
201
201
|
cwd: REPO_ROOT, stdio: ["ignore", "pipe", "ignore"], encoding: "utf8", timeout: 3000,
|
|
202
|
+
shell: true,
|
|
202
203
|
});
|
|
203
204
|
|
|
204
205
|
for (const rawLine of output.split(/\r?\n/)) {
|
|
@@ -280,6 +281,7 @@ function getLocalCliVersion() {
|
|
|
280
281
|
stdio: ["ignore", "pipe", "ignore"],
|
|
281
282
|
encoding: "utf8",
|
|
282
283
|
timeout: 1500,
|
|
284
|
+
shell: true,
|
|
283
285
|
}).trim();
|
|
284
286
|
if (parseVersion(output)) {
|
|
285
287
|
return output;
|
|
@@ -325,6 +327,7 @@ function getVersionStatus() {
|
|
|
325
327
|
encoding: "utf8",
|
|
326
328
|
timeout: 2500,
|
|
327
329
|
env: { ...process.env, NPM_CONFIG_CACHE: npmCache },
|
|
330
|
+
shell: true,
|
|
328
331
|
}).trim();
|
|
329
332
|
const parsedLatest = JSON.parse(latestRaw);
|
|
330
333
|
const latest = Array.isArray(parsedLatest)
|
|
@@ -20,7 +20,7 @@ const __filename = fileURLToPath(import.meta.url);
|
|
|
20
20
|
const __dirname = path.dirname(__filename);
|
|
21
21
|
const DEFAULT_DOTNET_COMMAND = "dotnet";
|
|
22
22
|
const DEFAULT_PROJECT_PATH = path.join(__dirname, "dotnet", "CSharpParser", "CSharpParser.csproj");
|
|
23
|
-
const DEFAULT_TARGET_FRAMEWORK = "
|
|
23
|
+
const DEFAULT_TARGET_FRAMEWORK = "net8.0";
|
|
24
24
|
|
|
25
25
|
let runtimeCache = null;
|
|
26
26
|
let publishCache = null;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
2
2
|
<PropertyGroup>
|
|
3
3
|
<OutputType>Exe</OutputType>
|
|
4
|
-
<TargetFramework>
|
|
4
|
+
<TargetFramework>net8.0</TargetFramework>
|
|
5
|
+
<RollForward>Major</RollForward>
|
|
5
6
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
6
7
|
<Nullable>enable</Nullable>
|
|
7
8
|
<LangVersion>latest</LangVersion>
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
2
2
|
<PropertyGroup>
|
|
3
3
|
<OutputType>Exe</OutputType>
|
|
4
|
-
<TargetFramework>
|
|
4
|
+
<TargetFramework>net8.0</TargetFramework>
|
|
5
|
+
<RollForward>Major</RollForward>
|
|
5
6
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
6
7
|
<Nullable>enable</Nullable>
|
|
7
8
|
<LangVersion>latest</LangVersion>
|
|
@@ -20,7 +20,7 @@ const __filename = fileURLToPath(import.meta.url);
|
|
|
20
20
|
const __dirname = path.dirname(__filename);
|
|
21
21
|
const DEFAULT_DOTNET_COMMAND = "dotnet";
|
|
22
22
|
const DEFAULT_PROJECT_PATH = path.join(__dirname, "dotnet", "VbNetParser", "VbNetParser.csproj");
|
|
23
|
-
const DEFAULT_TARGET_FRAMEWORK = "
|
|
23
|
+
const DEFAULT_TARGET_FRAMEWORK = "net8.0";
|
|
24
24
|
|
|
25
25
|
let runtimeCache = null;
|
|
26
26
|
let publishCache = null;
|