automagik-forge 0.3.1 → 0.3.4

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
@@ -1,4 +1,4 @@
1
- # Vibe Kanban
1
+ # Automagik Forge
2
2
 
3
3
  > A visual project management tool for developers that integrates with git repositories and coding agents like Claude Code and Amp.
4
4
 
@@ -12,9 +12,9 @@ npx vibe-kanban
12
12
 
13
13
  This will launch the application locally and open it in your browser automatically.
14
14
 
15
- ## What is Vibe Kanban?
15
+ ## What is Automagik Forge?
16
16
 
17
- Vibe Kanban is a modern project management tool designed specifically for developers. It helps you organize your coding projects with kanban-style task management while providing powerful integrations with git repositories and AI coding agents.
17
+ Automagik Forge is a modern project management tool designed specifically for developers. It helps you organize your coding projects with kanban-style task management while providing powerful integrations with git repositories and AI coding agents.
18
18
 
19
19
  ### ✨ Key Features
20
20
 
@@ -62,7 +62,7 @@ Vibe Kanban is a modern project management tool designed specifically for develo
62
62
 
63
63
  ## Core Functionality
64
64
 
65
- Vibe Kanban provides a complete project management experience with these key capabilities:
65
+ Automagik Forge provides a complete project management experience with these key capabilities:
66
66
 
67
67
  **Project Repository Management**
68
68
  - Full CRUD operations for managing coding projects
@@ -97,7 +97,7 @@ Vibe Kanban provides a complete project management experience with these key cap
97
97
 
98
98
  ## Configuration
99
99
 
100
- Vibe Kanban supports customization through its configuration system:
100
+ Automagik Forge supports customization through its configuration system:
101
101
 
102
102
  - **Editor Integration**: Choose your preferred code editor
103
103
  - **Sound Notifications**: Customize completion sounds
package/bin/cli.js CHANGED
@@ -98,8 +98,9 @@ function extractAndRun(baseName, launch) {
98
98
  }
99
99
 
100
100
  if (isMcpMode) {
101
- extractAndRun("vibe-kanban-mcp", (bin) => {
102
- const proc = spawn(bin, [], { stdio: "inherit" });
101
+ extractAndRun("automagik-forge-mcp", (bin) => {
102
+ const env = { ...process.env };
103
+ const proc = spawn(bin, [], { stdio: "inherit", env });
103
104
  proc.on("exit", (c) => process.exit(c || 0));
104
105
  proc.on("error", (e) => {
105
106
  console.error("❌ MCP server error:", e.message);
@@ -113,12 +114,19 @@ if (isMcpMode) {
113
114
  });
114
115
  } else {
115
116
  console.log(`📦 Extracting automagik-forge...`);
116
- extractAndRun("vibe-kanban", (bin) => {
117
+ extractAndRun("automagik-forge", (bin) => {
117
118
  console.log(`🚀 Launching automagik-forge...`);
119
+
120
+ // Set default environment variables if not already set
121
+ const env = { ...process.env };
122
+ if (!env.BACKEND_PORT && !env.PORT) {
123
+ env.BACKEND_PORT = "8887";
124
+ }
125
+
118
126
  if (platform === "win32") {
119
- execSync(`"${bin}"`, { stdio: "inherit" });
127
+ execSync(`"${bin}"`, { stdio: "inherit", env });
120
128
  } else {
121
- execSync(`"${bin}"`, { stdio: "inherit" });
129
+ execSync(`"${bin}"`, { stdio: "inherit", env });
122
130
  }
123
131
  });
124
132
  }
@@ -0,0 +1 @@
1
+ Binaries for linux-arm64 need to be built on that platform
@@ -0,0 +1 @@
1
+ Binaries for macos-arm64 need to be built on that platform
@@ -0,0 +1 @@
1
+ Binaries for macos-x64 need to be built on that platform
@@ -0,0 +1 @@
1
+ Binaries for windows-arm64 need to be built on that platform
@@ -0,0 +1 @@
1
+ Binaries for windows-x64 need to be built on that platform
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "automagik-forge",
3
3
  "private": false,
4
- "version": "0.3.1",
4
+ "version": "0.3.4",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "automagik-forge": "bin/cli.js"
Binary file