
Confluence
- 16 installs
- 1 repo stars
- Updated April 27, 2026
- adrianhdezm/atlassian-bridge
confluence is a Claude Code skill that interacts with Atlassian Confluence via the atl CLI to read, create, update, delete and search pages and browse spaces.
About
confluence is a Claude Code skill that wraps the community atl CLI to work with Atlassian Confluence content. A developer uses it to get, create, update, delete and search pages and browse space trees from the agent. It checks the CLI is installed and authenticated before running any command.
- Drives the community atl CLI to read, create, update, delete and search Confluence pages
- Requires @ai-foundry/atlassian-bridge installed and atl auth login
- Builds CQL queries and ADF bodies from user intent
Confluence by the numbers
- 16 all-time installs (skills.sh)
- Ranked #3,484 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
- Data as of Jul 7, 2026 (Skillselion catalog sync)
confluence capabilities & compatibility
- Capabilities
- confluence pages · confluence search · space browse
- Works with
- confluence · atlassian
- Use cases
- documentation
- Pricing
- Free
What confluence says it does
Interact with Atlassian Confluence via the atl CLI — read, create, update, delete, and search pages, and browse spaces.
**Note:** `atl` is NOT the official Atlassian CLI. It is a community project (`@ai-foundry/atlassian-bridge`).
npx skills add https://github.com/adrianhdezm/atlassian-bridge --skill confluenceAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 16 |
|---|---|
| repo stars | ★ 1 |
| Last updated | April 27, 2026 |
| Repository | adrianhdezm/atlassian-bridge ↗ |
What it does
Read, create, update and search Confluence pages and browse space trees through the atl CLI.
Who is it for?
Developers who want an agent to manage Confluence pages and spaces from the terminal.
Skip if: Users without the atl CLI installed or without an authenticated Atlassian account.
When should I use this skill?
When the user wants to get, create, search or update Confluence content or show a space tree.
What you get
Confluence pages and spaces can be read and edited directly from agent commands.
By the numbers
- 6 page actions (get/create/update/delete/search/children)
- 2 space actions (get/tree)
Files
Confluence (atl CLI)
Prerequisites
Before running any Confluence command, verify the CLI is available and authenticated:
1. Run atl --version. If it fails, stop and tell the user:
TheatlCLI is not installed. Install it withnpm i -g @ai-foundry/atlassian-bridgeand then runatl auth login.
>
Note:atlis NOT the official Atlassian CLI. It is a community project (@ai-foundry/atlassian-bridge).
2. Run atl auth status. If not authenticated, stop and tell the user:
You are not logged in. Run atl auth login to authenticate with your Atlassian account.Only proceed once both checks pass.
Available Commands
Pages
| Action | Command |
|---|---|
| Get | atl confluence pages get <idOrTitle> [--space <key>] |
| Create | atl confluence pages create <title> --space <id> [--parent <id>] [--body <adf>] |
| Update | atl confluence pages update <pageId> [--title <title>] [--body <adf>] [--parent <id>] |
| Delete | atl confluence pages delete <pageId> |
| Search | atl confluence pages search <cql> [--limit <n>] [--cursor <token>] |
| Children | atl confluence pages children <idOrTitle> [--space <key>] [--depth <n>] |
Spaces
| Action | Command |
|---|---|
| Get | atl confluence spaces get <idOrKey> |
| Tree | atl confluence spaces tree <idOrKey> [--depth <n>] |
Guidelines
- When the user provides a page title instead of an ID, use the title directly — the CLI resolves it. Include
--spaceif the user specifies or if disambiguation is needed. - For search, build a valid CQL query from the user's intent (e.g.
type=page AND title~"design doc"). - When creating or updating pages with
--body, the value must be valid ADF (Atlassian Document Format) JSON. - Always show the user the command you are about to run before executing it.
Related skills
FAQ
Is atl the official Atlassian CLI?
No. The docs state atl is NOT the official Atlassian CLI; it is a community project (@ai-foundry/atlassian-bridge).
What do I need before running commands?
The atl CLI must be installed and you must run atl auth login; the skill verifies atl --version and atl auth status first.