@robinpath/linear
v0.3.0
Published
Linear GraphQL API — issues, projects, teams, labels, users, and comments. Uses the encrypted credential vault for Personal API keys.
Readme
@robinpath/linear
Linear module for RobinPath.
Why use this module?
The linear module lets you:
- listIssues
- getIssue
- createIssue
- updateIssue
- deleteIssue
All functions are callable directly from RobinPath scripts with a simple, consistent API.
Installation
robinpath add @robinpath/linearQuick Start
1. Set up credentials
linear.setCredentials "your-credentials"2. listIssues
linear.listIssuesAvailable Functions
| Function | Description |
|----------|-------------|
| linear.setCredentials | Configure linear credentials. |
| linear.listIssues | listIssues |
| linear.getIssue | getIssue |
| linear.createIssue | createIssue |
| linear.updateIssue | updateIssue |
| linear.deleteIssue | deleteIssue |
| linear.listProjects | listProjects |
| linear.getProject | getProject |
| linear.createProject | createProject |
| linear.updateProject | updateProject |
| linear.listTeams | listTeams |
| linear.getTeam | getTeam |
| linear.listCycles | listCycles |
| linear.getCycle | getCycle |
| linear.addIssueToCycle | addIssueToCycle |
| linear.listLabels | listLabels |
| linear.createLabel | createLabel |
| linear.listComments | listComments |
| linear.createComment | createComment |
| linear.searchIssues | searchIssues |
| linear.listUsers | listUsers |
Examples
listIssues
linear.listIssuesgetIssue
linear.getIssuecreateIssue
linear.createIssueIntegration with RobinPath
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/linear";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
linear.setCredentials "your-credentials"
linear.listIssues
`);Full API Reference
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
Related Modules
@robinpath/asana— Asana module for complementary functionality@robinpath/clickup— ClickUp module for complementary functionality@robinpath/jira— Jira module for complementary functionality@robinpath/monday— Monday.com module for complementary functionality@robinpath/todoist— Todoist module for complementary functionality
License
MIT
