-
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.22 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.22 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": "loop-runtime",
"version": "0.1.0",
"description": "An open execution engine for AI agent loops — budget circuit-breakers, maker/checker sub-agents, worktree isolation, and human gates. Runs the loops that loop-engineering teaches you to design.",
"type": "module",
"bin": {
"loop-runtime": "src/cli.ts",
"loop": "src/cli.ts"
},
"exports": {
".": "./src/index.ts"
},
"files": [
"src",
"registry.yaml",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=23.6.0"
},
"scripts": {
"test": "node --test test/*.test.ts",
"cli": "node src/cli.ts",
"demo": "node src/cli.ts run daily-triage --level L2 --ticks 3 --dry-run"
},
"keywords": [
"ai",
"agent",
"agents",
"agent-orchestration",
"llm",
"loop-engineering",
"claude",
"claude-code",
"automation",
"multi-agent",
"cost-governance"
],
"license": "MIT",
"author": "uninhibited-scholar",
"repository": {
"type": "git",
"url": "https://github.com/uninhibited-scholar/loop-runtime.git"
},
"homepage": "https://github.com/uninhibited-scholar/loop-runtime#readme",
"bugs": {
"url": "https://github.com/uninhibited-scholar/loop-runtime/issues"
}
}