-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 979 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 979 Bytes
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
{
"name": "leadline",
"version": "0.0.1",
"private": true,
"description": "Evidence router & policy engine for coding agents \u2014 enforces source choice and proof-of-use through Claude Code hooks, including routes to MCP tools. Local-first; no LLM in the hook loop.",
"license": "MIT",
"main": "./src/index.js",
"bin": {
"leadline": "./bin/leadline.js"
},
"scripts": {
"test": "node --test",
"bench": "node ./bin/leadline.js bench"
},
"dependencies": {
"yaml": "^2.8.1"
},
"files": [
"bench",
"bin",
"src",
"schema",
"policy",
"docs"
],
"keywords": [
"ai-agents",
"llm",
"claude-code",
"mcp",
"agent-guardrails",
"tool-use",
"policy-engine",
"evidence-router",
"hooks",
"agentic-ai",
"developer-tools",
"context-engineering",
"coding-agents",
"tool-routing"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"ajv": "^8.20.0"
}
}