@chinchillaenterprises/mcp-claude-channel 0.3.1 → 0.3.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/dist/index.js +1 -1
- package/package.json +6 -1
package/dist/index.js
CHANGED
|
@@ -44,7 +44,7 @@ import { Ingestor } from "./ingest.js";
|
|
|
44
44
|
import { Router } from "./router.js";
|
|
45
45
|
import { appendLine } from "./fileio.js";
|
|
46
46
|
import { FleetBoard, boardPath } from "./fleet-board.js";
|
|
47
|
-
const VERSION = "0.3.
|
|
47
|
+
const VERSION = "0.3.2";
|
|
48
48
|
function inboxPathFor(dir, lane) {
|
|
49
49
|
return join(dir, `chan-${lane}-in.jsonl`);
|
|
50
50
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chinchillaenterprises/mcp-claude-channel",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Claude Code side-door channel server. Lane↔lane: pushes a NUDGE into a live session via the official Channels notification (notifications/claude/channel) and a send_to_lane tool, plus a mirror_to_coordinator tool. v0.3 adds fleet-board presence tools (clock_in + heartbeat) that write lane presence to the SQLite fleet board (node:sqlite, zero native deps), matching the clockin.sh CLI schema so CLI + MCP interoperate.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/ChinchillaEnterprises/ChillMCP.git",
|
|
10
|
+
"directory": "active-mcps/communication/mcp-claude-channel"
|
|
11
|
+
},
|
|
7
12
|
"bin": {
|
|
8
13
|
"mcp-claude-channel": "./dist/index.js"
|
|
9
14
|
},
|