一键导入
confluence-attachment
Manage file attachments - upload, download, list, and delete attachments. ALWAYS use when user wants to work with files on pages.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage file attachments - upload, download, list, and delete attachments. ALWAYS use when user wants to work with files on pages.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
View analytics, statistics, and popularity metrics for Confluence content. ALWAYS use when user wants to see views, popularity, or contributor stats.
Manage comments on Confluence pages - add, get, update, delete, and resolve comments. ALWAYS use for feedback, discussions, and inline annotations.
Navigate and manage Confluence page hierarchies, ancestors, descendants, and trees. ALWAYS use for parent/child relationships and page tree navigation.
JIRA integration - embed issues, create links between products. ALWAYS use when user wants to connect Confluence and JIRA.
Manage content labels - add, remove, and search by labels. ALWAYS use when user wants to tag, label, or categorize content.
Manage Confluence pages and blog posts - create, read, update, delete, copy, move, and version control. ALWAYS use when user wants to work with page content, create pages, update pages, or manage page versions.
| name | confluence-attachment |
| description | Manage file attachments - upload, download, list, and delete attachments. ALWAYS use when user wants to work with files on pages. |
| triggers | ["attach","attachment","upload file","download file","upload attachment","download attachment","file","files"] |
Manage file attachments on Confluence pages.
This skill manages files attached to Confluence pages. Use for:
| Use This Skill | Use Instead |
|---|---|
| Upload/download files | - |
| List page attachments | - |
| Delete attachments | - |
| Create/edit pages | confluence-page |
| Search for content | confluence-search |
| Operation | Risk | Notes |
|---|---|---|
| List/download | - | Read-only |
| Upload | - | Can be deleted |
| Update | ⚠️ | Replaces existing file |
| Delete | ⚠️⚠️ | No recovery |
Upload a file to a page.
Usage:
confluence attachment upload PAGE_ID FILE_PATH
confluence attachment upload 12345 report.pdf
confluence attachment upload 12345 image.png --comment "Screenshot"
confluence attachment upload 12345 data.csv --output json
Options:
--comment - Comment describing the attachment--output, -o - Output format: text (default) or jsonDownload an attachment.
Usage:
confluence attachment download ATTACHMENT_ID --output ./downloads/
confluence attachment download att123456 --output myfile.pdf
confluence attachment download 12345 --all --output ./downloads/ # Download all from page
List attachments on a page.
Usage:
confluence attachment list 12345
confluence attachment list 12345 --output json
confluence attachment list 12345 --output table
confluence attachment list 12345 --media-type application/pdf
confluence attachment list 12345 --limit 50
Options:
--output, -o - Output format: text, json, or table--media-type - Filter by media type (e.g., application/pdf)--limit - Maximum number of results (default 25, max 250)Remove an attachment.
Usage:
confluence attachment delete ATTACHMENT_ID
confluence attachment delete ATTACHMENT_ID --force
confluence attachment delete ATTACHMENT_ID --purge --force
Options:
--force, -f - Skip confirmation prompt--purge - Permanently delete (otherwise moves to trash)Replace an attachment file.
Usage:
confluence attachment update ATTACHMENT_ID FILE_PATH
confluence attachment update att123456 new_version.pdf
confluence attachment update att123456 updated.docx --comment "Updated content"
confluence attachment update att123456 report.pdf --output json
Options:
--comment - Comment describing the update--output, -o - Output format: text (default) or json