@codemcp/workflows 6.0.2 → 6.0.3
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 +2 -2
- package/packages/cli/dist/{dist-UGVUJIDN.js → dist-6TO57O6M.js} +3 -2
- package/packages/cli/dist/index.js +4 -2
- package/packages/cli/package.json +1 -1
- package/packages/core/package.json +1 -1
- package/packages/docs/package.json +1 -1
- package/packages/mcp-server/dist/index.js +3 -2
- package/packages/mcp-server/package.json +1 -1
- package/packages/visualizer/package.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemcp/workflows",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.3",
|
|
4
4
|
"description": "A Model Context Protocol server that acts as an intelligent conversation state manager and development guide for LLMs, featuring comprehensive long-term memory with persistent project artifacts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "packages/cli/dist/index.js",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"typescript": "^5.9.3",
|
|
52
52
|
"vitepress": "^1.6.4",
|
|
53
53
|
"vitest": "4.0.18",
|
|
54
|
-
"@codemcp/workflows-core": "6.0.
|
|
54
|
+
"@codemcp/workflows-core": "6.0.3"
|
|
55
55
|
},
|
|
56
56
|
"lint-staged": {
|
|
57
57
|
"*.{ts,js,mts,cts,tsx,jsx}": [
|
|
@@ -14457,7 +14457,7 @@ async function main() {
|
|
|
14457
14457
|
process.exit(1);
|
|
14458
14458
|
}
|
|
14459
14459
|
}
|
|
14460
|
-
var isMainModule = import.meta.url === `file://${process.argv[1]}` || process.argv[1]?.endsWith("
|
|
14460
|
+
var isMainModule = import.meta.url === `file://${process.argv[1]}` || process.argv[1]?.endsWith("ade-workflows-server") || process.argv[1]?.endsWith("index.js");
|
|
14461
14461
|
if (isMainModule) {
|
|
14462
14462
|
await main().catch((error) => {
|
|
14463
14463
|
logger37.error("Unhandled error in main", error);
|
|
@@ -14466,7 +14466,8 @@ if (isMainModule) {
|
|
|
14466
14466
|
}
|
|
14467
14467
|
export {
|
|
14468
14468
|
ResponsibleVibeMCPServer,
|
|
14469
|
-
createResponsibleVibeMCPServer
|
|
14469
|
+
createResponsibleVibeMCPServer,
|
|
14470
|
+
main as startMcpServer
|
|
14470
14471
|
};
|
|
14471
14472
|
/*! Bundled license information:
|
|
14472
14473
|
|
|
@@ -10,10 +10,12 @@ var args = process.argv.slice(2);
|
|
|
10
10
|
if (args.length === 0) {
|
|
11
11
|
const isLocal = existsSync(join(__dirname, "../../mcp-server/dist/index.js"));
|
|
12
12
|
if (isLocal) {
|
|
13
|
-
import("./dist-
|
|
13
|
+
const { startMcpServer } = await import("./dist-6TO57O6M.js");
|
|
14
|
+
await startMcpServer();
|
|
14
15
|
} else {
|
|
15
16
|
const mcpServerModule = "@codemcp/workflows-server";
|
|
16
|
-
import(mcpServerModule);
|
|
17
|
+
const { startMcpServer } = await import(mcpServerModule);
|
|
18
|
+
await startMcpServer();
|
|
17
19
|
}
|
|
18
20
|
} else {
|
|
19
21
|
const { runCli } = await import("./cli-CZ4FMSWR.js");
|
|
@@ -10528,7 +10528,7 @@ async function main() {
|
|
|
10528
10528
|
process.exit(1);
|
|
10529
10529
|
}
|
|
10530
10530
|
}
|
|
10531
|
-
var isMainModule = import.meta.url === `file://${process.argv[1]}` || process.argv[1]?.endsWith("
|
|
10531
|
+
var isMainModule = import.meta.url === `file://${process.argv[1]}` || process.argv[1]?.endsWith("ade-workflows-server") || process.argv[1]?.endsWith("index.js");
|
|
10532
10532
|
if (isMainModule) {
|
|
10533
10533
|
await main().catch((error) => {
|
|
10534
10534
|
logger37.error("Unhandled error in main", error);
|
|
@@ -10537,7 +10537,8 @@ if (isMainModule) {
|
|
|
10537
10537
|
}
|
|
10538
10538
|
export {
|
|
10539
10539
|
ResponsibleVibeMCPServer,
|
|
10540
|
-
createResponsibleVibeMCPServer
|
|
10540
|
+
createResponsibleVibeMCPServer,
|
|
10541
|
+
main as startMcpServer
|
|
10541
10542
|
};
|
|
10542
10543
|
/*! Bundled license information:
|
|
10543
10544
|
|