forked from automagik-dev/genie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.4 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "automagik-genie",
"version": "2.5.0-rc.1",
"description": "Self-evolving AI agent orchestration framework with Model Context Protocol support",
"main": ".genie/cli/dist/genie.js",
"bin": {
"genie": ".genie/cli/dist/genie-cli.js",
"automagik-genie": "bin/automagik-genie.js",
"automagik-genie-mcp": "bin/mcp.js",
"automagik-genie-rollback": "bin/rollback.js",
"automagik-genie-status": "bin/status.js",
"automagik-genie-cleanup": "bin/cleanup.js",
"automagik-genie-statusline": "bin/statusline.js"
},
"files": [
".genie/cli/dist/**/*",
".genie/mcp/dist/**/*",
".genie/mcp/src/**/*",
"forge.js",
".genie/agents/**/*.md",
".genie/code/**/*",
".genie/create/**/*",
".genie/product/**/*.md",
".genie/standards/**/*.md",
".genie/guides/**/*.md",
".genie/product/templates/**/*.md",
".genie/workflows/**/*",
".genie/scripts/**/*",
"bin/automagik-genie.js",
"bin/mcp.js",
"bin/rollback.js",
"bin/status.js",
"bin/cleanup.js",
"bin/statusline.js",
"genie",
"run.sh",
"run.ps1",
"setup.sh",
"setup.ps1",
"README.md",
"AGENTS.md",
"CLAUDE.md"
],
"scripts": {
"build": "pnpm run build:genie && pnpm run build:mcp",
"build:genie": "tsc -p .genie/cli/src/views/tsconfig.json && tsc -p .genie/cli/tsconfig.json",
"build:mcp": "tsc -p .genie/mcp/tsconfig.json",
"start:mcp": "node .genie/mcp/dist/server.js",
"start:mcp:stdio": "MCP_TRANSPORT=stdio node .genie/mcp/dist/server.js",
"start:mcp:http": "MCP_TRANSPORT=httpStream node .genie/mcp/dist/server.js",
"test:genie": "pnpm run build:genie && node tests/genie-cli.test.mjs && tests/identity-smoke.sh",
"test:session-service": "pnpm run build:genie && node tests/session-service.test.mjs",
"test:all": "pnpm run test:genie && pnpm run test:session-service",
"bump:patch": "node scripts/bump.cjs patch",
"bump:minor": "node scripts/bump.cjs minor",
"bump:major": "node scripts/bump.cjs major",
"bump:rc": "node scripts/bump.cjs rc-increment",
"release:stable": "node scripts/release.cjs stable",
"release:branch": "bash scripts/release-branch.sh",
"status": "node scripts/status.cjs",
"postinstall": "node scripts/postinstall.cjs || true",
"prepack": "pnpm run build"
},
"keywords": [
"ai",
"agent",
"orchestration",
"mcp",
"model-context-protocol",
"claude",
"codex",
"automation",
"self-evolving"
],
"author": "Automagik Genie Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/automagik-genie/genie.git"
},
"bugs": {
"url": "https://github.com/automagik-genie/genie/issues"
},
"homepage": "https://github.com/automagik-genie/genie#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2",
"automagik-forge": "^0.4.3",
"commander": "^12.1.0",
"fastmcp": "^3.18.0",
"gradient-string": "^2.0.2",
"prompts": "^2.4.2",
"ws": "^8.18.3",
"yaml": "^2.8.1",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/prompts": "^2.4.9",
"@types/ws": "^8.18.1",
"js-tiktoken": "^1.0.21",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184"
}