confluence-attachment

confluence-attachment is a skill for Claude Code from ulises-jeremias/agent-toolkit. It costs 31 tokens per session (1,202 once invoked), scanned A, original, MIT.

A skill for managing files attached to Confluence pages, such as PDFs, images, and data files. Confluence is a team wiki for shared documentation.

In plain words
What is it for?
Use it to upload, download, list, replace, or delete page attachments.
Why use it?
It keeps attachment tasks separate from editing page text and makes file handling available through commands.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is confluence-as attachment download ATTACHMENT_ID --output ./downloads/.

Part of the agent-toolkit-complete plugin — 116 skills shipped together

Good fit Use it to upload, download, list, replace, or delete page attachments.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/ulises-jeremias/agent-toolkit
agentmods
npx agentmods add skills/ulises-jeremias/agent-toolkit/confluence-attachment

Made for: Claude Code.

Or install agent-toolkit-complete, the plugin that ships this one along with the rest of its 116 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for confluence-attachment

README.md
[![agentmods](https://agentmods.dev/badge/skills/ulises-jeremias/agent-toolkit/confluence-attachment.svg)](https://agentmods.dev/skills/ulises-jeremias/agent-toolkit/confluence-attachment)
Your own site
<a href="https://agentmods.dev/skills/ulises-jeremias/agent-toolkit/confluence-attachment"><img src="https://agentmods.dev/badge/skills/ulises-jeremias/agent-toolkit/confluence-attachment.svg" alt="Measured on agentmods" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,202 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 135
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
  • medium Excessive Agency · line 143
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00031 $0.01202
Opus 5 $0.00015 $0.00601
Sonnet 5 $0.00006 $0.00240
Haiku 4.5 $0.00003 $0.00120

Measured 4d ago against content hash 0e6d416c2b6f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

confluence-attachment scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/agent-toolkit-complete/.github/skills/confluence-attachment/SKILL.md · 160 lines

How it starts

The opening of the file, as written. The whole thing — 160 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Confluence Attachment Skill

Manage file attachments on Confluence pages.


⚠️ PRIMARY USE CASE

This skill manages files attached to Confluence pages. Use for:

  • Uploading files to pages
  • Downloading attachments
  • Listing files on a page
  • Deleting attachments

When to Use / When NOT to Use

Use This Skill Use Instead
Upload/download files -
List page attachments -
Delete attachments -
Create/edit pages confluence-page
Search for content confluence-search

Risk Levels

Operation Risk Notes
List/download - Read-only
Upload - Can be deleted
Update ⚠️ Replaces existing file
Delete ⚠️ Moves to trash (recoverable)
Delete --purge ⚠️⚠️ Permanent - only works on an already-trashed attachment

CLI Commands

confluence-as attachment upload

Upload a file to a page.

Usage:

confluence-as attachment upload PAGE_ID FILE_PATH
confluence-as attachment upload 12345 report.pdf
confluence-as attachment upload 12345 image.png --comment "Screenshot"
confluence-as attachment upload 12345 data.csv --output json

Options:

  • --comment - Comment describing the attachment
  • --output, -o - Output format: text (default) or json

confluence-as attachment download

Download an attachment.

Usage:

confluence-as attachment download ATTACHMENT_ID --output ./downloads/
confluence-as attachment download att123456 --output myfile.pdf
confluence-as attachment download 12345 --all --output ./downloads/  # Download all from page

Options:

  • --output, -o - Output file or directory (default: current directory)
  • --all, -a - Download all attachments from a page (the ID argument is a page ID)

confluence-as attachment list

List attachments on a page.

Usage:

confluence-as attachment list 12345
confluence-as attachment list 12345 --output json
confluence-as attachment list 12345 --output table
confluence-as attachment list 12345 --media-type application/pdf
confluence-as attachment list 12345 --limit 50

Read the full file on GitHub · 160 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 160 lines · 31 tokens per session scan A 0e6d416c2b6f

Subscribe to this mod's changes

confluence-attachment is a skill published in the GitHub repository ulises-jeremias/agent-toolkit (16 stars, last pushed today), licensed MIT. It adds 31 tokens to every session and 1,202 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.

Related

Other skills, from other repositories

release-governance

Use when preparing, auditing, releasing, PDF-hardening, or rebuttal-hardening academic manuscripts, datasets, artifacts, reviewer packets, or claim registers involving multiple refs, local assets, human labels, agent-assisted drafts, wide tables, figure provenance, submission PDFs, or evidence-boundary checks.

yha9806/academic-writing-toolkit · 64 tokens

read

Read PDF page by page with structured output — key arguments, terms glossary, thesis connections. Use when reading academic papers, books, or articles.

yha9806/academic-writing-toolkit · 31 tokens

export

Convert thesis chapters and reading notes from Markdown to Word (.docx) and package for submission. Use when preparing materials for supervisors or examiners.

yha9806/academic-writing-toolkit · 31 tokens

human-eval-handoff-repair

Use when validating, repairing, or mapping human-evaluation handoff packages, filled annotation CSVs, rebuttal annotation UIs, or reviewer annotation returns across package versions. Applies to checking row alignment, detecting cross-snapshot contamination, converting old labels to current schemas, generating…

yha9806/academic-writing-toolkit · 78 tokens

wechat-article-scraper

A batch tool for downloading WeChat public-account articles from their URLs as Markdown files. It also downloads the articles' images and links them locally.

lililly123789/wechat-article-scraper · 56 tokens

PDF → spreadsheet — extract data into Excel (Local MCP)

Use when the user wants to pull data out of one or more PDFs (invoices, bank/credit-card statements, receipts, reports, tables) and put it into a spreadsheet. pdfread is one of the most-used tools; this codifies the read-PDF → structure → write-Excel workflow. Powered by Local MCP, on-device.

lanchuske/local-mcp-releases · 82 tokens