@vibekiln/cutline-mcp-cli 0.12.0 → 0.14.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/README.md +15 -0
- package/dist/auth/callback.d.ts +1 -1
- package/dist/auth/callback.js +9 -1
- package/dist/commands/login.js +4 -1
- package/dist/commands/serve.d.ts +4 -0
- package/dist/commands/serve.js +19 -6
- package/dist/commands/setup.js +7 -4
- package/dist/index.js +4 -2
- package/dist/servers/{chunk-RUCYK3TR.js → chunk-EWUELVO2.js} +341 -89
- package/dist/servers/chunk-Q5V4VTF5.js +3180 -0
- package/dist/servers/{chunk-KMUSQOTJ.js → chunk-WTLGBZBN.js} +15 -1
- package/dist/servers/cutline-server.js +1236 -4066
- package/dist/servers/{data-client-RY2DCLME.js → data-client-OIQ6SINO.js} +41 -3
- package/dist/servers/exploration-server.js +1 -1
- package/dist/servers/integrations-server.js +2 -2
- package/dist/servers/output-server.js +1 -1
- package/dist/servers/premortem-server.js +30 -65
- package/dist/servers/slopburn-server.js +10069 -0
- package/dist/servers/tools-server.js +2 -2
- package/package.json +5 -3
- package/server.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
isWriteTool
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-WTLGBZBN.js";
|
|
5
5
|
import {
|
|
6
6
|
guardBoundary,
|
|
7
7
|
guardOutput,
|
|
@@ -21,7 +21,7 @@ import {
|
|
|
21
21
|
requirePremiumWithAutoAuth,
|
|
22
22
|
validateAuth,
|
|
23
23
|
validateRequestSize
|
|
24
|
-
} from "./chunk-
|
|
24
|
+
} from "./chunk-EWUELVO2.js";
|
|
25
25
|
|
|
26
26
|
// ../mcp/dist/mcp/src/tools-server.js
|
|
27
27
|
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibekiln/cutline-mcp-cli",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "CLI and MCP servers for Cutline
|
|
3
|
+
"version": "0.14.0",
|
|
4
|
+
"description": "CLI and MCP servers for Cutline, including SlopBurn: a product quality engineering roguelike RPG for vibecoding workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"build": "npm run build:cli && npm run build:servers",
|
|
22
22
|
"build:mcpb": "bash scripts/build-mcpb.sh",
|
|
23
23
|
"dev": "tsc --watch",
|
|
24
|
+
"test": "vitest run",
|
|
24
25
|
"start": "node dist/index.js",
|
|
25
26
|
"prepublishOnly": "npm run build"
|
|
26
27
|
},
|
|
@@ -65,7 +66,8 @@
|
|
|
65
66
|
"@types/express": "^4.17.21",
|
|
66
67
|
"@types/node": "^20.0.0",
|
|
67
68
|
"esbuild": "^0.25.0",
|
|
68
|
-
"typescript": "^5.3.0"
|
|
69
|
+
"typescript": "^5.3.0",
|
|
70
|
+
"vitest": "^4.0.18"
|
|
69
71
|
},
|
|
70
72
|
"engines": {
|
|
71
73
|
"node": ">=18.0.0"
|
package/server.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "ai.thecutline/cutline-mcp",
|
|
4
4
|
"title": "Cutline — Engineering Guardrails for Vibecoding",
|
|
5
|
-
"description": "Security, reliability, and scalability constraints for your coding agent
|
|
5
|
+
"description": "Security, reliability, and scalability constraints for your coding agent, plus SlopBurn: a product quality engineering roguelike RPG for vibecoding workflows.",
|
|
6
6
|
"version": "0.5.0",
|
|
7
7
|
"repository": {
|
|
8
8
|
"url": "https://github.com/kylewadegrove/cutline",
|