-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 732 Bytes
/
Copy pathpackage.json
File metadata and controls
17 lines (17 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "c-agent",
"private": false,
"version": "0.5.8",
"description": "Controller-governed local AI research agent harness.",
"author": "Clint Cain",
"scripts": {
"test": "printf 'No unit tests are shipped in this OSS runtime package.\\n'",
"compile": "python3 -m py_compile agent.py controller/controller.py controller/runtime_reconcile.py controller/agent_entry.py",
"inspect:startup": "python3 -c 'from agent import Agent; print(Agent().startup())'",
"build:dev": "npm run compile",
"reset": "bash scripts/reset-agent-defaults.sh",
"preflight:prod": "bash scripts/preflight-prod.sh",
"build:prod": "npm run preflight:prod && npm run compile && npm run reset"
},
"license": "MIT"
}