-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.28 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
{
"name": "cortex-agent",
"version": "1.4.1",
"description": "AI Agent Governance Framework for Cursor, Claude Code, Windsurf, Gemini CLI, and Antigravity",
"bin": {
"cortex-agent": "bin/cli.js"
},
"files": [
"bin",
"lib",
"templates",
"hooks",
"agents",
"commands",
"skills",
".claude-plugin"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release:patch": "npm version patch && npm publish --registry https://registry.npmjs.org/",
"release:minor": "npm version minor && npm publish --registry https://registry.npmjs.org/",
"release:major": "npm version major && npm publish --registry https://registry.npmjs.org/",
"pub": "npm publish --registry https://registry.npmjs.org/",
"heartbeat": "node .agent/scripts/heartbeat.js"
},
"keywords": [
"ai",
"agent",
"cursor",
"claude-code",
"windsurf",
"gemini-cli",
"antigravity",
"governance",
"workflow"
],
"author": "Kucell",
"homepage": "https://github.com/Kucell/cortex-agent",
"repository": {
"type": "git",
"url": "https://github.com/Kucell/cortex-agent.git"
},
"bugs": {
"url": "https://github.com/Kucell/cortex-agent/issues"
},
"license": "MIT"
}