@schoolai/shipyard-mcp 0.1.0
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/LICENSE.md +105 -0
- package/README.md +221 -0
- package/apps/hook/README.md +273 -0
- package/apps/hook/dist/index.js +3078 -0
- package/apps/server/.env.example +20 -0
- package/apps/server/dist/chunk-7GPZDCWI.js +158 -0
- package/apps/server/dist/chunk-EBNL5ZX7.js +120 -0
- package/apps/server/dist/chunk-GSGLHRWX.js +62 -0
- package/apps/server/dist/chunk-JSBRDJBE.js +30 -0
- package/apps/server/dist/chunk-LTC26IRQ.js +2930 -0
- package/apps/server/dist/chunk-SIQIBECG.js +273 -0
- package/apps/server/dist/dist-LQBXUHLR.js +409 -0
- package/apps/server/dist/index.js +5450 -0
- package/apps/server/dist/input-request-manager-YVKAMQPF.js +9 -0
- package/apps/server/dist/server-identity-KUXYHULN.js +10 -0
- package/apps/server/dist/session-registry-DMV543RG.js +40 -0
- package/package.json +74 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import {
|
|
2
|
+
assertNever,
|
|
3
|
+
cleanStaleSessions,
|
|
4
|
+
deleteSessionState,
|
|
5
|
+
getActiveSessions,
|
|
6
|
+
getSessionCount,
|
|
7
|
+
getSessionIdByPlanId,
|
|
8
|
+
getSessionState,
|
|
9
|
+
getSessionStateByPlanId,
|
|
10
|
+
isSessionStateApproved,
|
|
11
|
+
isSessionStateApprovedAwaitingToken,
|
|
12
|
+
isSessionStateCreated,
|
|
13
|
+
isSessionStateReviewed,
|
|
14
|
+
isSessionStateSynced,
|
|
15
|
+
setSessionState,
|
|
16
|
+
startPeriodicCleanup,
|
|
17
|
+
stopPeriodicCleanup,
|
|
18
|
+
touchSession
|
|
19
|
+
} from "./chunk-EBNL5ZX7.js";
|
|
20
|
+
import "./chunk-GSGLHRWX.js";
|
|
21
|
+
import "./chunk-JSBRDJBE.js";
|
|
22
|
+
export {
|
|
23
|
+
assertNever,
|
|
24
|
+
cleanStaleSessions,
|
|
25
|
+
deleteSessionState,
|
|
26
|
+
getActiveSessions,
|
|
27
|
+
getSessionCount,
|
|
28
|
+
getSessionIdByPlanId,
|
|
29
|
+
getSessionState,
|
|
30
|
+
getSessionStateByPlanId,
|
|
31
|
+
isSessionStateApproved,
|
|
32
|
+
isSessionStateApprovedAwaitingToken,
|
|
33
|
+
isSessionStateCreated,
|
|
34
|
+
isSessionStateReviewed,
|
|
35
|
+
isSessionStateSynced,
|
|
36
|
+
setSessionState,
|
|
37
|
+
startPeriodicCleanup,
|
|
38
|
+
stopPeriodicCleanup,
|
|
39
|
+
touchSession
|
|
40
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@schoolai/shipyard-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Shipyard MCP server and CLI tools for distributed planning with CRDTs",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"mcp-server-shipyard": "./apps/server/dist/index.js",
|
|
8
|
+
"shipyard-hook": "./apps/hook/dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"apps/server/dist",
|
|
12
|
+
"apps/hook/dist",
|
|
13
|
+
"apps/server/.env.example",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE.md"
|
|
16
|
+
],
|
|
17
|
+
"exports": {
|
|
18
|
+
"./server": {
|
|
19
|
+
"import": "./apps/server/dist/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./hook": {
|
|
22
|
+
"import": "./apps/hook/dist/index.js"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=22.14.0"
|
|
27
|
+
},
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/SchoolAI/shipyard.git"
|
|
32
|
+
},
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/SchoolAI/shipyard/issues"
|
|
35
|
+
},
|
|
36
|
+
"homepage": "https://github.com/SchoolAI/shipyard#readme",
|
|
37
|
+
"keywords": [
|
|
38
|
+
"mcp",
|
|
39
|
+
"model-context-protocol",
|
|
40
|
+
"ai",
|
|
41
|
+
"collaboration",
|
|
42
|
+
"shipyard",
|
|
43
|
+
"crdt",
|
|
44
|
+
"planning",
|
|
45
|
+
"hooks",
|
|
46
|
+
"claude-code"
|
|
47
|
+
],
|
|
48
|
+
"scripts": {
|
|
49
|
+
"prepublishOnly": "echo 'Packages already built in CI workflow'"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@blocknote/core": "^0.45.0",
|
|
53
|
+
"@blocknote/server-util": "^0.45.0",
|
|
54
|
+
"@modelcontextprotocol/sdk": "^1.22.0",
|
|
55
|
+
"@octokit/rest": "^21.0.0",
|
|
56
|
+
"@roamhq/wrtc": "^0.9.1",
|
|
57
|
+
"@trpc/client": "^11.8.1",
|
|
58
|
+
"@trpc/server": "^11.8.1",
|
|
59
|
+
"express": "^5.2.1",
|
|
60
|
+
"lib0": "^0.2.117",
|
|
61
|
+
"nanoid": "^5.0.9",
|
|
62
|
+
"open": "^11.0.0",
|
|
63
|
+
"pino": "^10.1.0",
|
|
64
|
+
"react": "^18.3.1",
|
|
65
|
+
"react-dom": "^18.3.1",
|
|
66
|
+
"ws": "^8.18.3",
|
|
67
|
+
"y-leveldb": "^0.2.0",
|
|
68
|
+
"y-protocols": "^1.0.7",
|
|
69
|
+
"y-webrtc": "^10.3.0",
|
|
70
|
+
"y-websocket": "^3.0.0",
|
|
71
|
+
"yjs": "^13.6.28",
|
|
72
|
+
"zod": "^4.3.4"
|
|
73
|
+
}
|
|
74
|
+
}
|