Files
magnus919_agent-skills/jira-cli/README.md
T
Magnus Hedemark 738ec715e7 Add human-focused README.md to every skill and bundle directory
Each README is written for a human audience, explaining:
- What the skill does (not what format it follows)
- What benefit the user gets from installing it
- Quick setup and usage patterns
- When to load/trigger the skill
- What scripts, references, and templates it ships

data-scientist already had a README — left unchanged.

48 READMEs added across all skill and bundle directories.
2026-07-09 22:30:12 -04:00

40 lines
1.3 KiB
Markdown

# Jira Issue Tracker from the Terminal
Interact with Atlassian Jira Cloud via the REST API v3. Search issues, view details, create issues, add comments, list projects, and transition status.
## Why Install This Skill
When your agent loads this skill, it can **manage your entire Jira workflow** without opening a browser. That means:
- **Search issues by project, JQL, or assignee** — find anything in your tracker
- **View full issue details** — description, status, assignee, comments
- **Create and update issues** — new tasks, bugs, stories from the terminal
- **Add comments** — update threads without the web UI
- **Transition status** — move tickets through workflows
- **List projects** — see what's available
## What You Get
| Directory | Purpose |
|-----------|---------|
| `SKILL.md` | Complete command reference with setup and examples |
| `scripts/jira-cli` | CLI tool for Jira REST API v3 |
## Quick Start
```bash
export JIRA_EMAIL="your-email@example.com"
export JIRA_API_TOKEN="your-api-token"
export JIRA_SERVER="https://your-domain.atlassian.net"
```
API token from id.atlassian.com (free).
## Triggers
Load this when managing Jira issues, searching tickets, creating bugs, or tracking project work.
## Requirements
Python 3.8+ with `requests` library.