-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupabase-ops.json
More file actions
256 lines (256 loc) · 7.7 KB
/
Copy pathsupabase-ops.json
File metadata and controls
256 lines (256 loc) · 7.7 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
{
"version": "0.2",
"identity_profiles": [
{
"id": "supabase-readonly",
"provider": "env-bearer",
"subject": {
"kind": "service",
"principal": "agent://ops/supabase-readonly",
"display_name": "Supabase Read-Only Agent",
"delegation_mode": "none"
},
"auth": {
"mode": "service",
"required": true,
"provider_config": {
"token_env": "SUPABASE_ACCESS_TOKEN"
}
},
"trust": {
"level": "restricted",
"constraints": {
"max_autonomy": "restricted",
"escalation": "fail"
}
},
"presentation": {
"bindings": [
{
"source": "credentials.access_token.value",
"target": { "kind": "env", "name": "SUPABASE_ACCESS_TOKEN" },
"required": true,
"redact": true
}
],
"handoff": "none",
"cleanup": "always"
}
},
{
"id": "supabase-deploy",
"provider": "env-bearer",
"subject": {
"kind": "service",
"principal": "agent://ops/supabase-deploy",
"display_name": "Supabase Deploy Agent",
"delegation_mode": "none"
},
"auth": {
"mode": "service",
"required": true,
"provider_config": {
"token_env": "SUPABASE_ACCESS_TOKEN"
}
},
"trust": {
"level": "supervised",
"constraints": {
"max_autonomy": "supervised",
"escalation": "human-approval"
}
},
"presentation": {
"bindings": [
{
"source": "credentials.access_token.value",
"target": { "kind": "env", "name": "SUPABASE_ACCESS_TOKEN" },
"required": true,
"redact": true
}
],
"handoff": "none",
"cleanup": "always"
}
}
],
"evidence_profiles": [
{
"id": "supabase-evidence",
"provider": "ssh",
"payload": {
"bind": [
"execution_id",
"declared_identity",
"resolved_identity",
"contract",
"command",
"result"
],
"format": "canonical-json"
},
"verify": { "required": false }
}
],
"workflows": [
{
"id": "supabase-ops",
"name": "Supabase Operations",
"contract": {
"sandbox": "permissive",
"network": "unrestricted",
"audit": "always",
"required_trust_level": "restricted",
"trust_enforcement": "strict"
},
"tasks": [
{
"id": "list-projects",
"name": "List Supabase Projects",
"shell": {
"program": "supabase",
"args": ["projects", "list"]
},
"target": { "session_target": "shell" },
"identity": { "ref": "supabase-readonly" },
"output": {
"format": "text",
"preview_bytes": 4000,
"offload": "auto"
},
"schedule": { "cron": "0 8 * * *" }
},
{
"id": "db-status",
"name": "Check Migration Status",
"shell": {
"program": "supabase",
"args": ["migration", "list", "--db-url", "$DATABASE_URL"]
},
"target": { "session_target": "shell" },
"identity": { "ref": "supabase-readonly" },
"output": {
"format": "text",
"preview_bytes": 4000
},
"schedule": { "cron": "0 */6 * * *" }
},
{
"id": "functions-list",
"name": "List Edge Functions",
"shell": {
"program": "supabase",
"args": ["functions", "list"]
},
"target": { "session_target": "shell" },
"identity": { "ref": "supabase-readonly" },
"output": {
"format": "text",
"preview_bytes": 4000
},
"schedule": { "cron": "0 8 * * 1" }
},
{
"id": "secrets-list",
"name": "List Project Secrets",
"shell": {
"program": "supabase",
"args": ["secrets", "list"]
},
"target": { "session_target": "shell" },
"identity": { "ref": "supabase-readonly" },
"output": {
"format": "text",
"preview_bytes": 4000
},
"schedule": { "cron": "0 6 * * 1" }
},
{
"id": "db-push",
"name": "Push Database Migrations",
"shell": {
"program": "supabase",
"args": ["db", "push", "--db-url", "$DATABASE_URL"]
},
"target": { "session_target": "shell" },
"identity": { "ref": "supabase-deploy" },
"evidence": { "ref": "supabase-evidence" },
"contract": {
"required_trust_level": "supervised",
"trust_enforcement": "strict",
"audit": "always"
},
"approval": {
"required": true,
"policy": "manual",
"risk_level": "high",
"timeout_s": 3600
},
"schedule": { "cron": "0 3 * * 0" },
"on_failure": {
"id": "triage-db-push",
"name": "Triage Database Push Failure",
"prompt": "A Supabase database migration push failed. Determine whether this is a connection issue, schema conflict, migration ordering problem, or permissions error, and recommend the next step without making changes.",
"target": { "session_target": "isolated", "agent_id": "main" },
"intent": { "mode": "plan", "read_only": true },
"context": { "retrieval": "recent", "limit": 5 },
"delivery": { "mode": "announce", "to": "@owner_dm" }
}
},
{
"id": "functions-deploy",
"name": "Deploy Edge Functions",
"shell": {
"program": "supabase",
"args": ["functions", "deploy"]
},
"target": { "session_target": "shell" },
"identity": { "ref": "supabase-deploy" },
"evidence": { "ref": "supabase-evidence" },
"contract": {
"required_trust_level": "supervised",
"trust_enforcement": "strict",
"audit": "always"
},
"output": {
"format": "text",
"preview_bytes": 4000
},
"trigger": {
"parent": "db-push",
"on": "success"
},
"on_failure": {
"id": "triage-functions-deploy",
"name": "Triage Edge Function Deploy Failure",
"prompt": "A Supabase edge function deployment failed. Determine whether this is a build error, dependency issue, function size limit, or configuration problem, and recommend the next step without making changes.",
"target": { "session_target": "isolated", "agent_id": "main" },
"intent": { "mode": "plan", "read_only": true },
"context": { "retrieval": "recent", "limit": 5 },
"delivery": { "mode": "announce", "to": "@owner_dm" }
}
},
{
"id": "verify-health",
"name": "Verify Project Health",
"shell": {
"program": "supabase",
"args": ["inspect", "db", "bloat", "--db-url", "$DATABASE_URL"]
},
"target": { "session_target": "shell" },
"identity": { "ref": "supabase-readonly" },
"evidence": { "ref": "supabase-evidence" },
"output": {
"format": "text",
"preview_bytes": 4000
},
"trigger": {
"parent": "functions-deploy",
"on": "success",
"delay_s": 15
}
}
]
}
]
}