agentio-confluence

Manage Confluence spaces, pages, and comments through the agentio CLI.

2|Updated Jan 3, 2026
One-click install
npx skills add https://github.com/plosson/agentio --skill agentio-confluence-plosson
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agentio-confluence
Source: https://github.com/plosson/agentio/tree/main/claude/skills/agentio-confluence
Command: npx skills add https://github.com/plosson/agentio --skill agentio-confluence-plosson

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It lets an AI agent or CI pipeline read, search, create, and update Confluence content from the command line without writing custom API integration code. ## Core Features & Use Cases - Content Discovery: List spaces and pages, filter by space, parent, or type, and search with free text or raw CQL queries. - Page Management: Create and update pages with inline or piped HTML content, including child pages under a parent. - Collaboration: List and add footer comments on pages. - Use Case: In a GitHub Actions workflow, search Confluence for a deployment guide, then post a comment confirming the run completed. ## Quick Start Use the agentio-confluence skill to search Confluence for pages mentioning "onboarding" in the ENG space.

Frequently Asked Questions about agentio-confluence

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search Confluence pages from the command line?▼

Run agentio confluence search with --text for free-text queries or --cql for raw CQL such as "space = ENG AND type = page". You can also filter by space key and content type, and control result count with --limit.

How to create a Confluence page with agentio?▼

Use agentio confluence create with --title, --space (or --space-id), and --content for the body. You can also pipe HTML from stdin, and pass --parent to create the page as a child of an existing page.

Can I run agentio Confluence commands in GitHub Actions?▼

Yes. Authenticate locally once, export the config as an encrypted vault, store it as a secret, then run agentio vault import in the workflow. All confluence subcommands then work in CI without a browser.

What body formats does Confluence page retrieval support?▼

The get command supports storage, view, and atlas_doc_format via the --format flag, with storage as the default. Use view for rendered HTML output.

Does updating a Confluence page replace the whole body?▼

Yes, agentio confluence update replaces the page body with the new content you provide inline or via stdin. The title defaults to the current one unless you pass --title.