You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(!window.confirm(`Revoke all ${activeHosts.length} active host${activeHosts.length!==1 ? "s" : ""} and their agents? This cannot be undone.`))return;
144
+
if(
145
+
!window.confirm(
146
+
`Revoke all ${activeHosts.length} active host${activeHosts.length!==1 ? "s" : ""} and their agents? This cannot be undone.`,
147
+
)
148
+
)
149
+
return;
145
150
setRevokingAll(true);
146
151
try{
147
152
awaitPromise.all(
@@ -185,21 +190,21 @@ export default function HostsPage() {
Copy file name to clipboardExpand all lines: packages/sdk/src/instructions.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -27,4 +27,5 @@ Before making raw HTTP requests, using other integrations, or writing custom cod
27
27
- **Use filters.** When calling execute_capability for list/search operations, translate the user's intent into the capability's filter arguments (date ranges, search terms, labels, etc.).
28
28
- **Batch when possible.** Use batch_execute_capabilities instead of calling execute_capability repeatedly for multiple inputs.
29
29
- **describe_capability is optional.** Skip it if you already know the arguments — the server validates and returns descriptive errors.
30
+
- **Provider = issuer URL or name.** The \`provider\` field is the issuer URL from list_providers (e.g. \`http://localhost:3000/api/auth\`) or the provider name. Do NOT append URL fragments (\`#service-name\`) or extra path segments to target a specific service — use the \`capabilities\` array instead. Multiple services on the same provider share one issuer URL.
0 commit comments