zenarc-mcp 1.0.0 → 1.0.2

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
@@ -6,10 +6,18 @@ ZenArc replaces scattered `TODO.md` files with structured, agent-friendly YAML t
6
6
 
7
7
  ## Install
8
8
 
9
+ ### From npm
10
+
9
11
  ```bash
10
12
  npm install -g zenarc-mcp
11
13
  ```
12
14
 
15
+ ### From GitHub
16
+
17
+ ```bash
18
+ npm install -g zenarc-dev/zenarc-mcp
19
+ ```
20
+
13
21
  Requires Node.js ≥ 20.
14
22
 
15
23
  ## Claude Code Setup
File without changes
package/dist/server.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zenarc-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "ZenArc MCP server — AI-native task management for Claude Code via Model Context Protocol",
5
5
  "type": "module",
6
6
  "bin": {
@@ -17,6 +17,7 @@
17
17
  },
18
18
  "scripts": {
19
19
  "build": "tsc",
20
+ "postbuild": "chmod +x dist/server.js dist/core/bin/migrate.js",
20
21
  "dev": "tsc --watch",
21
22
  "start": "node dist/server.js",
22
23
  "migrate": "node dist/core/bin/migrate.js",
@@ -47,6 +48,6 @@
47
48
  "license": "MIT",
48
49
  "repository": {
49
50
  "type": "git",
50
- "url": "git+https://github.com/yosukesakurai/zenarc-mcp.git"
51
+ "url": "git+https://github.com/zenarc-dev/zenarc-mcp.git"
51
52
  }
52
53
  }