automagik-forge 0.2.16-beta.7 → 0.2.17

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/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ## Quick Start
6
6
 
7
- Run automagik forge instantly without installation:
7
+ Run vibe kanban instantly without installation:
8
8
 
9
9
  ```bash
10
10
  npx automagik-forge
package/bin/cli.js CHANGED
@@ -218,8 +218,8 @@ function extractAndRun(baseName, launch) {
218
218
  }
219
219
 
220
220
  if (isMcpMode || isMcpSseMode) {
221
- extractAndRun("mcp_task_server", (bin) => {
222
- const mcpArgs = isMcpSseMode ? ["--mcp-sse"] : ["--mcp"];
221
+ extractAndRun("automagik-forge-mcp", (bin) => {
222
+ const mcpArgs = isMcpSseMode ? ["--mcp-sse"] : [];
223
223
  console.log(`Starting MCP server with ${isMcpSseMode ? 'SSE + STDIO' : 'STDIO'} transport...`);
224
224
 
225
225
  // Environment variables are already loaded from .env file
@@ -245,7 +245,7 @@ if (isMcpMode || isMcpSseMode) {
245
245
  });
246
246
  } else {
247
247
  // Start both main backend server and MCP SSE server concurrently
248
- console.log(`📦 Extracting automagik-forge and mcp_task_server...`);
248
+ console.log(`📦 Extracting automagik-forge and automagik-forge-mcp...`);
249
249
 
250
250
  // Environment variables are loaded from .env file
251
251
  // Use safe defaults (localhost only) unless overridden
@@ -310,7 +310,7 @@ if (isMcpMode || isMcpSseMode) {
310
310
  });
311
311
 
312
312
  // Extract and start MCP SSE server
313
- extractAndRun("mcp_task_server", (mcpBin) => {
313
+ extractAndRun("automagik-forge-mcp", (mcpBin) => {
314
314
  console.log(`🚀 Starting MCP SSE server on http://${host}:${mcpSsePort}/sse...`);
315
315
  mcpServerProc = spawn(mcpBin, ["--mcp-sse"], {
316
316
  stdio: ["pipe", "pipe", "pipe"],
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "automagik-forge",
3
3
  "private": false,
4
- "version": "0.2.16-beta.7",
4
+ "version": "0.2.17",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "automagik-forge": "bin/cli.js"
Binary file