
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
@robinpath/jira
Advanced tools
Atlassian Jira Cloud REST API — issues, projects, comments, transitions, users, labels, priorities, issue types, plus the Agile API for boards and sprints. Uses the encrypted credential vault.
Jira module for RobinPath.
The jira module lets you:
All functions are callable directly from RobinPath scripts with a simple, consistent API.
robinpath add @robinpath/jira
1. Set up credentials
jira.setCredentials "mycompany.atlassian.net" "user@example.com" "your-api-token"
2. Create a new Jira issue.
jira.createIssue "PROJ" "Task" "Fix login bug" {"description":"Login page returns 500","priority":"High"}
| Function | Description |
|---|---|
jira.setCredentials | Set Jira Cloud credentials for API access. |
jira.createIssue | Create a new Jira issue. |
jira.getIssue | Get a Jira issue by key. |
jira.updateIssue | Update fields on a Jira issue. |
jira.deleteIssue | Delete a Jira issue. |
jira.assignIssue | Assign a Jira issue to a user. |
jira.transitionIssue | Transition a Jira issue to a new status. |
jira.addComment | Add a comment to a Jira issue. |
jira.getComments | List comments on a Jira issue. |
jira.searchIssues | Search Jira issues using JQL. |
jira.listProjects | List all accessible Jira projects. |
jira.getProject | Get details of a Jira project. |
jira.listBoards | List Jira agile boards. |
jira.getBoardSprints | Get sprints for a Jira board. |
jira.getSprintIssues | Get issues in a sprint. |
jira.addLabel | Add a label to a Jira issue. |
jira.removeLabel | Remove a label from a Jira issue. |
jira.getTransitions | Get available status transitions for a Jira issue. |
jira.addAttachment | Add a file attachment to a Jira issue. |
jira.listUsers | Search for Jira users. |
jira.getUser | Get a Jira user by account ID. |
jira.addWatcher | Add a watcher to a Jira issue. |
jira.removeWatcher | Remove a watcher from a Jira issue. |
jira.listPriorities | List all available Jira priorities. |
jira.listIssueTypes | List available issue types, optionally filtered by project. |
jira.createIssue "PROJ" "Task" "Fix login bug" {"description":"Login page returns 500","priority":"High"}
jira.getIssue "PROJ-123"
jira.updateIssue "PROJ-123" {"summary":"Updated summary","priority":{"name":"High"}}
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/jira";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
jira.setCredentials "mycompany.atlassian.net" "user@example.com" "your-api-token"
jira.createIssue "PROJ" "Task" "Fix login bug" {"description":"Login page returns 500","priority":"High"}
`);
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
@robinpath/asana — Asana module for complementary functionality@robinpath/clickup — ClickUp module for complementary functionality@robinpath/linear — Linear module for complementary functionality@robinpath/monday — Monday.com module for complementary functionality@robinpath/todoist — Todoist module for complementary functionalityMIT
FAQs
Atlassian Jira Cloud REST API — issues, projects, comments, transitions, users, labels, priorities, issue types, plus the Agile API for boards and sprints. Uses the encrypted credential vault.
We found that @robinpath/jira demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.