-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrouting.json
More file actions
86 lines (86 loc) · 2.11 KB
/
Copy pathrouting.json
File metadata and controls
86 lines (86 loc) · 2.11 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"title": "From agent event to private notification",
"eyebrow": "AGENT-NOTIFY WORKFLOW",
"description": "Hook sources choose a route; channel adapters send only where you configured them.",
"meta": "local routing · explicit send",
"columns": [
{
"title": "SOURCES",
"nodes": [
{
"id": "hooks",
"label": "agent hooks",
"detail": "Claude · Codex · OpenClaw"
},
{
"id": "cli",
"label": "direct CLI",
"detail": "send · status · doctor"
}
]
},
{
"title": "ROUTING",
"nodes": [
{
"id": "precedence",
"label": "route precedence",
"detail": "--to · profile · default",
"kind": "focus",
"badge": "gate"
},
{
"id": "skip",
"label": "skip filter",
"detail": "remove named channels"
}
]
},
{
"title": "CHANNELS",
"nodes": [
{
"id": "discord",
"label": "Discord",
"detail": "webhook env"
},
{
"id": "telegram",
"label": "Telegram",
"detail": "bot token + chat"
},
{
"id": "signal",
"label": "Signal",
"detail": "self-hosted relay"
}
]
},
{
"title": "DELIVERY",
"nodes": [
{
"id": "notify",
"label": "notification",
"detail": "sent from your machine",
"kind": "success"
}
]
}
],
"edges": [
{"from": "hooks", "to": "precedence"},
{"from": "cli", "to": "precedence"},
{"from": "precedence", "to": "discord"},
{"from": "precedence", "to": "telegram"},
{"from": "skip", "to": "signal"},
{"from": "discord", "to": "notify"},
{"from": "telegram", "to": "notify"},
{"from": "signal", "to": "notify"}
],
"context": {
"title": "PRIVACY CONTRACT",
"body": "No telemetry endpoints, no state file, no update checks.",
"detail": "Secrets stay in environment variables; config names the variables to read."
}
}