-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "agent-rules-hub",
"private": true,
"version": "0.1.0",
"description": "Local-first dashboard for discovering, inspecting, and editing rules, skills, and generated instructions for AI coding CLIs.",
"license": "MIT",
"homepage": "https://github.com/obdagli/agent-rules-hub",
"repository": {
"type": "git",
"url": "git+https://github.com/obdagli/agent-rules-hub.git"
},
"bugs": {
"url": "https://github.com/obdagli/agent-rules-hub/issues"
},
"keywords": [
"ai",
"agents",
"codex",
"claude-code",
"gemini-cli",
"opencode",
"dashboard",
"developer-tools",
"local-first",
"prompt-engineering",
"config-management"
],
"type": "module",
"scripts": {
"render:instructions": "node scripts/render-instructions.mjs",
"test": "node --import ./tests/setup-generated.mjs --test tests/*.mjs",
"dashboard": "node dashboard/server.mjs",
"dashboard:dev": "AGENT_RULES_DASHBOARD_PORT=4848 node dashboard/server.mjs"
},
"engines": {
"node": ">=20"
}
}