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
--plainfor human-readable output when displaying to the user. - Use
--raw+jqto extract specific fields programmatically. - The
confluencescript always outputs JSON — pipe throughjqfor display.
Reference Files
| Reference | When to Load |
|---|---|
| references/jira-commands.md | Full jira-cli command reference needed |
| references/confluence-commands.md | Confluence script details needed |
| references/jql-patterns.md | Building complex JQL queries |
| references/cql-patterns.md | Building complex CQL queries |
| references/troubleshooting.md | Auth failures, errors, rate limits |
More from hjewkes/agent-skills
self-improve
Use when a session produced reusable insights, when the user says "learn from this", "remember this", or "improve yourself", or after completing a complex task where patterns were discovered
65md-render
Use when asked to render, preview, or view a markdown file in the browser. Triggers on "render markdown", "preview this", "show me this document", "open in browser".
21code-review
Unified code review system — dispatches the right review agents for the situation. Use when reviewing code for quality, bugs, compliance, or before merging.
17skills-management
Use when creating, finding, installing, reviewing, or managing Claude Code skills — covers skill authoring, discovery, conventions, and lifecycle management
14github-pr
GitHub PR workflow — creating PRs, posting automated review comments, managing PR feedback cycles. Use when code is reviewed and ready for GitHub.
14buildkite
Buildkite CI/CD integration. Use when the user needs to check build status, trigger builds, read build logs, debug failures, manage pipelines, or any Buildkite workflow. Triggers include "buildkite", "build", "pipeline", "CI", "deploy", "build log", "build failed".
14