Jira skill
Use the Jira REST API v3 for issues / comments / transitions.
Setup
JIRA_BASE_URL (e.g. https://your-domain.atlassian.net),
JIRA_EMAIL and JIRA_API_TOKEN must be in env.
Procedure
search→POST /rest/api/3/searchwith JQL in payload.get→GET /rest/api/3/issue/{key}.create→POST /rest/api/3/issuewith{ fields: {...} }.comment→POST /rest/api/3/issue/{key}/comment.transition→POST /rest/api/3/issue/{key}/transitions.
Use Basic Auth: base64(JIRA_EMAIL:JIRA_API_TOKEN).
Return the parsed JSON.