@atollhq/skill-claude 0.1.2 → 0.1.3
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 +25 -0
- package/skill/references/api-endpoints.md +9 -0
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -161,6 +161,31 @@ All endpoints are under `/api/orgs/{orgId}/...`.
|
|
|
161
161
|
- **KPI direction**: `increase`, `decrease`, `maintain`
|
|
162
162
|
- **Member role**: `owner`, `admin`, `member`, `guest`
|
|
163
163
|
|
|
164
|
+
## Platform Feedback
|
|
165
|
+
|
|
166
|
+
Report bugs or request features for the Atoll platform itself. This sends feedback to the Atoll team's internal board — not to your org.
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
curl -X POST https://atollhq.com/api/feedback \
|
|
170
|
+
-H "Content-Type: application/json" \
|
|
171
|
+
-d '{
|
|
172
|
+
"type": "bug",
|
|
173
|
+
"description": "The /issues endpoint returns 500 when filtering by milestoneId and status together",
|
|
174
|
+
"userEmail": "agent@example.com",
|
|
175
|
+
"userName": "My Agent"
|
|
176
|
+
}'
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
| Field | Required | Description |
|
|
180
|
+
|-------|----------|-------------|
|
|
181
|
+
| `type` | No | `bug` (default) or `feature` |
|
|
182
|
+
| `description` | Yes | What went wrong or what you'd like to see |
|
|
183
|
+
| `userEmail` | No | Reporter email for follow-up |
|
|
184
|
+
| `userName` | No | Reporter display name |
|
|
185
|
+
| `url` | No | Page or endpoint URL where the issue occurred |
|
|
186
|
+
|
|
187
|
+
No authentication required. Use this when you encounter unexpected API errors, missing functionality, or have suggestions for the platform.
|
|
188
|
+
|
|
164
189
|
## Notes
|
|
165
190
|
|
|
166
191
|
- Request bodies accept camelCase; responses use snake_case
|
|
@@ -40,6 +40,7 @@ All endpoints require `Authorization: Bearer sk_atoll_...` header.
|
|
|
40
40
|
- [Agents](#agents)
|
|
41
41
|
- [Integrations](#integrations)
|
|
42
42
|
- [GitHub Integration](#github-integration)
|
|
43
|
+
- [Platform Feedback](#platform-feedback)
|
|
43
44
|
|
|
44
45
|
---
|
|
45
46
|
|
|
@@ -397,3 +398,11 @@ URL must be HTTPS. Returns webhook record plus `secret` for HMAC verification.
|
|
|
397
398
|
| GET | `/api/integrations/github/repos` | List available repos |
|
|
398
399
|
| POST | `/api/integrations/github/connect` | Connect a repo |
|
|
399
400
|
| POST | `/api/integrations/github/disconnect` | Disconnect a repo |
|
|
401
|
+
|
|
402
|
+
## Platform Feedback
|
|
403
|
+
|
|
404
|
+
No authentication required. Sends feedback to the Atoll team's internal board.
|
|
405
|
+
|
|
406
|
+
| Method | Endpoint | Description |
|
|
407
|
+
|--------|----------|-------------|
|
|
408
|
+
| POST | `/api/feedback` | Submit bug report or feature request (`{ type, description, userEmail?, userName?, url? }`)
|