atlassian

Jira and Confluence integration for Atlassian Cloud. Use when the user needs to search issues, manage sprints, read Confluence docs, create/update pages, work with epics and backlogs, or any Atlassian workflow. Triggers include "jira", "confluence", "sprint", "backlog", "ticket", "issue", "epic", or references to Atlassian content.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "atlassian" with this command: npx skills add hjewkes/agent-skills/hjewkes-agent-skills-atlassian

Atlassian — Jira & Confluence

Setup

Both jira and confluence wrappers auto-detect first run and launch scripts/setup.

Jira Operations

# Search issues (JQL)
jira issue list -q "project = PROJ AND status = 'In Progress'" --plain

# View issue details
jira issue view KEY --raw | jq '.fields.summary, .fields.status.name'

# Create issue
jira issue create -t Bug -s "Summary of the issue" --no-input

# Transition issue
jira issue move KEY "In Review"

# Current sprint
jira sprint list --current --plain

# My in-progress issues
jira issue list -a$(jira me) -s"In Progress" --plain

Confluence Operations

# Search pages (CQL)
confluence search "text ~ 'keyword' AND space = 'KEY'"

# Read a page
confluence get PAGE_ID --format storage

# Create a page
confluence create --space KEY --title "Page Title" --body "Content here"

# List spaces
confluence spaces

Output Conventions

  • Use --plain for human-readable output when displaying to the user.
  • Use --raw + jq to extract specific fields programmatically.
  • The confluence script always outputs JSON — pipe through jq for display.

Reference Files

ReferenceWhen to Load
references/jira-commands.mdFull jira-cli command reference needed
references/confluence-commands.mdConfluence script details needed
references/jql-patterns.mdBuilding complex JQL queries
references/cql-patterns.mdBuilding complex CQL queries
references/troubleshooting.mdAuth failures, errors, rate limits

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

self-improve

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

skills-management

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

agent-browser

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

frontend-design

No summary provided by upstream source.

Repository SourceNeeds Review