plugins/src/base/skills/setup-confluence/SKILL.md
Configure Confluence as the PRD source for this project. Writes `confluence.spaceKey` and/or `confluence.parentPageId` into `.lisa.config.json` and offers to set top-level `source: "confluence"`. Depends on /lisa:setup:atlassian — atlassian.cloudId must already be present. Idempotent.
npx skillsauth add codyswanngt/lisa setup-confluenceInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Pin a Confluence space (or a parent page within one) as the PRD-discovery scope for this project.
cloudid=$(jq -r '.atlassian.cloudId // empty' .lisa.config.json 2>/dev/null)
if [ -z "$cloudid" ]; then
echo "Error: atlassian.cloudId not set. Run /lisa:setup:atlassian first." >&2
exit 1
fi
If atlassian is missing, invoke /lisa:setup-atlassian via the Skill tool first, then resume.
Two scoping modes (mutually compatible; both can be set):
--space=KEY or list spaces via the active substrate:
acli confluence space list --output jsonmcp__plugin_atlassian_atlassian__getConfluenceSpaces with cloudId=$cloudid--parent=PAGE_ID or ask the user via AskUserQuestion to provide it.If neither arg is supplied, ask which mode (or both). Setting only parentPageId is valid; setting only spaceKey is valid; setting both narrows the scope.
Confluence PRD lifecycle is parent-page-based, not label-based (see the config-resolution rule for why — Atlassian's scoped API tokens cannot write labels). Each lifecycle role gets its own parent page; a PRD's state = which parent it's a child of. The full PRD lifecycle is draft → ready → in_review → (blocked | ticketed) → shipped → verified (the prd-lifecycle-rollup rule, slug prd-lifecycle-rollup): rollup performs the ticketed → shipped hop, then /lisa:verify-prd performs the terminal shipped → verified (pass) / shipped → ticketed (fail) hop. verified is the terminal lifecycle state after shipped (the verified role from the config-resolution rule, #591).
If confluence.parentPageId is set in config, the seven parent pages are created as children of that page (keeps the lifecycle scoped to a sub-tree of the space). Otherwise, they're created at the space root.
SPACE_ID=$(curl -s -H "Authorization: Basic $AUTH" \
"${GW}/api/v2/spaces?keys=$(jq -r '.confluence.spaceKey' .lisa.config.json)" \
| jq -r '.results[0].id')
PARENT_ROOT=$(jq -r '.confluence.parentPageId // empty' .lisa.config.json)
For each role in [draft, ready, in_review, blocked, ticketed, shipped, verified], create a page named after the role (Draft, Ready, In Review, Blocked, Ticketed, Shipped, Verified). Body: a short description of what PRDs in this state mean.
create_parent() {
local role="$1" title="$2" body="$3"
local payload
payload=$(jq -n \
--arg sid "$SPACE_ID" \
--arg pid "$PARENT_ROOT" \
--arg t "$title" \
--arg b "$body" '
{
spaceId: $sid,
status: "current",
title: $t,
body: { representation: "storage", value: $b }
} + (if $pid != "" then { parentId: $pid } else {} end)
')
curl -s -X POST -H "Authorization: Basic $AUTH" -H "Content-Type: application/json" \
-d "$payload" "${GW}/api/v2/pages" | jq -r '.id'
}
P_DRAFT=$(create_parent draft "Draft" "PRDs being authored; not yet ready for the agent queue.")
P_READY=$(create_parent ready "Ready" "PRDs flagged by humans as ready for agent ticketing.")
P_REVIEW=$(create_parent in_review "In Review" "PRDs the agent has claimed and is validating.")
P_BLOCKED=$(create_parent blocked "Blocked" "Validation failed — clarifying comments posted by the agent. Edit the PRD, then move back to Ready.")
P_TICKETED=$(create_parent ticketed "Ticketed" "Validated and tickets created. Tracked through the build queue from here.")
P_SHIPPED=$(create_parent shipped "Shipped" "All child tickets shipped.")
P_VERIFIED=$(create_parent verified "Verified" "Shipped product empirically checked against the PRD. Terminal state.")
Handle the "title already exists" case (400 BAD_REQUEST) by searching for an existing page with that title first and re-using its id rather than failing. This find-or-reuse path is what makes the scaffolding idempotent — re-running setup-confluence reuses an existing Verified parent page rather than creating a duplicate.
confluence.parents to configjq --arg d "$P_DRAFT" --arg r "$P_READY" --arg iv "$P_REVIEW" \
--arg b "$P_BLOCKED" --arg t "$P_TICKETED" --arg s "$P_SHIPPED" \
--arg v "$P_VERIFIED" '
.confluence = ((.confluence // {})
| .parents = {
draft: $d,
ready: $r,
in_review: $iv,
blocked: $b,
ticketed: $t,
shipped: $s,
verified: $v
})
' .lisa.config.json > .lisa.config.json.tmp \
&& mv .lisa.config.json.tmp .lisa.config.json
This persists confluence.parents.verified to config, matching the confluence.parents.verified schema from the config-resolution rule, #591.
confluence section (spaceKey / parentPageId)jq --arg space "$SPACE_KEY" --arg parent "$PARENT_ID" '
.confluence = (
(.confluence // {})
| (if $space != "" then .spaceKey = $space else . end)
| (if $parent != "" then .parentPageId = $parent else . end)
)
' .lisa.config.json > .lisa.config.json.tmp \
&& mv .lisa.config.json.tmp .lisa.config.json
This step is small now that the heavy lifting moved into 3c — but it's still where spaceKey and (optionally) parentPageId get persisted.
sourceIf .source is unset or differs from "confluence", ask via AskUserQuestion:
Confluence configured. Set top-level
source: "confluence"so/lisa:intake(with no args) scans this space for PRDs?
Recommend "Yes" if the team's PRDs live in Confluence. If the team uses Notion or Linear for PRDs and Confluence is only for ad-hoc reference, recommend "No".
If yes:
jq '.source = "confluence"' .lisa.config.json > .lisa.config.json.tmp \
&& mv .lisa.config.json.tmp .lisa.config.json
Confluence has no native swimlane / kanban view for label-driven lifecycles. To approximate the Notion-board experience, create a single "PRD Dashboard" page in the configured space that renders seven Children Display macros side-by-side — one per PRD lifecycle status (draft, ready, in_review, blocked, ticketed, shipped, verified). The dashboard is the team's single-screen view of the PRD pipeline.
The draft column captures PRDs that have been created but not yet flipped to ready — useful for authors to track their own in-flight work and for editors to find PRDs that need a polish pass before they hit the agent queue.
If confluence.dashboardPageId already exists in .lisa.config.json, update that page rather than create a new one. Otherwise create.
Seven columns inside a ac:layout block. Each column is a Children Display macro targeting one lifecycle parent, scoped to the configured space (or parent page, if set).
Read the parent page IDs from config:
P_DRAFT=$(jq -r '.confluence.parents.draft' .lisa.config.json)
P_READY=$(jq -r '.confluence.parents.ready' .lisa.config.json)
P_REVIEW=$(jq -r '.confluence.parents.in_review' .lisa.config.json)
P_BLOCKED=$(jq -r '.confluence.parents.blocked' .lisa.config.json)
P_TICKETED=$(jq -r '.confluence.parents.ticketed' .lisa.config.json)
P_SHIPPED=$(jq -r '.confluence.parents.shipped' .lisa.config.json)
P_VERIFIED=$(jq -r '.confluence.parents.verified' .lisa.config.json)
Build a Children Display macro per parent. The macro shows direct children of the specified page, automatically updating as PRDs move between parents:
<ac:structured-macro ac:name="children" ac:schema-version="2">
<ac:parameter ac:name="page"><ac:link><ri:page ri:content-title="<TITLE>"/></ac:link></ac:parameter>
<ac:parameter ac:name="depth">1</ac:parameter>
<ac:parameter ac:name="sort">modified</ac:parameter>
<ac:parameter ac:name="reverse">true</ac:parameter>
<ac:parameter ac:name="all">false</ac:parameter>
</ac:structured-macro>
Children Display targets a parent by content-title (not by id, in storage format). The ri:content-title attribute references the parent by its title within the current space.
Wrap the seven macros in three rows of ac:layout-section. Confluence's ac:layout has no native 7-column preset, so lay out as three rows: two three_equal rows plus a final single-column row for the seventh tile. Row 1 (three_equal): Draft, Ready, In Review. Row 2 (three_equal): Blocked, Ticketed, Shipped. Row 3 (single): Verified.
The grouping is semantic too — top row covers the human-driven lead-up to agent pickup; middle row covers agent-driven build states post-pickup; the final row is the terminal verified state where the shipped product has been empirically checked against the PRD itself (/lisa:verify-prd).
Heading each column with the status name and count keeps the board scannable:
<ac:layout-cell>
<h2>Ready</h2>
<!-- Content by Label macro for prd-ready -->
</ac:layout-cell>
Above the layout, include a short header describing what the page is and how to use it:
<p>This page is the PRD pipeline view. PRDs live as child pages of one of seven lifecycle
parents: <strong>Draft</strong>, <strong>Ready</strong>, <strong>In Review</strong>,
<strong>Blocked</strong>, <strong>Ticketed</strong>, <strong>Shipped</strong>,
<strong>Verified</strong>.
Move a PRD between states by re-parenting the page (drag in the page tree, or
via the page's location settings).</p>
<p>To add a new PRD: create a page under <strong>Draft</strong>. When ready for
agent pickup, move it to <strong>Ready</strong>.</p>
Invoke lisa:atlassian-access with operation: write-page. The payload differs by mode:
{ "spaceKey": "$SPACE", "title": "PRD Dashboard", "body": "<the storage-format XML built above>", "parentId": "$PARENT" } (omit parentId if not set).{ "id": "<dashboardPageId>", "title": "PRD Dashboard", "body": "<...>" } — body is fully replaced.atlassian-access's write-page CLI adapter is currently nominal (acli's Confluence surface is view-only as of writing), so this call falls through to the MCP adapter. That's acceptable — the dashboard is a one-time setup-only write; the lifecycle hot path (label add/remove) doesn't go through this.
jq --arg id "$DASHBOARD_PAGE_ID" --arg url "$DASHBOARD_URL" \
'.confluence = ((.confluence // {})
| .dashboardPageId = $id
| .dashboardUrl = $url)' \
.lisa.config.json > .lisa.config.json.tmp \
&& mv .lisa.config.json.tmp .lisa.config.json
Both fields are committed (shared across developers — same dashboard for everyone).
Skip Step 6 entirely if:
$ARGUMENTS includes --no-dashboard.AskUserQuestion when offered.jq -e '.confluence.spaceKey // .confluence.parentPageId' .lisa.config.json >/dev/null
jq -e '.confluence.parents.verified' .lisa.config.json >/dev/null
Report success with the resolved scope (spaceKey, parentPageId, or both), the seven lifecycle parents created or reused (including the terminal verified parent), whether source was set, and the PRD Dashboard URL if Step 6 ran.
source if it's already "confluence".Verified parent is created once and reused on every subsequent run.dashboardPageId updates the page in place rather than creating duplicates.spaceKey or parentPageId. Resolve via the substrate or have the user provide it explicitly.source is opt-in — per-skill invocations with an explicit URL always win, so source is just the no-arg default for batch flows.source and document that the other requires explicit URLs.development
Use Expo DOM components to run web code in a webview on native and as-is on web. Migrate web code to native incrementally.
development
Guidelines for upgrading Expo SDK versions and fixing dependency issues
development
Use when implementing or debugging ANY network request, API call, or data fetching. Covers fetch API, React Query, SWR, error handling, caching, offline support, and Expo Router data loaders (`useLoaderData`).
tools
`@expo/ui/swift-ui` package lets you use SwiftUI Views and modifiers in your app.