Search Jira issues, fetch Jira issue details, search Confluence pages, and fetch Confluence page content through bundled curl+jq shell helpers. Use when interacting directly with Atlassian Cloud REST APIs in read-only mode.
Use this skill for common read-only Atlassian Cloud workflows against the Jira and Confluence REST APIs.
The bundled scripts read shared Atlassian credentials from:
ATLASSIAN_BASE_URL — site URL, for example https://example.atlassian.netATLASSIAN_EMAIL — Atlassian account email for basic authATLASSIAN_API_TOKEN — Atlassian API token./scripts/jira-search.sh --project DEV --text authentication
./scripts/jira-get-issue.sh DEV-123
./scripts/confluence-search.sh --space DEV --title architecture
./scripts/confluence-get-content.sh 12345678
| Script | Purpose |
|---|---|
./scripts/jira-search.sh | Search issues with raw JQL or simple filters |
./scripts/jira-get-issue.sh | Fetch issue metadata, description, and optional comments |
./scripts/confluence-search.sh | Search pages with raw CQL or simple filters |
./scripts/confluence-get-content.sh | Fetch page metadata plus text/html/storage body |
./scripts/jira-search.sh --project DEV --text authentication
./scripts/jira-search.sh --project DEV --status "In Progress" --limit 5
./scripts/jira-search.sh --query "project = DEV AND assignee = currentUser() ORDER BY updated DESC"
--query or builds JQL from --project, --summary, --text, --status, --assignee, and --type.query, results, and pagination../scripts/jira-get-issue.sh DEV-123
./scripts/jira-get-issue.sh DEV-123 --format rendered
./scripts/jira-get-issue.sh DEV-123 --comments
./scripts/jira-get-issue.sh DEV-123 --body-only
text.text, raw, rendered.issue, descriptionFormat, description, and optional comments.--body-only when only the description is needed../scripts/confluence-search.sh --space DEV --title architecture
./scripts/confluence-search.sh --text runbook --limit 5
./scripts/confluence-search.sh --query "space = DEV AND label = 'runbook'"
--query or builds CQL from --space, --title, --text, and --label.query, results, and pagination../scripts/confluence-get-content.sh 12345678
./scripts/confluence-get-content.sh 12345678 --format view
./scripts/confluence-get-content.sh 12345678 --format storage
./scripts/confluence-get-content.sh 12345678 --body-only
text.text, view, html, storage.page, bodyFormat, and body.--body-only when only the rendered content is needed.| File | Purpose |
|---|---|
| operations.md | Env vars, Jira JQL patterns, Confluence CQL patterns, endpoints, and output notes |