atlassian-usage
Installation
SKILL.md
Atlassian CLI Usage
This skill provides guidance for using the atl CLI tool to interact with Jira and Confluence.
CRITICAL: Handling Atlassian URLs
NEVER attempt to fetch Atlassian URLs directly via web tools. Atlassian Cloud requires authentication that web fetch tools cannot provide. Instead, extract identifiers from URLs and use the atl CLI.
Jira URL Patterns
When a user provides a Jira URL, extract the relevant identifier and use atl:
| URL Pattern | Extract | Command |
|---|---|---|
https://*.atlassian.net/jira/software/projects/PROJ/boards/123 |
PROJ |
atl jira search-jql "project = PROJ" |
https://*.atlassian.net/jira/core/projects/PROJ/board |
PROJ |
atl jira search-jql "project = PROJ" |
Examples:
https://example.atlassian.net/jira/software/projects/PROJ/boards/5→atl jira search-jql "project = PROJ"