@atollhq/skill-gemini 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/skill/SKILL.md +1 -1
- package/skill/references/api-endpoints.md +12 -0
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -28,7 +28,7 @@ All requests require: `Authorization: Bearer sk_atoll_<key>`
|
|
|
28
28
|
|
|
29
29
|
Verify with: `GET /api/auth/me`
|
|
30
30
|
|
|
31
|
-
API keys are generated in **Settings > Members > Add Agent
|
|
31
|
+
API keys are generated in **Settings > Members > Add Agent** (for agents) or **Settings > Members > Create API Key** (for integrations). Store as `$ATOLL_API_KEY`.
|
|
32
32
|
|
|
33
33
|
## Quick Start
|
|
34
34
|
|
|
@@ -38,6 +38,7 @@ All endpoints require `Authorization: Bearer sk_atoll_...` header.
|
|
|
38
38
|
- [Webhooks](#webhooks)
|
|
39
39
|
- [Notifications](#notifications)
|
|
40
40
|
- [Agents](#agents)
|
|
41
|
+
- [Integrations](#integrations)
|
|
41
42
|
- [GitHub Integration](#github-integration)
|
|
42
43
|
|
|
43
44
|
---
|
|
@@ -377,6 +378,17 @@ URL must be HTTPS. Returns webhook record plus `secret` for HMAC verification.
|
|
|
377
378
|
| POST | `/api/orgs/{id}/agents/{agentId}/rotate` | Rotate all keys |
|
|
378
379
|
| POST | `/api/orgs/{id}/agents/{agentId}/install-snippets` | Get install snippets (`{ key }`) |
|
|
379
380
|
|
|
381
|
+
## Integrations
|
|
382
|
+
|
|
383
|
+
| Method | Endpoint | Description |
|
|
384
|
+
|--------|----------|-------------|
|
|
385
|
+
| GET | `/api/orgs/{id}/integrations` | List integrations (owner/admin) |
|
|
386
|
+
| POST | `/api/orgs/{id}/integrations` | Create integration (`{ name }`) |
|
|
387
|
+
| DELETE | `/api/orgs/{id}/integrations/{integrationId}` | Revoke integration |
|
|
388
|
+
| GET | `/api/orgs/{id}/integrations/{integrationId}/keys` | List API keys |
|
|
389
|
+
| POST | `/api/orgs/{id}/integrations/{integrationId}/keys` | Generate new key (`{ name? }`) |
|
|
390
|
+
| DELETE | `/api/orgs/{id}/integrations/{integrationId}/keys/{keyId}` | Revoke key |
|
|
391
|
+
|
|
380
392
|
## GitHub Integration
|
|
381
393
|
|
|
382
394
|
| Method | Endpoint | Description |
|