confluence-search

confluence-search is a skill for Claude Code from ulises-jeremias/agent-toolkit. It costs 38 tokens per session (3,109 once invoked), scanned A, original, MIT.

A read-only search tool for Confluence, using Confluence Query Language (CQL), a query syntax for finding specific content. It can search pages by text, titles, labels, dates, creators, or spaces.

In plain words
What is it for?
Use it to build and run searches, find labelled or recently changed pages, query a particular space, and export results as CSV or JSON.
Why use it?
It removes the need to browse pages manually when looking for documentation or other stored content. Search results can also be exported for further use.

Skill for Claude Code

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

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

Good fit Use it to build and run searches, find labelled or recently changed pages, query a particular space, and export results as CSV or JSON.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ulises-jeremias/agent-toolkit/confluence-search
Install

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.

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

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-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/ulises-jeremias/agent-toolkit/confluence-search/github.svg)](https://agentmods.dev/skills/ulises-jeremias/agent-toolkit/confluence-search)
Your own site
<a href="https://agentmods.dev/skills/ulises-jeremias/agent-toolkit/confluence-search"><img src="https://agentmods.dev/badge/skills/ulises-jeremias/agent-toolkit/confluence-search/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for confluence-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/ulises-jeremias/agent-toolkit/confluence-search"><img src="https://agentmods.dev/badge/skills/ulises-jeremias/agent-toolkit/confluence-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,109 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: 1 finding, up to high

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 →

  • high Memory Poisoning · line 323
    Skill manipulates agent memory, state, or stored context. Memory corruption can alter personality, override safety rules, or cause unpredictable behavior.
    Fix: Protect agent memory and state from modification by untrusted content. Use read-only memory for critical instructions and validate all state changes.
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.00038 $0.03109
Opus 5 $0.00019 $0.01554
Sonnet 5 $0.00008 $0.00622
Haiku 4.5 $0.00004 $0.00311

Measured 5d ago against content hash 105150fad540, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

confluence-search 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.

plugins/agent-toolkit-complete/.github/skills/confluence-search/SKILL.md · 446 lines

How it starts

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

Confluence Search Skill

Search Confluence content using CQL (Confluence Query Language).


⚠️ PRIMARY USE CASE

This skill finds content across Confluence. Use this skill for:

  • Searching pages by text, title, or labels
  • Building CQL queries for complex searches
  • Exporting search results to CSV/JSON
  • Finding content by date, creator, or space

This is a read-only skill - it cannot create, modify, or delete content.


When to Use This Skill

Trigger Example
Text search "Find pages about API documentation"
Label search "Find all pages with label 'approved'"
Space search "Search for content in DOCS space"
Date-based "Find pages modified this week"
Export "Export all pages in KB space to CSV"
CQL query "Run CQL: space = DOCS AND type = page"

When NOT to Use This Skill

Operation Use Instead
Create/edit pages confluence-page
Add/remove labels confluence-label
Manage permissions confluence-permission
View page hierarchy confluence-hierarchy

Risk Levels

All operations are read-only with no risk:

Operation Risk Notes
Search content - Read-only
Validate CQL - Read-only
Export results - Creates local file only
View history - Local history only

Overview

This skill provides powerful search capabilities:

  • Execute CQL queries
  • Validate CQL syntax
  • Get field and value suggestions
  • Interactive query builder
  • Export results to CSV/JSON
  • Streaming export for large result sets
  • Query history management

CQL Query Patterns

Basic Queries

# Find pages in a space
space = "DOCS" AND type = page

# Find by label
label = "documentation"

# Text search
text ~ "API documentation"

# By creator
creator = "[email protected]"
creator = currentUser()

# By date
created >= "2024-01-01"
lastModified > startOfMonth()

Read the full file on GitHub · 446 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. 5d ago First seen · 446 lines · 38 tokens per session scan A 105150fad540

Subscribe to this mod's changes

confluence-search is a skill published in the GitHub repository ulises-jeremias/agent-toolkit (16 stars, last pushed today), licensed MIT. It adds 38 tokens to every session and 3,109 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

collection

Choose which SkillNote skill collection is active for this Codex project. Use when the user says "change collection", "switch skills", "use frontend skills", or "show collections".

luna-prompts/skillnote · 39 tokens

audit-accomplishments

Use when preparing a performance self-reflection, midyear or annual review, promotion packet, or brag document; when asked to collect, mine, gather, or summarize your accomplishments, contributions, or impact over a period; or when assembling cited evidence of work done across GitHub, Jira, Notion, Slack, and local…

paultyng/skill-issue · 78 tokens

start-day

Use at the start of a workday or when the user says "start my day", "good morning", "/start-day", "morning", "what should I work on today", or wants a catch-up on what happened while they were away. Use when the user wants a short ranked list of what to tackle today.

paultyng/skill-issue · 69 tokens

tracking-time

Tracks time on tasks using timers or manual entries and generates timesheet reports in Astravue. Use when logging work hours, starting or stopping a timer, reviewing time entries, generating timesheets, or asking "how much time was spent on this?".

AstravueOrg/astravue-mcp-server · 53 tokens

Daily brief / morning catch-up (Local MCP)

Use when the user asks "what's on my plate today", "catch me up", "morning brief", or wants a summary of their day across calendar, reminders and email. The single most common multi-step automation. Powered by Local MCP.

lanchuske/local-mcp-releases · 60 tokens

Inbox to action — triage, reply & schedule (Local MCP)

Use when the user wants to deal with their inbox — find what needs a response, draft replies, and turn emails into calendar events or reminders. Captures the common email→read→reply→schedule workflow. Powered by Local MCP.

lanchuske/local-mcp-releases · 61 tokens