@opentabs-dev/opentabs-plugin-linear 0.0.76 → 0.0.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +81 -0
- package/dist/adapter.iife.js +4 -2
- package/dist/adapter.iife.js.map +2 -2
- package/dist/tools.json +1 -1
- package/package.json +10 -4
package/README.md
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# Linear
|
|
2
|
+
|
|
3
|
+
OpenTabs plugin for Linear — gives AI agents access to Linear through your authenticated browser session.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
opentabs plugin install linear
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or install globally via npm:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install -g @opentabs-dev/opentabs-plugin-linear
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Setup
|
|
18
|
+
|
|
19
|
+
1. Open [linear.app](https://linear.app) in Chrome and log in
|
|
20
|
+
2. Open the OpenTabs side panel — the Linear plugin should appear as **ready**
|
|
21
|
+
|
|
22
|
+
## Tools (21)
|
|
23
|
+
|
|
24
|
+
### Issues (7)
|
|
25
|
+
|
|
26
|
+
| Tool | Description | Type |
|
|
27
|
+
|---|---|---|
|
|
28
|
+
| `search_issues` | Search and filter issues | Read |
|
|
29
|
+
| `get_issue` | Get details of a single issue | Read |
|
|
30
|
+
| `create_issue` | Create a new issue in Linear | Write |
|
|
31
|
+
| `update_issue` | Update an existing issue | Write |
|
|
32
|
+
| `delete_issue` | Move an issue to the trash | Write |
|
|
33
|
+
| `archive_issue` | Archive an issue | Write |
|
|
34
|
+
| `list_issue_relations` | List issue dependencies and relations | Read |
|
|
35
|
+
|
|
36
|
+
### Comments (3)
|
|
37
|
+
|
|
38
|
+
| Tool | Description | Type |
|
|
39
|
+
|---|---|---|
|
|
40
|
+
| `create_comment` | Add a comment to an issue | Write |
|
|
41
|
+
| `update_comment` | Update a comment | Write |
|
|
42
|
+
| `list_comments` | List comments on an issue | Read |
|
|
43
|
+
|
|
44
|
+
### Projects (4)
|
|
45
|
+
|
|
46
|
+
| Tool | Description | Type |
|
|
47
|
+
|---|---|---|
|
|
48
|
+
| `list_projects` | List all projects | Read |
|
|
49
|
+
| `get_project` | Get details of a project | Read |
|
|
50
|
+
| `create_project` | Create a new project | Write |
|
|
51
|
+
| `update_project` | Update a project | Write |
|
|
52
|
+
|
|
53
|
+
### Teams & Users (3)
|
|
54
|
+
|
|
55
|
+
| Tool | Description | Type |
|
|
56
|
+
|---|---|---|
|
|
57
|
+
| `list_teams` | List teams in the workspace | Read |
|
|
58
|
+
| `get_viewer` | Get the current user's profile | Read |
|
|
59
|
+
| `list_users` | List all users in the organization | Read |
|
|
60
|
+
|
|
61
|
+
### Workflow (3)
|
|
62
|
+
|
|
63
|
+
| Tool | Description | Type |
|
|
64
|
+
|---|---|---|
|
|
65
|
+
| `list_workflow_states` | List workflow states for a team | Read |
|
|
66
|
+
| `list_labels` | List all issue labels | Read |
|
|
67
|
+
| `list_cycles` | List cycles for a team | Read |
|
|
68
|
+
|
|
69
|
+
### Labels (1)
|
|
70
|
+
|
|
71
|
+
| Tool | Description | Type |
|
|
72
|
+
|---|---|---|
|
|
73
|
+
| `create_label` | Create a new label | Write |
|
|
74
|
+
|
|
75
|
+
## How It Works
|
|
76
|
+
|
|
77
|
+
This plugin runs inside your Linear tab through the [OpenTabs](https://opentabs.dev) Chrome extension. It uses your existing browser session — no API tokens or OAuth apps required. All operations happen as you, with your permissions.
|
|
78
|
+
|
|
79
|
+
## License
|
|
80
|
+
|
|
81
|
+
MIT
|
package/dist/adapter.iife.js
CHANGED
|
@@ -337,6 +337,8 @@
|
|
|
337
337
|
* (e.g., 'https://github.com'), not a match pattern.
|
|
338
338
|
*/
|
|
339
339
|
homepage;
|
|
340
|
+
/** Typed configuration schema — declares settings that users provide via config.json or the side panel. */
|
|
341
|
+
configSchema;
|
|
340
342
|
};
|
|
341
343
|
|
|
342
344
|
// src/linear-api.ts
|
|
@@ -15362,7 +15364,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15362
15364
|
};
|
|
15363
15365
|
var src_default = new LinearPlugin();
|
|
15364
15366
|
|
|
15365
|
-
// dist/
|
|
15367
|
+
// dist/_adapter_entry_4adfbfea-895d-48f9-b281-bc72737b59b2.ts
|
|
15366
15368
|
if (!globalThis.__openTabs) {
|
|
15367
15369
|
globalThis.__openTabs = {};
|
|
15368
15370
|
} else {
|
|
@@ -15578,5 +15580,5 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15578
15580
|
};
|
|
15579
15581
|
delete src_default.onDeactivate;
|
|
15580
15582
|
}
|
|
15581
|
-
})();(function(){var o=(globalThis).__openTabs;if(o&&o.adapters&&o.adapters["linear"]){var a=o.adapters["linear"];a.__adapterHash="
|
|
15583
|
+
})();(function(){var o=(globalThis).__openTabs;if(o&&o.adapters&&o.adapters["linear"]){var a=o.adapters["linear"];a.__adapterHash="4bbb059dbbcbc68d32a2d3e185adfeaca569d7f141e6fdafd8520d4d31c52435";if(a.tools&&Array.isArray(a.tools)){for(var i=0;i<a.tools.length;i++){Object.freeze(a.tools[i]);}Object.freeze(a.tools);}Object.freeze(a);Object.defineProperty(o.adapters,"linear",{value:a,writable:false,configurable:false,enumerable:true});Object.defineProperty(o,"adapters",{value:o.adapters,writable:false,configurable:false});}})();
|
|
15582
15584
|
//# sourceMappingURL=adapter.iife.js.map
|