From data-science
Atlassian Confluence and JIRA workflows — page creation, issue management, URL verification patterns
How this skill is triggered — by the user, by Claude, or both
Slash command
/data-science:atlassian-workflowsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
| Parameter | Value |
| Parameter | Value |
|---|---|
| Account | [email protected] |
| cloudId | 739838e2-f328-4f14-a533-3f7d49323638 |
| Data Science space ID | 150863953 (key: DS) |
| Personal space ID | 11042819 (key: ~bolster) |
| Weeknotes parent folder | 841482874 |
ALWAYS include label ai-generated on new pages.
# Via MCP tool
mcp__atlassian__createConfluencePage(
cloudId="739838e2-f328-4f14-a533-3f7d49323638",
spaceId="11042819", # Personal space for weeknotes
parentId="841482874", # Weeknotes folder
title="YYYY-MM-DD",
body="...",
contentFormat="markdown",
# Add ai-generated label after creation
)
After creation, add the ai-generated label via editJiraIssue equivalent or page update.
YYYY-MM-DD (Monday of the week)~bolster space, parent 841482874Never fabricate Confluence URLs. To find a real page URL:
# Search by title
mcp__atlassian__searchConfluenceUsingCql(
cloudId="739838e2-f328-4f14-a533-3f7d49323638",
cql='title = "2026-04-14" AND space.key = "~bolster"'
)
For bulk content extraction when MCP is insufficient:
uv run ~/scratch/query_blogs.py --page-id <page_id>
mcp__atlassian__searchJiraIssuesUsingJql(
cloudId="739838e2-f328-4f14-a533-3f7d49323638",
jql='project = DS AND assignee = currentUser() AND status != Done',
responseContentFormat="markdown"
)
mcp__atlassian__createJiraIssue(
cloudId="739838e2-f328-4f14-a533-3f7d49323638",
projectKey="DS",
issueTypeName="Task",
summary="Brief imperative summary",
description="...",
contentFormat="markdown"
)
In weeknotes and communications: DS-### (e.g., "blocked by DS-1234").
Atlassian queries can return very large payloads. For complex searches or bulk operations, delegate to an Agent subagent to protect the main context window:
Agent(
subagent_type="general-purpose",
prompt="Search Confluence for pages matching X and return a summary..."
)
## Section Name* **Topic Name** * Sub-item (2-space indent)[Display Text](https://...)npx claudepluginhub bd-vitalstatistix/claude-marketplace --plugin data-scienceGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.