Atlassian Administrator Expert
A step-by-step playbook skill for Atlassian org administration: users, permissions, SSO, apps, governance and incident response.
What it does
Turns day-to-day Atlassian Cloud administration into repeatable runbooks. It covers user provisioning and group assignment, safe deprovisioning (auditing owned issues, spaces, filters before deactivation), Jira/Confluence permission scheme design, SAML SSO plus SCIM auto-provisioning, Marketplace app vetting, performance tuning, backup/DR drills, incident severity handling (P1–P4), and quarterly access reviews.
Every workflow pairs an admin.atlassian.com console path with the matching REST endpoint and ends with an explicit VERIFY step. It also states plainly that the Atlassian Remote MCP server exposes no admin tools — only a few read-oriented lookups — which prevents the model from inventing tool names.
Who it's for
- Atlassian org admins, IT operations and internal helpdesk teams
- Teams standardizing Jira/Confluence permissions and naming conventions
- Organizations building audit-log and access-review processes for SOC 2 or GDPR
Examples
- "Onboard three engineers with Jira and Confluence access" → produces an invite → group → product-access → verification checklist.
- "Offboard a departing employee" → JQL search for their open issues, reassign project/space leads, remove groups, deactivate, log the change.
- "Set up Okta SSO and enforce 2FA for admins" → walks through Entity ID, ACS URL, X.509 cert, staged testing, SCIM, and
saml.login.successaudit checks.
· · · Install guide · · ·
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 .gemini/skills/atlassian-admin folder from the GitHub repo alirezarezvani/claude-skills into my ~/.claude/skills/atlassian-admin/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/alirezarezvani/claude-skills.git /tmp/claude-skills && mkdir -p ~/.claude/skills && cp -r /tmp/claude-skills/.gemini/skills/atlassian-admin ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repository into a temp folder:
git clone https://github.com/alirezarezvani/claude-skills.git /tmp/claude-skills - Create the skills folder if needed:
mkdir -p ~/.claude/skills - Copy just this skill:
cp -r /tmp/claude-skills/.gemini/skills/atlassian-admin ~/.claude/skills/ - Restart Claude Code and try a prompt like "walk me through adding a user to Jira" to confirm the skill triggers.
- Real execution requires Atlassian org-admin rights and an API token. Keep tokens in environment variables or a secret manager, and manually review irreversible calls such as user deactivation before running them.