@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemcp/workflows",
3
- "version": "6.0.2",
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.2"
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("@codemcp/workflows-server") || process.argv[1]?.endsWith("index.js");
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-UGVUJIDN.js");
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");
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemcp/workflows-cli",
3
- "version": "6.0.2",
3
+ "version": "6.0.3",
4
4
  "description": "CLI tools for responsible-vibe development workflows",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemcp/workflows-core",
3
- "version": "6.0.2",
3
+ "version": "6.0.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemcp/workflows-docs",
3
- "version": "6.0.2",
3
+ "version": "6.0.3",
4
4
  "description": "Documentation site for Responsible Vibe MCP",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -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("@codemcp/workflows-server") || process.argv[1]?.endsWith("index.js");
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
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemcp/workflows-server",
3
- "version": "6.0.2",
3
+ "version": "6.0.3",
4
4
  "description": "MCP server for responsible-vibe development workflows - provides structured workflow guidance",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemcp/workflows-visualizer",
3
- "version": "6.0.2",
3
+ "version": "6.0.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.ts",
6
6
  "module": "dist/index.ts",