@openhorizon/workflows 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 +21 -0
- package/README.md +72 -0
- package/dist/cli.js +2162 -0
- package/package.json +52 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@openhorizon/workflows",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Deterministic multi-agent workflow orchestration as an MCP server — agent()/parallel()/pipeline() scripts in a hardened VM sandbox, subagents executed via the Cursor SDK.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"model-context-protocol",
|
|
8
|
+
"agents",
|
|
9
|
+
"orchestration",
|
|
10
|
+
"workflows",
|
|
11
|
+
"cursor"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"type": "module",
|
|
15
|
+
"bin": {
|
|
16
|
+
"openhorizon-workflows": "./dist/cli.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=20"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"dev": "bun run build && node dist/cli.js",
|
|
31
|
+
"build": "bun build src/cli.ts --outdir dist --target node --packages external --banner '#!/usr/bin/env node'",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"lint": "vp lint",
|
|
34
|
+
"format": "vp fmt",
|
|
35
|
+
"format:check": "vp fmt --check",
|
|
36
|
+
"test": "node ../../scripts/vitest.mjs run",
|
|
37
|
+
"test:watch": "node ../../scripts/vitest.mjs",
|
|
38
|
+
"prepublishOnly": "bun run build"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@cursor/sdk": "^1.0.18",
|
|
42
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
43
|
+
"acorn": "^8.16.0",
|
|
44
|
+
"ajv": "^8.20.0",
|
|
45
|
+
"zod": "^4.4.3"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/node": "^22.15.0",
|
|
49
|
+
"typescript": "^6.0.3",
|
|
50
|
+
"vitest": "^4.1.8"
|
|
51
|
+
}
|
|
52
|
+
}
|