-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 1.85 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
{
"name": "agent-loop",
"version": "0.1.0",
"private": true,
"description": "Local-first Agent Loop runner with a bundled lightweight web UI.",
"type": "module",
"bin": {
"agent-loop": "./bin/agent-loop.js"
},
"scripts": {
"start": "node ./bin/agent-loop.js ui",
"check": "node --check ./bin/agent-loop.js && node --check ./src/cli.js && node --check ./src/core.js && node --check ./src/prompts.js && node --check ./src/claude-agent-adapter.js && node --check ./src/control.js && node --check ./src/events.js && node --check ./src/evidence.js && node --check ./src/git-safety.js && node --check ./src/policy.js && node --check ./src/prd-schema.js && node --check ./src/run-lock.js && node --check ./src/runner.js && node --check ./src/validation.js && node --check ./src/verify-completion.js && node --check ./src/web-server.js && node --check ./src/dag/schema.js && node --check ./src/dag/migration.js && node --check ./src/dag/templates.js && node --check ./src/dag/template.js && node --check ./src/dag/expression.js && node --check ./src/dag/runtime-context.js && node --check ./src/dag/output-store.js && node --check ./src/dag/tools.js && node --check ./src/dag/cache.js && node --check ./src/dag/executor.js && node --check ./src/dag/nodes/agent.js && node --check ./src/dag/nodes/loop.js && node --check ./src/dag/nodes/tool.js && node --check ./src/dag/nodes/gather.js && node --check ./web/app.js && node --check ./web/editor.js && node --check ./scripts/check-state-protocol.js && npm run check:state-protocol",
"smoke": "node ./bin/agent-loop.js --help",
"verify": "node ./bin/agent-loop.js verify",
"check:state-protocol": "node ./scripts/check-state-protocol.js",
"test": "node --test"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.177"
},
"license": "UNLICENSED"
}