-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.json
More file actions
299 lines (299 loc) · 13.9 KB
/
Copy pathtools.json
File metadata and controls
299 lines (299 loc) · 13.9 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
{
"version": "1.0.0",
"name": "Self-Radiance Agent Runtime Safety Kit — Working Implementations",
"description": "Open-source, MIT-licensed, locally runnable tools for agent accountability: enforcement, before-action gating, supply-chain intake, bonded agents, and adversarial validation.",
"baseUrl": "https://selfradiance.github.io",
"tools": [
{
"id": "agentgate",
"name": "AgentGate",
"category": "Enforcement & Accountability",
"description": "Collateralized execution gate for AI agents: signed Ed25519 identities, bond-and-slash settlement, dual-control malicious resolution. The substrate under everything below.",
"repoUrl": "https://github.com/selfradiance/agentgate",
"license": "MIT",
"price": "free"
},
{
"id": "mcp-firewall",
"name": "MCP Firewall",
"category": "Enforcement & Accountability",
"description": "Governance proxy between MCP clients and upstream servers; verifies observed filesystem effects instead of trusting upstream-reported success.",
"repoUrl": "https://github.com/selfradiance/agentgate-mcp-firewall",
"license": "MIT",
"price": "free"
},
{
"id": "governed-writefile-demo",
"name": "Governed WriteFile Demo",
"category": "Enforcement & Accountability",
"description": "Minimal reference path: one governed write_file call through AgentGate + MCP Firewall with on-disk verification.",
"repoUrl": "https://github.com/selfradiance/agentgate-governed-writefile-demo",
"license": "MIT",
"price": "free"
},
{
"id": "delegation-identity-proof",
"name": "Delegation Identity Proof",
"category": "Enforcement & Accountability",
"description": "Checkpoint-managed delegation with scoped resource limits, local transparency log, and tamper-evident hash chain.",
"repoUrl": "https://github.com/selfradiance/agentgate-delegation-proof",
"license": "MIT",
"price": "free"
},
{
"id": "rollback-receipt",
"name": "Rollback Receipt",
"category": "Enforcement & Accountability",
"description": "Snapshots declared files before an AI coding-agent mutation; produces an inspectable rollback receipt and deterministic restore path.",
"repoUrl": "https://github.com/selfradiance/rollback-receipt",
"license": "MIT",
"price": "free"
},
{
"id": "work-session-ledger",
"name": "Work Session Ledger",
"category": "Enforcement & Accountability",
"description": "Assembles an inspectable receipt of an AI coding-agent work session from declared local artifacts.",
"repoUrl": "https://github.com/selfradiance/work-session-ledger",
"license": "MIT",
"price": "free"
},
{
"id": "x402-spend-receipt",
"name": "x402 Spend Receipt",
"category": "Enforcement & Accountability",
"description": "Local policy gate for x402 payment intents: deterministic spend rules plus Ed25519-signed, hash-chained allow/deny receipts with machine-readable reason codes. Also on npm as x402-spend-receipt.",
"repoUrl": "https://github.com/selfradiance/x402-spend-receipt",
"license": "MIT",
"price": "free"
},
{
"id": "actionproof",
"name": "ActionProof",
"category": "Before-Action Gates",
"description": "Deterministic allow/deny evaluation of JSON intent for credentialed side-effecting requests (send_email, form_submit, pay_invoice) before execution.",
"repoUrl": "https://github.com/selfradiance/actionproof",
"license": "MIT",
"price": "free"
},
{
"id": "reapproval-gate",
"name": "Reapproval Gate",
"category": "Before-Action Gates",
"description": "Evaluates a proposed agent action against human-approved scope; returns allow, deny, or reapproval_required on escalation thresholds.",
"repoUrl": "https://github.com/selfradiance/reapproval-gate",
"license": "MIT",
"price": "free"
},
{
"id": "contextgate",
"name": "ContextGate",
"category": "Before-Action Gates",
"description": "Checks subagent claims against evidence fixtures before they enter parent agent context; quarantines unsupported claims.",
"repoUrl": "https://github.com/selfradiance/contextgate",
"license": "MIT",
"price": "free"
},
{
"id": "agent-intent-ledger",
"name": "Agent Intent Ledger",
"category": "Before-Action Gates",
"description": "Flags drift between an original human request, the agent's plan, and a later proposed action.",
"repoUrl": "https://github.com/selfradiance/agent-intent-ledger",
"license": "MIT",
"price": "free"
},
{
"id": "policy-conflict-receipt",
"name": "Policy Conflict Receipt",
"category": "Before-Action Gates",
"description": "Compares a proposed agent action against declared policy constraints and emits a conflict receipt before execution.",
"repoUrl": "https://github.com/selfradiance/policy-conflict-receipt",
"license": "MIT",
"price": "free"
},
{
"id": "agent-interrupt-receipt",
"name": "Agent Interrupt Receipt",
"category": "Before-Action Gates",
"description": "Compares an active work order, a human interrupt, and a proposed action; emits an interrupt receipt before execution.",
"repoUrl": "https://github.com/selfradiance/agent-interrupt-receipt",
"license": "MIT",
"price": "free"
},
{
"id": "secretboundary",
"name": "SecretBoundary",
"category": "Before-Action Gates",
"description": "Deterministic local policy gate for one outbound action (send_webhook), default deny.",
"repoUrl": "https://github.com/selfradiance/secretboundary",
"license": "MIT",
"price": "free"
},
{
"id": "skillgate",
"name": "SkillGate",
"category": "Supply-Chain Intake",
"description": "Static inspection of an agent Skill package before harness admission: instruction surface, execution surface, no execution or trust.",
"repoUrl": "https://github.com/selfradiance/skillgate",
"license": "MIT",
"price": "free"
},
{
"id": "mcp-server-intake",
"name": "MCP Server Intake",
"category": "Supply-Chain Intake",
"description": "Static pre-admission inspection of a local MCP server package: tool surface, execution surfaces, capability signals, without running it.",
"repoUrl": "https://github.com/selfradiance/mcp-server-intake",
"license": "MIT",
"price": "free"
},
{
"id": "mcp-config-inventory",
"name": "MCP Config Inventory",
"category": "Supply-Chain Intake",
"description": "Read-only CLI that inventories configured MCP servers from config files and diffs snapshots for drift.",
"repoUrl": "https://github.com/selfradiance/mcp-config-inventory",
"license": "MIT",
"price": "free"
},
{
"id": "governed-repo-intake",
"name": "Governed Repo Intake",
"category": "Supply-Chain Intake",
"description": "Targeted discovery and deterministic classification of a repo's instruction surfaces with explicit human acknowledgment gating.",
"repoUrl": "https://github.com/selfradiance/governed-repo-intake",
"license": "MIT",
"price": "free"
},
{
"id": "dependency-drift-gate",
"name": "Dependency Drift Gate",
"category": "Supply-Chain Intake",
"description": "Compares package.json state before and after an AI coding-agent session; emits a drift report with conservative review labels.",
"repoUrl": "https://github.com/selfradiance/dependency-drift-gate",
"license": "MIT",
"price": "free"
},
{
"id": "agent-001-file-transform",
"name": "Agent 001: File Transform",
"category": "Bonded Agents (proofs on the AgentGate substrate)",
"description": "Bonded CSV-to-JSON agent with deterministic SHA-256 verification; bond released on match, slashed on mismatch.",
"repoUrl": "https://github.com/selfradiance/agentgate-bonded-file-transform",
"license": "MIT",
"price": "free"
},
{
"id": "agent-002-file-guardian",
"name": "Agent 002: File Guardian",
"category": "Bonded Agents (proofs on the AgentGate substrate)",
"description": "Background watcher that bonds every file change; failed verification slashes the bond and restores from snapshot.",
"repoUrl": "https://github.com/selfradiance/agentgate-bonded-file-guardian",
"license": "MIT",
"price": "free"
},
{
"id": "agent-003-email-rewriter",
"name": "Agent 003: Email Rewriter",
"category": "Bonded Agents (proofs on the AgentGate substrate)",
"description": "Bonded LLM rewriting settled by human judgment: approve releases, reject slashes.",
"repoUrl": "https://github.com/selfradiance/agentgate-bonded-email-rewriter",
"license": "MIT",
"price": "free"
},
{
"id": "agent-007-email-triage",
"name": "Agent 007: Email Triage",
"category": "Bonded Agents (proofs on the AgentGate substrate)",
"description": "Bonded inbox triage judgment; exact human agreement releases the bond, any override slashes it.",
"repoUrl": "https://github.com/selfradiance/agent-007-bonded-email-triage",
"license": "MIT",
"price": "free"
},
{
"id": "agent-004-red-team-simulator",
"name": "Agent 004: Red Team Simulator",
"category": "Adversarial Validation & Epistemics",
"description": "External adversarial probing of AgentGate over HTTP, scaling from static attacks to coordinated swarms and sleeper-agent campaigns.",
"repoUrl": "https://github.com/selfradiance/agentgate-red-team-simulator",
"license": "MIT",
"price": "free"
},
{
"id": "agent-005-recursive-verifier",
"name": "Agent 005: Recursive Verifier",
"category": "Adversarial Validation & Epistemics",
"description": "Generates and executes sandboxed verification scripts; executable proof instead of opinion-based review.",
"repoUrl": "https://github.com/selfradiance/agentgate-recursive-verifier",
"license": "MIT",
"price": "free"
},
{
"id": "agent-006-incentive-wargame",
"name": "Agent 006: Incentive Wargame",
"category": "Adversarial Validation & Epistemics",
"description": "Runs AI-generated adversarial strategies against economic rule sets to test whether incentive designs survive.",
"repoUrl": "https://github.com/selfradiance/agentgate-incentive-wargame",
"license": "MIT",
"price": "free"
},
{
"id": "epistemic-poisoning-simulator",
"name": "Epistemic Poisoning Simulator",
"category": "Adversarial Validation & Epistemics",
"description": "Saboteur agent poisons a shared knowledge base; measures whether corrupted information flips a bonded target agent's decisions.",
"repoUrl": "https://github.com/selfradiance/agentgate-epistemic-poisoning",
"license": "MIT",
"price": "free"
},
{
"id": "memledger",
"name": "MemLedger",
"category": "Adversarial Validation & Epistemics",
"description": "Treats agent memory as testimony: append-only claims with provenance, confidence moved only by logged outcomes, memory-use receipts.",
"repoUrl": "https://github.com/selfradiance/memledger",
"license": "MIT",
"price": "free"
},
{
"id": "x402-paid-endpoint",
"name": "x402 Paid Endpoint",
"category": "Agent Commerce (x402)",
"description": "Live Cloudflare Worker selling one machine-readable artifact for $1 USDC on Base mainnet via the x402 v2 'exact' scheme. First verified zero-human machine purchase settled on-chain (tx 0x8eb11a825de048ec5e140ad3c8bd26f315db2abb8ecda24ea39fbf1ebd8cc4fd). Reference buyer in-repo, payment-gated by x402-spend-receipt.",
"repoUrl": "https://github.com/selfradiance/x402-paid-endpoint",
"endpointUrl": "https://x402-paid-endpoint.selfradiance.workers.dev",
"license": "MIT",
"price": "$1 USDC (x402, Base mainnet)"
},
{
"id": "x402-license-gateway",
"name": "x402 License Gateway",
"category": "Agent Commerce (x402)",
"description": "Live mainnet gateway selling signed Ed25519 license receipts for all 20 catalog assets via x402 v2 exact-scheme USDC payments on Base; one fulfillment model and signing key shared with the Stripe notary rail.",
"repoUrl": "https://github.com/selfradiance/x402-license-gateway",
"endpointUrl": "https://x402-license-gateway.selfradiance.workers.dev",
"license": "MIT",
"price": "$1.00-$8.00 USDC per license (x402, Base mainnet)"
},
{
"id": "web-attestation",
"name": "Web Attestation",
"category": "Agent Commerce (x402)",
"description": "Live Cloudflare Worker returning Ed25519-signed witness-only byte-observation attestations for caller-supplied HTTPS URLs, gated by x402 v2 exact-scheme USDC on Base mainnet. Attests only that the endpoint observed specific bytes at a URL at a time; makes no claim of truth, legitimacy, ownership, or trustworthiness. Verified three-leg (settlement tx 0xdf56ef26a440c712303059b457039c107eea1890c361313bb973820d819385ed).",
"repoUrl": "https://github.com/selfradiance/web-attestation",
"endpointUrl": "https://web-attestation.selfradiance.workers.dev",
"license": "MIT",
"price": "$1.00 USDC (x402, Base mainnet)"
},
{
"id": "zk-authorship",
"name": "zk-authorship",
"category": "Provenance & Attestation",
"description": "Anonymous group-backed authorship attestations for files: Semaphore ZK proofs bind a SHA-256 file hash to group membership without revealing which member. Offline verification, bring-your-own-group, no hosted registry. Also on npm as zk-authorship.",
"repoUrl": "https://github.com/selfradiance/zk-authorship",
"license": "MIT",
"price": "free"
}
]
}