Atlassian (Jira + Confluence)
An Atlassian Cloud integration that lets Claude search, create, and update Jira issues and Confluence pages from the CLI.
AutomationIntermediate★ 399⑂ 43AI score 9/10Last updated: Jul 9, 2026
What it does
- Jira: JQL search, issue details, create/update issues, status transitions, add/list comments, list projects and statuses.
- Confluence: CQL search, read/create/update pages, list spaces and space details, browse child pages.
- Two auth paths: OAuth 2.1 through the Atlassian MCP server (browser consent, auto-refreshing tokens) or an API token hitting the REST API directly. The backend is chosen automatically and command syntax is identical either way.
- Every command accepts
--jsonfor machine-readable output; credentials live in the OS keyring (Keychain / Credential Locker / Secret Service).
Who it's for
- Engineering teams, PMs, and support staff who live in Jira and document in Confluence.
- Anyone who wants to file tickets or move them across the board without leaving the terminal or a Claude session.
- Teams automating release notes, meeting notes, or runbooks into Confluence spaces.
Example uses
- "Show my 10 most recently updated issues" →
jira.py search "assignee = currentUser() ORDER BY updated DESC" --limit 10 - "Open a High-priority login bug in DEV and assign it to me" →
jira.py create --project DEV --summary "Fix login bug" --type Bug --priority High - "Publish these release notes as a child page under our deployment guide" →
confluence.py create --title "Release Notes" --space-id <id> --parent-id <parent-id> --body "<p>...</p>"
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/sanjay3290/ai-skills/HEAD/skills/atlassian/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/atlassian folder from the GitHub repo sanjay3290/ai-skills into my ~/.claude/skills/atlassian/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/sanjay3290/ai-skills.git /tmp/ai-skills && mkdir -p ~/.claude/skills && cp -r /tmp/ai-skills/skills/atlassian ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Clone the repo:
git clone https://github.com/sanjay3290/ai-skills.git - Copy the skill into place:
mkdir -p ~/.claude/skills && cp -r ai-skills/skills/atlassian ~/.claude/skills/ - Install Python dependencies:
cd ~/.claude/skills/atlassian && pip install -r requirements.txt - Authenticate (recommended):
python scripts/auth.py login --oauth— a browser opens; approve access for Jira/Confluence.- No browser? Run
python scripts/auth.py loginand enter your Atlassian site URL, email, and API token (create one at https://id.atlassian.com/manage-profile/security/api-tokens ).
- No browser? Run
- Verify:
python scripts/auth.py statusandpython scripts/jira.py auth-info - Restart Claude Code, then ask something like "search my open Jira issues" to trigger the skill.
View source on GitHub ↗License: Apache-2.0