-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 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
{
"name": "agent-action-stack",
"version": "0.2.0",
"private": false,
"description": "Reference demo: decide with Constitutional Agent Testbench, act with Consequence Rail, prove disputes with MandateBound.",
"type": "module",
"bin": {
"aas": "./bin/aas.mjs"
},
"scripts": {
"bootstrap": "node ./scripts/bootstrap.mjs",
"demo": "node ./bin/aas.mjs demo",
"demo:fail": "node ./bin/aas.mjs demo --response fail",
"demo:dispute": "node ./bin/aas.mjs demo --fault duplicate",
"gui": "node ./bin/aas-gui.mjs",
"gui:smoke": "node ./bin/aas-gui.mjs --smoke-test",
"test": "node --test test/gui.test.mjs test/stack.test.mjs",
"check": "npm test"
},
"keywords": [
"ai-agents",
"agentic-commerce",
"recourse",
"policy-as-code",
"dispute-evidence",
"consequence-rail",
"mandatebound",
"constitutional-agent-testbench"
],
"author": "EauDoon",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/EauDoon/agent-action-stack.git"
},
"bugs": {
"url": "https://github.com/EauDoon/agent-action-stack/issues"
},
"homepage": "https://github.com/EauDoon/agent-action-stack#readme",
"engines": {
"node": ">=20"
}
}