-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 911 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 911 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
{
"name": "brief-protocol",
"version": "1.0.0",
"private": true,
"description": "A protocol for explicit agent delegation — turning chaotic multi-agent handoffs into structured, auditable task briefings.",
"keywords": [
"agent",
"multi-agent",
"delegation",
"protocol",
"ai",
"llm",
"mcp",
"a2a",
"orchestration"
],
"author": "OpenPerf",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/openperf/brief.git"
},
"homepage": "https://github.com/openperf/brief",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"example:simple": "npx tsx examples/01-simple-delegation/index.ts",
"example:cascade": "npx tsx examples/02-cascade-chain/index.ts",
"example:fanout": "npx tsx examples/03-fan-out/index.ts"
},
"devDependencies": {
"tsx": "^4.7.0",
"typescript": "^5.4.0"
}
}