jira_attachment_download
Download attachments from a JIRA issue to disk and return metadata for each downloaded file.
Instructions
Download attachments on a JIRA issue to disk. Returns YAML metadata (id, filename, mime_type, size, on-disk path) for each downloaded file. If output_dir is omitted, files are written to a fresh temp directory whose path is in the result; the assistant can then read them via the filesystem tool. Mirrors omni-dev atlassian jira attachment download.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | Case-insensitive filename substring filter. | |
| key | Yes | JIRA issue key (e.g., `PROJ-123`). | |
| output_dir | No | Output directory. Defaults to a fresh temp directory whose path is returned in the result so the assistant can read the files via its filesystem tool. |