confluence-doc-navigator

Search and navigate Confluence documentation using Loom MCP tools and CQL queries.

Updated Sep 7, 2026
One-click install
npx skills add https://github.com/deriye/.agents-work --skill confluence-doc-navigator-deriye
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: confluence-doc-navigator
Source: https://github.com/deriye/.agents-work/tree/main/skills/confluence-doc-navigator
Command: npx skills add https://github.com/deriye/.agents-work --skill confluence-doc-navigator-deriye

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Finding the right documentation in a large Confluence instance is slow and frustrating when you don't know which space or page contains the answer. This Skill provides structured workflows for locating, exploring, and summarizing Confluence documentation using Loom MCP tools. ## Core Features & Use Cases - Page Hierarchy Exploration: Start from a known page URL or ID and traverse child pages to map out documentation structure. - CQL-Based Search: Run broad text searches or precise Confluence Query Language filters by space, title, label, or ancestor page. - Space-Aware Navigation: Leverage a curated map of key spaces (VBCESA, DESD, VAP, BBL, SEWS2) and the Team Cluster Busters page tree for IC3/GFX development docs. - Use Case: A developer asks "do we have docs for creating a new SWC in IC3?" The Skill searches Confluence, locates the relevant page under the IC3 hierarchy, and returns the title, space, URL, and a content summary. ## Quick Start Ask the assistant to search Confluence for documentation on a specific topic or to explore the pages under a given Confluence URL.

Frequently Asked Questions about confluence-doc-navigator

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

FAQPage Schema
How do I search Confluence documentation with CQL queries?▼

Use the loom_confluence_search tool with CQL patterns like text ~ "keyword", title ~ "keyword", space = "KEY", or ancestor = PAGEID. Combine filters, for example text ~ "SEWS" AND space = "VBCESA" AND type = page, to narrow results.

How do I explore the page hierarchy under a Confluence page?▼

Extract the page ID from the Confluence URL, then call loom_confluence_get_page_children with that parent ID to list child pages. Repeat on children to map deeper levels of the documentation tree.

Can I get a Confluence page content from just a URL?▼

Yes. Extract the pageId parameter from the URL and pass it to loom_confluence_get_page with include_metadata set to true. The tool returns the page content along with metadata such as version information.

Which Confluence spaces contain IC3 and GFX development documentation?▼

Key spaces include VBCESA for team docs and development guides, DESD for IC development workflows, VAP for AUTOSAR platform docs, BBL for BBM/LDC development, and SEWS2 for SEWS system documentation.

What are the limitations of Confluence text search for finding docs?▼

Broad text searches can return many irrelevant pages across spaces. Narrow results with CQL filters on space, title, label, or ancestor page, and check page versions since older pages may contain outdated information.