-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent-contract.json
More file actions
71 lines (71 loc) · 1.58 KB
/
Copy pathagent-contract.json
File metadata and controls
71 lines (71 loc) · 1.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"schemaVersion": 1,
"project": "faye",
"intent": "OpenClaw second-install voice orchestration with local-first recovery",
"dashboard": {
"url": "http://127.0.0.1:4587",
"openCommands": [
"faye open",
"faye-open"
]
},
"commands": {
"status": [
"faye status",
"faye-status"
],
"setup": [
"faye setup",
"faye-setup"
],
"firstSuccess": [
"faye first-success --json",
"faye-first-success --json"
],
"panicStop": {
"confirmation": "PANIC STOP",
"commands": [
"faye panic --confirm \"PANIC STOP\"",
"faye-panic --confirm \"PANIC STOP\""
]
},
"factoryReset": {
"confirmation": "FACTORY RESET",
"commands": [
"faye reset --confirm \"FACTORY RESET\"",
"faye-reset --confirm \"FACTORY RESET\""
]
}
},
"api": {
"localOnly": true,
"routes": [
{
"method": "POST",
"path": "/v1/system/panic-stop",
"body": {
"confirmation": "PANIC STOP",
"reason": "optional_reason"
}
},
{
"method": "POST",
"path": "/v1/system/factory-reset",
"body": {
"confirmation": "FACTORY RESET",
"reason": "optional_reason"
}
}
],
"events": [
"system_panic_stop_requested",
"system_panic_stop_completed",
"system_factory_reset_requested",
"system_factory_reset_completed"
]
},
"reports": {
"installAttempts": ".faye/reports/install-attempt-*.json",
"uiKpi": ".faye/reports/ui-kpi.json"
}
}