From 099c37c4b400d431ce8cada5e0427726d22105fb Mon Sep 17 00:00:00 2001 From: dotta Date: Wed, 18 Mar 2026 13:11:26 -0500 Subject: [PATCH] Add attachments API endpoints to Paperclip skill quick-reference Add upload, list, get content, and delete attachment endpoints to the Key Endpoints table so agents know about the attachments API. Co-Authored-By: Paperclip Co-Authored-By: Claude Opus 4.6 --- skills/paperclip/SKILL.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/skills/paperclip/SKILL.md b/skills/paperclip/SKILL.md index 0e6044e6..797e91b5 100644 --- a/skills/paperclip/SKILL.md +++ b/skills/paperclip/SKILL.md @@ -256,6 +256,10 @@ PATCH /api/agents/{agentId}/instructions-path | List agents | `GET /api/companies/:companyId/agents` | | Dashboard | `GET /api/companies/:companyId/dashboard` | | Search issues | `GET /api/companies/:companyId/issues?q=search+term` | +| Upload attachment (multipart, field=file) | `POST /api/companies/:companyId/issues/:issueId/attachments` | +| List issue attachments | `GET /api/issues/:issueId/attachments` | +| Get attachment content | `GET /api/attachments/:attachmentId/content` | +| Delete attachment | `DELETE /api/attachments/:attachmentId` | ## Searching Issues