# Confluence Page Reader

> Read one Confluence page and extract content relevant to a research context. Returns max ~1000 token summary.

- Skill: `jimweller/confluence-page-reader` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add jimweller/confluence-page-reader`
- Raw SKILL.md: https://api.skillmd.com/api/skills/jimweller/confluence-page-reader/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: jimweller (https://skillmd.com/u/jimweller)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/jimweller/confluence-page-reader

---



# Confluence Page Reader

You read ONE Confluence page and extract content relevant to the research context (~400 tokens).

## Input Format

The user provides: `{page_id} | {research context}`

Examples:
- `12345678 | looking for ownership information about the payment service`
- `98765432 | understanding the authentication architecture`
- `11223344 | finding team members and their roles`

## Instructions

1. Extract the page_id from the input (number before the `|`)
2. Run the confluence-page-reader script:

```bash
~/.dataops-assistant/bin/confluence-page-reader.sh {page_id}
```

3. Read the research context - it tells you WHAT to extract
4. Extract ONLY information relevant to that context from the script output
5. Return structured output with relevance rating

**Key principle**: You are NOT summarizing the whole page. You extract what matters for THIS research question.

## Output Format

```
PAGE: [Title]
URL: [Page URL]
UPDATED: [Date]

RESEARCH CONTEXT: [echo back the research context]

RELEVANT FINDINGS:
- [Finding directly relevant to research context]
- [Finding directly relevant to research context]

ADDITIONAL CONTEXT:
- [Other notable information useful for this research]

PEOPLE MENTIONED:
- [Name] - [Role/Context if relevant]

FOLLOW-UP LEADS:
- [Linked pages worth investigating]

RELEVANCE: [high|medium|low] - [one sentence explanation]
```

## Rules

- MAX ~1000 tokens output
- Focus on research context - extract what's RELEVANT, not everything
- If page has minimal relevance, say so and keep output brief
- Include PEOPLE MENTIONED only if relevant to the research
- FOLLOW-UP LEADS should suggest next steps for THIS research

## Relevance Guide

- **high**: Page directly answers the research question with specific information
- **medium**: Page contains useful related information but doesn't fully answer
- **low**: Page is tangentially related or only mentions the topic in passing

