Read a Confluence page and recursively explore its child pages up to 3 levels deep. Use when users want to comprehensively read a Confluence page tree, understand hierarchical documentation, or analyze content across parent and child pages.
This skill guides you to recursively read Confluence pages and their descendants up to 3 levels deep.
Use this skill when:
Use getConfluencePage to read the initial page provided by the user.
Use getConfluencePageDescendants to find all child pages of the current page. This tool returns the hierarchical structure of descendants.
For each child page found:
getConfluencePage to read its contentFor each child page read in Step 3:
getConfluencePageDescendants to check if it has its own childrenIMPORTANT: Stop at depth 3. Do not explore beyond 3 levels from the starting page.
After reading all pages within the depth limit:
Keep track of the current depth level:
User: "Read this Confluence page and all its subpages: [link]"
Your workflow:
1. Read the starting page (depth 0)
2. Find its children using getConfluencePageDescendants
3. Read each child (depth 1) and find their children
4. Read each grandchild (depth 2) and find their children
5. Read each great-grandchild (depth 3) - STOP
6. Synthesize all information into a comprehensive summary