Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/pigfoot/claude-code-hubs/confluencenpx skills add pigfoot/claude-code-hubs --skill confluencegit clone --depth 1 https://github.com/pigfoot/claude-code-hubsWrote 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.
[](https://agentmods.dev/skills/pigfoot/claude-code-hubs/confluence)<a href="https://agentmods.dev/skills/pigfoot/claude-code-hubs/confluence"><img src="https://agentmods.dev/badge/skills/pigfoot/claude-code-hubs/confluence.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00045 | $0.04142 |
| Opus 5 | $0.00023 | $0.02071 |
| Sonnet 5 | $0.00009 | $0.00828 |
| Haiku 4.5 | $0.00005 | $0.00414 |
Grade A, and why
confluence 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 310 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Confluence Skill
Critical Rules
- DO NOT use MCP for any Confluence operation — this plugin uses REST API for all operations. No MCP dependency.
- DO NOT use MCP for page uploads — size limit ~10-20KB. Use
upload_confluence.pyinstead. - DO NOT use MCP for structural modifications — AI tool delays cause 650x slowdown (~13min vs ~1s). Use REST API scripts.
- DO NOT create temporary analysis scripts (
/tmp/analyze_*.py). Use existinganalyze_page.py. - DO NOT write inline scripts to manipulate ADF JSON — use the structural scripts which handle ADF marks correctly.
- DO NOT use raw XML/HTML for images. Use markdown syntax:
. - DO NOT forget diagram conversion — pre-convert Mermaid/PlantUML to PNG/SVG before upload.
- For Rovo AI search: use Claude Code's built-in
mcp__claude_ai_Atlassian_Rovo__searchAtlassian(requires one-time Atlassian authentication viamcp__claude_ai_Atlassian__authenticate).
Architecture
New page: Markdown → markdown_to_adf.py (pre-processor + mistune) → ADF JSON → REST API v2
Edit page: read_page.py (ADF) → Method 6 JSON diff/patch → REST API v2 PUT ADF
Download: REST API v2 GET ADF → adf_to_markdown.py → readable Markdown (display only)
Read page: read_page.py → REST API v2 → Markdown or ADF JSON (stdout)
Search: search_cql.py → REST API v1 CQL → formatted results + confidence analysis
Structural: Direct REST API scripts (add_table_row.py, add_panel.py, etc.) → ~1s each
Attachment: v1 REST API (no v2 equivalent)
Page width: v1 REST API property (no v2 equivalent)
Key points:
- Method 6 roundtrip never goes through Markdown — ADF in, ADF out
adf_to_markdown.pyis display-only (for Claude to read), not a data conversion stepmarkdown_to_adf.pyincludes a pre-processor that fixes emoji lines (✅/❌) and[ ]checkboxes- Upload priority: REST API v2 ADF (primary) → no MCP fallback
- All operations require
CONFLUENCE_URL,CONFLUENCE_USER,CONFLUENCE_API_TOKEN
What ships with it
41 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/comparison-tables.md 20 KB
- references/cql_reference.md 3.1 KB
- references/macro-preservation-guide.md 22 KB
- references/markdown-first-workflow.md 8.6 KB
- references/mention-account-id-lookup.md 10 KB
- references/roundtrip-implementation-comparison.md 97 KB
- references/roundtrip-workflow.md 18 KB
- references/troubleshooting.md 3.5 KB
- references/wiki_markup_guide.md 2.0 KB
- scripts/add_blockquote.py 3.4 KB runs code
- scripts/add_date.py 4.5 KB runs code
- scripts/add_emoji.py 4.3 KB runs code
- scripts/add_inline_card.py 4.1 KB runs code
- scripts/add_list_item.py 5.0 KB runs code
- scripts/add_media_group.py 5.0 KB runs code
- scripts/add_media.py 5.0 KB runs code
- scripts/add_mention.py 4.5 KB runs code
- scripts/add_nested_expand.py 3.7 KB runs code
- scripts/add_panel.py 4.8 KB runs code
- scripts/add_rule.py 2.8 KB runs code
- scripts/add_status.py 4.5 KB runs code
- scripts/add_table_row.py 3.6 KB runs code
- scripts/add_to_codeblock.py 5.8 KB runs code
- scripts/adf_to_markdown.py 14 KB runs code
- scripts/analyze_page.py 19 KB runs code
- scripts/confluence_adf_utils.py 28 KB runs code
- scripts/confluence_router.py 8.1 KB runs code
- scripts/convert_markdown_to_wiki.py 5.8 KB runs code
- scripts/DEVELOPMENT_GUIDELINES.md 7.9 KB
- scripts/download_confluence.py 9.9 KB runs code
- scripts/insert_section.py 6.1 KB runs code
- scripts/markdown_to_adf.py 26 KB runs code
- scripts/mcp_json_diff_roundtrip.py 33 KB runs code
- scripts/read_page.py 2.9 KB runs code
- scripts/README_ADF_UTILS.md 11 KB
- scripts/roundtrip_helper.py 6.0 KB runs code
- scripts/search_cql.py 4.8 KB runs code
- scripts/smart_search.py 8.5 KB runs code
- scripts/upload_attachment.py 9.8 KB runs code
- scripts/upload_confluence.py 15 KB runs code
- scripts/url_resolver.py 4.9 KB runs code
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.
- 5d ago First seen · 310 lines · 45 tokens per session scan A 224abbb88de0
confluence is a skill published in the GitHub repository pigfoot/claude-code-hubs (5 stars, last pushed 1mo ago), licensed MIT. It adds 45 tokens to every session and 4,142 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-08-31.
Other skills, from other repositories
orbit-notion
Open Orbit briefing skill — selected by the Orbit pipeline when Notion is the user's only connected connector, or when the user explicitly scopes their daily digest to Notion. Pulls the past 24 hours of document edits, comments, mentions, and database row changes from the user's authenticated Notion connection and…
instrument-data-to-allotrope
Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…
baoyu-youtube-transcript
Downloads YouTube video transcripts/subtitles and cover images by URL or video ID. Supports multiple languages, translation, chapters, and speaker identification. Caches raw data for fast re-formatting. Use when user asks to "get YouTube transcript", "download subtitles", "get captions", "YouTube字幕", "YouTube封面"…
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
gog-slides
Google Slides operations through gog.
read
Reads URLs and PDFs by fetching source content, defaulting to concise summaries for plain read requests and clean Markdown when asked to convert, save, quote, cite, or feed downstream work. Use when users ask in any language to read, fetch, check, summarize, quote, cite, convert, or save a URL or PDF. Not for local…