linmux 0.1.0
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/LICENSE +21 -0
- package/README.md +240 -0
- package/bin/run.js +4 -0
- package/dist/commands/comment/create.js +94 -0
- package/dist/commands/comment/delete.js +74 -0
- package/dist/commands/comment/list.js +84 -0
- package/dist/commands/comment/update.js +80 -0
- package/dist/commands/cycle/current.js +78 -0
- package/dist/commands/cycle/list.js +84 -0
- package/dist/commands/cycle/move.js +91 -0
- package/dist/commands/describe.js +65 -0
- package/dist/commands/graphql/index.js +92 -0
- package/dist/commands/install-skill.js +54 -0
- package/dist/commands/issue/archive.js +75 -0
- package/dist/commands/issue/create.js +115 -0
- package/dist/commands/issue/get.js +84 -0
- package/dist/commands/issue/list.js +93 -0
- package/dist/commands/issue/purge.js +81 -0
- package/dist/commands/issue/search.js +109 -0
- package/dist/commands/issue/transition.js +91 -0
- package/dist/commands/issue/trash.js +75 -0
- package/dist/commands/issue/update.js +126 -0
- package/dist/commands/label/create.js +91 -0
- package/dist/commands/label/list.js +76 -0
- package/dist/commands/list-tools.js +47 -0
- package/dist/commands/me.js +71 -0
- package/dist/commands/project/create.js +101 -0
- package/dist/commands/project/get.js +83 -0
- package/dist/commands/project/list.js +75 -0
- package/dist/commands/project/update-status.js +99 -0
- package/dist/commands/project/update.js +99 -0
- package/dist/commands/raw/batch.js +85 -0
- package/dist/commands/raw/index.js +72 -0
- package/dist/commands/schema.js +69 -0
- package/dist/commands/state/list.js +77 -0
- package/dist/commands/team/get.js +73 -0
- package/dist/commands/team/list.js +73 -0
- package/dist/commands/whoami.js +71 -0
- package/dist/commands/workspace/add.js +97 -0
- package/dist/commands/workspace/list.js +47 -0
- package/dist/commands/workspace/remove.js +63 -0
- package/dist/commands/workspace/replace-token.js +89 -0
- package/dist/commands/workspace/use.js +54 -0
- package/dist/core/client/factory.js +28 -0
- package/dist/core/client/index.js +2 -0
- package/dist/core/config/index.js +4 -0
- package/dist/core/config/paths.js +30 -0
- package/dist/core/config/schema.js +36 -0
- package/dist/core/config/store.js +149 -0
- package/dist/core/errors/error.js +142 -0
- package/dist/core/errors/exit-codes.js +70 -0
- package/dist/core/output/envelope.js +53 -0
- package/dist/core/output/format.js +42 -0
- package/dist/core/output/index.js +3 -0
- package/dist/core/pagination/flags.js +29 -0
- package/dist/core/pagination/index.js +2 -0
- package/dist/core/projection/presets.js +116 -0
- package/dist/core/projection/project.js +282 -0
- package/dist/core/redact/redact.js +45 -0
- package/dist/core/resolvers/cycle.js +60 -0
- package/dist/core/resolvers/index.js +7 -0
- package/dist/core/resolvers/label.js +54 -0
- package/dist/core/resolvers/project-status.js +42 -0
- package/dist/core/resolvers/project.js +43 -0
- package/dist/core/resolvers/state.js +46 -0
- package/dist/core/resolvers/team.js +50 -0
- package/dist/core/transport/fetch-interceptor.js +109 -0
- package/dist/core/transport/index.js +3 -0
- package/dist/core/transport/rate-limit.js +167 -0
- package/dist/core/workspace/resolver.js +70 -0
- package/dist/core/workspace/write-guard.js +43 -0
- package/dist/generated/graphql.js +89428 -0
- package/dist/generated/operations.js +3013 -0
- package/dist/lib/comment-create-runtime.js +96 -0
- package/dist/lib/comment-delete-runtime.js +46 -0
- package/dist/lib/comment-list-runtime.js +182 -0
- package/dist/lib/comment-update-runtime.js +93 -0
- package/dist/lib/cycle-current-runtime.js +90 -0
- package/dist/lib/cycle-list-runtime.js +151 -0
- package/dist/lib/cycle-move-runtime.js +142 -0
- package/dist/lib/describe-runtime.js +180 -0
- package/dist/lib/filter-heuristics.js +59 -0
- package/dist/lib/graphql-runtime.js +202 -0
- package/dist/lib/include-fragments.js +73 -0
- package/dist/lib/install-skill-runtime.js +228 -0
- package/dist/lib/introspection-registry.js +488 -0
- package/dist/lib/issue-archive-runtime.js +89 -0
- package/dist/lib/issue-create-runtime.js +175 -0
- package/dist/lib/issue-get-runtime.js +153 -0
- package/dist/lib/issue-list-runtime.js +164 -0
- package/dist/lib/issue-purge-runtime.js +89 -0
- package/dist/lib/issue-search-runtime.js +114 -0
- package/dist/lib/issue-transition-runtime.js +131 -0
- package/dist/lib/issue-trash-runtime.js +84 -0
- package/dist/lib/issue-update-runtime.js +164 -0
- package/dist/lib/label-create-runtime.js +113 -0
- package/dist/lib/label-list-runtime.js +97 -0
- package/dist/lib/levenshtein.js +42 -0
- package/dist/lib/list-tools-runtime.js +38 -0
- package/dist/lib/me-runtime.js +55 -0
- package/dist/lib/project-create-runtime.js +103 -0
- package/dist/lib/project-get-runtime.js +134 -0
- package/dist/lib/project-list-runtime.js +84 -0
- package/dist/lib/project-update-runtime.js +110 -0
- package/dist/lib/project-update-status-runtime.js +91 -0
- package/dist/lib/raw-batch-runtime.js +229 -0
- package/dist/lib/raw-runtime.js +171 -0
- package/dist/lib/schema-loader.js +41 -0
- package/dist/lib/schema-runtime.js +65 -0
- package/dist/lib/state-list-runtime.js +93 -0
- package/dist/lib/team-get-runtime.js +55 -0
- package/dist/lib/team-list-runtime.js +52 -0
- package/dist/lib/workspace-runtime.js +112 -0
- package/dist/operations/_registry.zod.js +5337 -0
- package/oclif.manifest.json +3631 -0
- package/package.json +99 -0
- package/schema.graphql +30772 -0
- package/skills/linmux/SKILL.md +186 -0
|
@@ -0,0 +1,3631 @@
|
|
|
1
|
+
{
|
|
2
|
+
"commands": {
|
|
3
|
+
"describe": {
|
|
4
|
+
"aliases": [],
|
|
5
|
+
"args": {
|
|
6
|
+
"command": {
|
|
7
|
+
"description": "Command id (e.g. \"issue list\") or raw operation name (e.g. \"IssueCreate\")",
|
|
8
|
+
"name": "command",
|
|
9
|
+
"required": true
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"description": "Return input/output JSON Schema and examples for a curated or raw command.",
|
|
13
|
+
"flags": {
|
|
14
|
+
"json": {
|
|
15
|
+
"description": "Format output as json.",
|
|
16
|
+
"helpGroup": "GLOBAL",
|
|
17
|
+
"name": "json",
|
|
18
|
+
"allowNo": false,
|
|
19
|
+
"type": "boolean"
|
|
20
|
+
},
|
|
21
|
+
"pretty": {
|
|
22
|
+
"description": "Human-readable output (default is JSON)",
|
|
23
|
+
"name": "pretty",
|
|
24
|
+
"allowNo": false,
|
|
25
|
+
"type": "boolean"
|
|
26
|
+
},
|
|
27
|
+
"quiet": {
|
|
28
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
29
|
+
"name": "quiet",
|
|
30
|
+
"allowNo": false,
|
|
31
|
+
"type": "boolean"
|
|
32
|
+
},
|
|
33
|
+
"noMeta": {
|
|
34
|
+
"aliases": [
|
|
35
|
+
"no-meta"
|
|
36
|
+
],
|
|
37
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
38
|
+
"name": "noMeta",
|
|
39
|
+
"allowNo": false,
|
|
40
|
+
"type": "boolean"
|
|
41
|
+
},
|
|
42
|
+
"retry": {
|
|
43
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
44
|
+
"name": "retry",
|
|
45
|
+
"default": 0,
|
|
46
|
+
"hasDynamicHelp": false,
|
|
47
|
+
"multiple": false,
|
|
48
|
+
"type": "option"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"hasDynamicHelp": false,
|
|
52
|
+
"hiddenAliases": [],
|
|
53
|
+
"id": "describe",
|
|
54
|
+
"pluginAlias": "linmux",
|
|
55
|
+
"pluginName": "linmux",
|
|
56
|
+
"pluginType": "core",
|
|
57
|
+
"strict": true,
|
|
58
|
+
"enableJsonFlag": true,
|
|
59
|
+
"isESM": true,
|
|
60
|
+
"relativePath": [
|
|
61
|
+
"dist",
|
|
62
|
+
"commands",
|
|
63
|
+
"describe.js"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"install-skill": {
|
|
67
|
+
"aliases": [],
|
|
68
|
+
"args": {},
|
|
69
|
+
"description": "Copy the bundled Claude Code skill to ~/.claude/skills/linmux/SKILL.md.",
|
|
70
|
+
"flags": {
|
|
71
|
+
"json": {
|
|
72
|
+
"description": "Format output as json.",
|
|
73
|
+
"helpGroup": "GLOBAL",
|
|
74
|
+
"name": "json",
|
|
75
|
+
"allowNo": false,
|
|
76
|
+
"type": "boolean"
|
|
77
|
+
},
|
|
78
|
+
"pretty": {
|
|
79
|
+
"description": "Human-readable output (default is JSON)",
|
|
80
|
+
"name": "pretty",
|
|
81
|
+
"allowNo": false,
|
|
82
|
+
"type": "boolean"
|
|
83
|
+
},
|
|
84
|
+
"quiet": {
|
|
85
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
86
|
+
"name": "quiet",
|
|
87
|
+
"allowNo": false,
|
|
88
|
+
"type": "boolean"
|
|
89
|
+
},
|
|
90
|
+
"noMeta": {
|
|
91
|
+
"aliases": [
|
|
92
|
+
"no-meta"
|
|
93
|
+
],
|
|
94
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
95
|
+
"name": "noMeta",
|
|
96
|
+
"allowNo": false,
|
|
97
|
+
"type": "boolean"
|
|
98
|
+
},
|
|
99
|
+
"retry": {
|
|
100
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
101
|
+
"name": "retry",
|
|
102
|
+
"default": 0,
|
|
103
|
+
"hasDynamicHelp": false,
|
|
104
|
+
"multiple": false,
|
|
105
|
+
"type": "option"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"hasDynamicHelp": false,
|
|
109
|
+
"hiddenAliases": [],
|
|
110
|
+
"id": "install-skill",
|
|
111
|
+
"pluginAlias": "linmux",
|
|
112
|
+
"pluginName": "linmux",
|
|
113
|
+
"pluginType": "core",
|
|
114
|
+
"strict": true,
|
|
115
|
+
"enableJsonFlag": true,
|
|
116
|
+
"isESM": true,
|
|
117
|
+
"relativePath": [
|
|
118
|
+
"dist",
|
|
119
|
+
"commands",
|
|
120
|
+
"install-skill.js"
|
|
121
|
+
]
|
|
122
|
+
},
|
|
123
|
+
"list-tools": {
|
|
124
|
+
"aliases": [],
|
|
125
|
+
"args": {},
|
|
126
|
+
"description": "Enumerate every curated and raw command with curated→raw mappings.",
|
|
127
|
+
"flags": {
|
|
128
|
+
"json": {
|
|
129
|
+
"description": "Format output as json.",
|
|
130
|
+
"helpGroup": "GLOBAL",
|
|
131
|
+
"name": "json",
|
|
132
|
+
"allowNo": false,
|
|
133
|
+
"type": "boolean"
|
|
134
|
+
},
|
|
135
|
+
"pretty": {
|
|
136
|
+
"description": "Human-readable output (default is JSON)",
|
|
137
|
+
"name": "pretty",
|
|
138
|
+
"allowNo": false,
|
|
139
|
+
"type": "boolean"
|
|
140
|
+
},
|
|
141
|
+
"quiet": {
|
|
142
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
143
|
+
"name": "quiet",
|
|
144
|
+
"allowNo": false,
|
|
145
|
+
"type": "boolean"
|
|
146
|
+
},
|
|
147
|
+
"noMeta": {
|
|
148
|
+
"aliases": [
|
|
149
|
+
"no-meta"
|
|
150
|
+
],
|
|
151
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
152
|
+
"name": "noMeta",
|
|
153
|
+
"allowNo": false,
|
|
154
|
+
"type": "boolean"
|
|
155
|
+
},
|
|
156
|
+
"retry": {
|
|
157
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
158
|
+
"name": "retry",
|
|
159
|
+
"default": 0,
|
|
160
|
+
"hasDynamicHelp": false,
|
|
161
|
+
"multiple": false,
|
|
162
|
+
"type": "option"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"hasDynamicHelp": false,
|
|
166
|
+
"hiddenAliases": [],
|
|
167
|
+
"id": "list-tools",
|
|
168
|
+
"pluginAlias": "linmux",
|
|
169
|
+
"pluginName": "linmux",
|
|
170
|
+
"pluginType": "core",
|
|
171
|
+
"strict": true,
|
|
172
|
+
"enableJsonFlag": true,
|
|
173
|
+
"isESM": true,
|
|
174
|
+
"relativePath": [
|
|
175
|
+
"dist",
|
|
176
|
+
"commands",
|
|
177
|
+
"list-tools.js"
|
|
178
|
+
]
|
|
179
|
+
},
|
|
180
|
+
"me": {
|
|
181
|
+
"aliases": [],
|
|
182
|
+
"args": {},
|
|
183
|
+
"description": "Print the resolved viewer (user) and organization for the current workspace.",
|
|
184
|
+
"flags": {
|
|
185
|
+
"json": {
|
|
186
|
+
"description": "Format output as json.",
|
|
187
|
+
"helpGroup": "GLOBAL",
|
|
188
|
+
"name": "json",
|
|
189
|
+
"allowNo": false,
|
|
190
|
+
"type": "boolean"
|
|
191
|
+
},
|
|
192
|
+
"pretty": {
|
|
193
|
+
"description": "Human-readable output (default is JSON)",
|
|
194
|
+
"name": "pretty",
|
|
195
|
+
"allowNo": false,
|
|
196
|
+
"type": "boolean"
|
|
197
|
+
},
|
|
198
|
+
"quiet": {
|
|
199
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
200
|
+
"name": "quiet",
|
|
201
|
+
"allowNo": false,
|
|
202
|
+
"type": "boolean"
|
|
203
|
+
},
|
|
204
|
+
"noMeta": {
|
|
205
|
+
"aliases": [
|
|
206
|
+
"no-meta"
|
|
207
|
+
],
|
|
208
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
209
|
+
"name": "noMeta",
|
|
210
|
+
"allowNo": false,
|
|
211
|
+
"type": "boolean"
|
|
212
|
+
},
|
|
213
|
+
"retry": {
|
|
214
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
215
|
+
"name": "retry",
|
|
216
|
+
"default": 0,
|
|
217
|
+
"hasDynamicHelp": false,
|
|
218
|
+
"multiple": false,
|
|
219
|
+
"type": "option"
|
|
220
|
+
},
|
|
221
|
+
"workspace": {
|
|
222
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
223
|
+
"name": "workspace",
|
|
224
|
+
"hasDynamicHelp": false,
|
|
225
|
+
"multiple": false,
|
|
226
|
+
"type": "option"
|
|
227
|
+
},
|
|
228
|
+
"fields": {
|
|
229
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
230
|
+
"name": "fields",
|
|
231
|
+
"default": "defaults",
|
|
232
|
+
"hasDynamicHelp": false,
|
|
233
|
+
"multiple": false,
|
|
234
|
+
"type": "option"
|
|
235
|
+
}
|
|
236
|
+
},
|
|
237
|
+
"hasDynamicHelp": false,
|
|
238
|
+
"hiddenAliases": [],
|
|
239
|
+
"id": "me",
|
|
240
|
+
"pluginAlias": "linmux",
|
|
241
|
+
"pluginName": "linmux",
|
|
242
|
+
"pluginType": "core",
|
|
243
|
+
"strict": true,
|
|
244
|
+
"enableJsonFlag": true,
|
|
245
|
+
"isESM": true,
|
|
246
|
+
"relativePath": [
|
|
247
|
+
"dist",
|
|
248
|
+
"commands",
|
|
249
|
+
"me.js"
|
|
250
|
+
]
|
|
251
|
+
},
|
|
252
|
+
"schema": {
|
|
253
|
+
"aliases": [],
|
|
254
|
+
"args": {},
|
|
255
|
+
"description": "Return the Linear GraphQL schema as compact SDL (descriptions stripped by default), or as introspection JSON with --json.",
|
|
256
|
+
"flags": {
|
|
257
|
+
"json": {
|
|
258
|
+
"char": "j",
|
|
259
|
+
"description": "Return introspection JSON (__schema format) instead of SDL text",
|
|
260
|
+
"name": "json",
|
|
261
|
+
"allowNo": false,
|
|
262
|
+
"type": "boolean"
|
|
263
|
+
},
|
|
264
|
+
"pretty": {
|
|
265
|
+
"description": "Human-readable output (default is JSON)",
|
|
266
|
+
"name": "pretty",
|
|
267
|
+
"allowNo": false,
|
|
268
|
+
"type": "boolean"
|
|
269
|
+
},
|
|
270
|
+
"quiet": {
|
|
271
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
272
|
+
"name": "quiet",
|
|
273
|
+
"allowNo": false,
|
|
274
|
+
"type": "boolean"
|
|
275
|
+
},
|
|
276
|
+
"noMeta": {
|
|
277
|
+
"aliases": [
|
|
278
|
+
"no-meta"
|
|
279
|
+
],
|
|
280
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
281
|
+
"name": "noMeta",
|
|
282
|
+
"allowNo": false,
|
|
283
|
+
"type": "boolean"
|
|
284
|
+
},
|
|
285
|
+
"retry": {
|
|
286
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
287
|
+
"name": "retry",
|
|
288
|
+
"default": 0,
|
|
289
|
+
"hasDynamicHelp": false,
|
|
290
|
+
"multiple": false,
|
|
291
|
+
"type": "option"
|
|
292
|
+
},
|
|
293
|
+
"full": {
|
|
294
|
+
"description": "Include type descriptions in the SDL output (default: stripped for token efficiency)",
|
|
295
|
+
"name": "full",
|
|
296
|
+
"allowNo": false,
|
|
297
|
+
"type": "boolean"
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
"hasDynamicHelp": false,
|
|
301
|
+
"hiddenAliases": [],
|
|
302
|
+
"id": "schema",
|
|
303
|
+
"pluginAlias": "linmux",
|
|
304
|
+
"pluginName": "linmux",
|
|
305
|
+
"pluginType": "core",
|
|
306
|
+
"strict": true,
|
|
307
|
+
"enableJsonFlag": true,
|
|
308
|
+
"isESM": true,
|
|
309
|
+
"relativePath": [
|
|
310
|
+
"dist",
|
|
311
|
+
"commands",
|
|
312
|
+
"schema.js"
|
|
313
|
+
]
|
|
314
|
+
},
|
|
315
|
+
"whoami": {
|
|
316
|
+
"aliases": [],
|
|
317
|
+
"args": {},
|
|
318
|
+
"description": "Alias for `me` -- prints the resolved viewer + organization.",
|
|
319
|
+
"flags": {
|
|
320
|
+
"json": {
|
|
321
|
+
"description": "Format output as json.",
|
|
322
|
+
"helpGroup": "GLOBAL",
|
|
323
|
+
"name": "json",
|
|
324
|
+
"allowNo": false,
|
|
325
|
+
"type": "boolean"
|
|
326
|
+
},
|
|
327
|
+
"pretty": {
|
|
328
|
+
"description": "Human-readable output (default is JSON)",
|
|
329
|
+
"name": "pretty",
|
|
330
|
+
"allowNo": false,
|
|
331
|
+
"type": "boolean"
|
|
332
|
+
},
|
|
333
|
+
"quiet": {
|
|
334
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
335
|
+
"name": "quiet",
|
|
336
|
+
"allowNo": false,
|
|
337
|
+
"type": "boolean"
|
|
338
|
+
},
|
|
339
|
+
"noMeta": {
|
|
340
|
+
"aliases": [
|
|
341
|
+
"no-meta"
|
|
342
|
+
],
|
|
343
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
344
|
+
"name": "noMeta",
|
|
345
|
+
"allowNo": false,
|
|
346
|
+
"type": "boolean"
|
|
347
|
+
},
|
|
348
|
+
"retry": {
|
|
349
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
350
|
+
"name": "retry",
|
|
351
|
+
"default": 0,
|
|
352
|
+
"hasDynamicHelp": false,
|
|
353
|
+
"multiple": false,
|
|
354
|
+
"type": "option"
|
|
355
|
+
},
|
|
356
|
+
"workspace": {
|
|
357
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
358
|
+
"name": "workspace",
|
|
359
|
+
"hasDynamicHelp": false,
|
|
360
|
+
"multiple": false,
|
|
361
|
+
"type": "option"
|
|
362
|
+
},
|
|
363
|
+
"fields": {
|
|
364
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
365
|
+
"name": "fields",
|
|
366
|
+
"default": "defaults",
|
|
367
|
+
"hasDynamicHelp": false,
|
|
368
|
+
"multiple": false,
|
|
369
|
+
"type": "option"
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
"hasDynamicHelp": false,
|
|
373
|
+
"hiddenAliases": [],
|
|
374
|
+
"id": "whoami",
|
|
375
|
+
"pluginAlias": "linmux",
|
|
376
|
+
"pluginName": "linmux",
|
|
377
|
+
"pluginType": "core",
|
|
378
|
+
"strict": true,
|
|
379
|
+
"enableJsonFlag": true,
|
|
380
|
+
"isESM": true,
|
|
381
|
+
"relativePath": [
|
|
382
|
+
"dist",
|
|
383
|
+
"commands",
|
|
384
|
+
"whoami.js"
|
|
385
|
+
]
|
|
386
|
+
},
|
|
387
|
+
"comment:create": {
|
|
388
|
+
"aliases": [],
|
|
389
|
+
"args": {},
|
|
390
|
+
"description": "Create a comment on a Linear issue. --issue + --body required; --parent optional for threaded replies.",
|
|
391
|
+
"flags": {
|
|
392
|
+
"json": {
|
|
393
|
+
"description": "Format output as json.",
|
|
394
|
+
"helpGroup": "GLOBAL",
|
|
395
|
+
"name": "json",
|
|
396
|
+
"allowNo": false,
|
|
397
|
+
"type": "boolean"
|
|
398
|
+
},
|
|
399
|
+
"pretty": {
|
|
400
|
+
"description": "Human-readable output (default is JSON)",
|
|
401
|
+
"name": "pretty",
|
|
402
|
+
"allowNo": false,
|
|
403
|
+
"type": "boolean"
|
|
404
|
+
},
|
|
405
|
+
"quiet": {
|
|
406
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
407
|
+
"name": "quiet",
|
|
408
|
+
"allowNo": false,
|
|
409
|
+
"type": "boolean"
|
|
410
|
+
},
|
|
411
|
+
"noMeta": {
|
|
412
|
+
"aliases": [
|
|
413
|
+
"no-meta"
|
|
414
|
+
],
|
|
415
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
416
|
+
"name": "noMeta",
|
|
417
|
+
"allowNo": false,
|
|
418
|
+
"type": "boolean"
|
|
419
|
+
},
|
|
420
|
+
"retry": {
|
|
421
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
422
|
+
"name": "retry",
|
|
423
|
+
"default": 0,
|
|
424
|
+
"hasDynamicHelp": false,
|
|
425
|
+
"multiple": false,
|
|
426
|
+
"type": "option"
|
|
427
|
+
},
|
|
428
|
+
"workspace": {
|
|
429
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
430
|
+
"name": "workspace",
|
|
431
|
+
"hasDynamicHelp": false,
|
|
432
|
+
"multiple": false,
|
|
433
|
+
"type": "option"
|
|
434
|
+
},
|
|
435
|
+
"allow-active-workspace-write": {
|
|
436
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
437
|
+
"name": "allow-active-workspace-write",
|
|
438
|
+
"allowNo": false,
|
|
439
|
+
"type": "boolean"
|
|
440
|
+
},
|
|
441
|
+
"fields": {
|
|
442
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
443
|
+
"name": "fields",
|
|
444
|
+
"default": "defaults",
|
|
445
|
+
"hasDynamicHelp": false,
|
|
446
|
+
"multiple": false,
|
|
447
|
+
"type": "option"
|
|
448
|
+
},
|
|
449
|
+
"issue": {
|
|
450
|
+
"description": "Issue UUID or identifier (ENG-123) to comment on (required)",
|
|
451
|
+
"name": "issue",
|
|
452
|
+
"required": true,
|
|
453
|
+
"hasDynamicHelp": false,
|
|
454
|
+
"multiple": false,
|
|
455
|
+
"type": "option"
|
|
456
|
+
},
|
|
457
|
+
"body": {
|
|
458
|
+
"description": "Comment body (markdown) (required)",
|
|
459
|
+
"name": "body",
|
|
460
|
+
"required": true,
|
|
461
|
+
"hasDynamicHelp": false,
|
|
462
|
+
"multiple": false,
|
|
463
|
+
"type": "option"
|
|
464
|
+
},
|
|
465
|
+
"parent": {
|
|
466
|
+
"description": "Parent comment UUID (for threaded replies)",
|
|
467
|
+
"name": "parent",
|
|
468
|
+
"hasDynamicHelp": false,
|
|
469
|
+
"multiple": false,
|
|
470
|
+
"type": "option"
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
"hasDynamicHelp": false,
|
|
474
|
+
"hiddenAliases": [],
|
|
475
|
+
"id": "comment:create",
|
|
476
|
+
"pluginAlias": "linmux",
|
|
477
|
+
"pluginName": "linmux",
|
|
478
|
+
"pluginType": "core",
|
|
479
|
+
"strict": true,
|
|
480
|
+
"enableJsonFlag": true,
|
|
481
|
+
"isESM": true,
|
|
482
|
+
"relativePath": [
|
|
483
|
+
"dist",
|
|
484
|
+
"commands",
|
|
485
|
+
"comment",
|
|
486
|
+
"create.js"
|
|
487
|
+
]
|
|
488
|
+
},
|
|
489
|
+
"comment:delete": {
|
|
490
|
+
"aliases": [],
|
|
491
|
+
"args": {
|
|
492
|
+
"id": {
|
|
493
|
+
"description": "Comment UUID",
|
|
494
|
+
"name": "id",
|
|
495
|
+
"required": true
|
|
496
|
+
}
|
|
497
|
+
},
|
|
498
|
+
"description": "Delete a Linear comment by UUID.",
|
|
499
|
+
"flags": {
|
|
500
|
+
"json": {
|
|
501
|
+
"description": "Format output as json.",
|
|
502
|
+
"helpGroup": "GLOBAL",
|
|
503
|
+
"name": "json",
|
|
504
|
+
"allowNo": false,
|
|
505
|
+
"type": "boolean"
|
|
506
|
+
},
|
|
507
|
+
"pretty": {
|
|
508
|
+
"description": "Human-readable output (default is JSON)",
|
|
509
|
+
"name": "pretty",
|
|
510
|
+
"allowNo": false,
|
|
511
|
+
"type": "boolean"
|
|
512
|
+
},
|
|
513
|
+
"quiet": {
|
|
514
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
515
|
+
"name": "quiet",
|
|
516
|
+
"allowNo": false,
|
|
517
|
+
"type": "boolean"
|
|
518
|
+
},
|
|
519
|
+
"noMeta": {
|
|
520
|
+
"aliases": [
|
|
521
|
+
"no-meta"
|
|
522
|
+
],
|
|
523
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
524
|
+
"name": "noMeta",
|
|
525
|
+
"allowNo": false,
|
|
526
|
+
"type": "boolean"
|
|
527
|
+
},
|
|
528
|
+
"retry": {
|
|
529
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
530
|
+
"name": "retry",
|
|
531
|
+
"default": 0,
|
|
532
|
+
"hasDynamicHelp": false,
|
|
533
|
+
"multiple": false,
|
|
534
|
+
"type": "option"
|
|
535
|
+
},
|
|
536
|
+
"workspace": {
|
|
537
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
538
|
+
"name": "workspace",
|
|
539
|
+
"hasDynamicHelp": false,
|
|
540
|
+
"multiple": false,
|
|
541
|
+
"type": "option"
|
|
542
|
+
},
|
|
543
|
+
"allow-active-workspace-write": {
|
|
544
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
545
|
+
"name": "allow-active-workspace-write",
|
|
546
|
+
"allowNo": false,
|
|
547
|
+
"type": "boolean"
|
|
548
|
+
}
|
|
549
|
+
},
|
|
550
|
+
"hasDynamicHelp": false,
|
|
551
|
+
"hiddenAliases": [],
|
|
552
|
+
"id": "comment:delete",
|
|
553
|
+
"pluginAlias": "linmux",
|
|
554
|
+
"pluginName": "linmux",
|
|
555
|
+
"pluginType": "core",
|
|
556
|
+
"strict": true,
|
|
557
|
+
"enableJsonFlag": true,
|
|
558
|
+
"isESM": true,
|
|
559
|
+
"relativePath": [
|
|
560
|
+
"dist",
|
|
561
|
+
"commands",
|
|
562
|
+
"comment",
|
|
563
|
+
"delete.js"
|
|
564
|
+
]
|
|
565
|
+
},
|
|
566
|
+
"comment:list": {
|
|
567
|
+
"aliases": [],
|
|
568
|
+
"args": {},
|
|
569
|
+
"description": "List Linear comments. Pass --issue ENG-123 (or UUID) to scope to one issue, otherwise lists workspace-wide.",
|
|
570
|
+
"flags": {
|
|
571
|
+
"json": {
|
|
572
|
+
"description": "Format output as json.",
|
|
573
|
+
"helpGroup": "GLOBAL",
|
|
574
|
+
"name": "json",
|
|
575
|
+
"allowNo": false,
|
|
576
|
+
"type": "boolean"
|
|
577
|
+
},
|
|
578
|
+
"pretty": {
|
|
579
|
+
"description": "Human-readable output (default is JSON)",
|
|
580
|
+
"name": "pretty",
|
|
581
|
+
"allowNo": false,
|
|
582
|
+
"type": "boolean"
|
|
583
|
+
},
|
|
584
|
+
"quiet": {
|
|
585
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
586
|
+
"name": "quiet",
|
|
587
|
+
"allowNo": false,
|
|
588
|
+
"type": "boolean"
|
|
589
|
+
},
|
|
590
|
+
"noMeta": {
|
|
591
|
+
"aliases": [
|
|
592
|
+
"no-meta"
|
|
593
|
+
],
|
|
594
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
595
|
+
"name": "noMeta",
|
|
596
|
+
"allowNo": false,
|
|
597
|
+
"type": "boolean"
|
|
598
|
+
},
|
|
599
|
+
"retry": {
|
|
600
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
601
|
+
"name": "retry",
|
|
602
|
+
"default": 0,
|
|
603
|
+
"hasDynamicHelp": false,
|
|
604
|
+
"multiple": false,
|
|
605
|
+
"type": "option"
|
|
606
|
+
},
|
|
607
|
+
"limit": {
|
|
608
|
+
"description": "Page size (default 25, max 100)",
|
|
609
|
+
"name": "limit",
|
|
610
|
+
"default": 25,
|
|
611
|
+
"hasDynamicHelp": false,
|
|
612
|
+
"multiple": false,
|
|
613
|
+
"type": "option"
|
|
614
|
+
},
|
|
615
|
+
"cursor": {
|
|
616
|
+
"description": "Opaque cursor from a previous response's meta.pageInfo.endCursor",
|
|
617
|
+
"name": "cursor",
|
|
618
|
+
"hasDynamicHelp": false,
|
|
619
|
+
"multiple": false,
|
|
620
|
+
"type": "option"
|
|
621
|
+
},
|
|
622
|
+
"workspace": {
|
|
623
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
624
|
+
"name": "workspace",
|
|
625
|
+
"hasDynamicHelp": false,
|
|
626
|
+
"multiple": false,
|
|
627
|
+
"type": "option"
|
|
628
|
+
},
|
|
629
|
+
"fields": {
|
|
630
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
631
|
+
"name": "fields",
|
|
632
|
+
"default": "defaults",
|
|
633
|
+
"hasDynamicHelp": false,
|
|
634
|
+
"multiple": false,
|
|
635
|
+
"type": "option"
|
|
636
|
+
},
|
|
637
|
+
"issue": {
|
|
638
|
+
"description": "Filter to comments on this issue (UUID or ENG-123)",
|
|
639
|
+
"name": "issue",
|
|
640
|
+
"hasDynamicHelp": false,
|
|
641
|
+
"multiple": false,
|
|
642
|
+
"type": "option"
|
|
643
|
+
},
|
|
644
|
+
"include": {
|
|
645
|
+
"description": "Hydrate related entities in a single GraphQL round-trip (e.g. reactions, parent). Available: reactions, parent.",
|
|
646
|
+
"name": "include",
|
|
647
|
+
"hasDynamicHelp": false,
|
|
648
|
+
"multiple": true,
|
|
649
|
+
"type": "option"
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
"hasDynamicHelp": false,
|
|
653
|
+
"hiddenAliases": [],
|
|
654
|
+
"id": "comment:list",
|
|
655
|
+
"pluginAlias": "linmux",
|
|
656
|
+
"pluginName": "linmux",
|
|
657
|
+
"pluginType": "core",
|
|
658
|
+
"strict": true,
|
|
659
|
+
"enableJsonFlag": true,
|
|
660
|
+
"isESM": true,
|
|
661
|
+
"relativePath": [
|
|
662
|
+
"dist",
|
|
663
|
+
"commands",
|
|
664
|
+
"comment",
|
|
665
|
+
"list.js"
|
|
666
|
+
]
|
|
667
|
+
},
|
|
668
|
+
"comment:update": {
|
|
669
|
+
"aliases": [],
|
|
670
|
+
"args": {
|
|
671
|
+
"id": {
|
|
672
|
+
"description": "Comment UUID",
|
|
673
|
+
"name": "id",
|
|
674
|
+
"required": true
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
"description": "Update a Linear comment. --body is the only updatable field; pass \"\" to clear.",
|
|
678
|
+
"flags": {
|
|
679
|
+
"json": {
|
|
680
|
+
"description": "Format output as json.",
|
|
681
|
+
"helpGroup": "GLOBAL",
|
|
682
|
+
"name": "json",
|
|
683
|
+
"allowNo": false,
|
|
684
|
+
"type": "boolean"
|
|
685
|
+
},
|
|
686
|
+
"pretty": {
|
|
687
|
+
"description": "Human-readable output (default is JSON)",
|
|
688
|
+
"name": "pretty",
|
|
689
|
+
"allowNo": false,
|
|
690
|
+
"type": "boolean"
|
|
691
|
+
},
|
|
692
|
+
"quiet": {
|
|
693
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
694
|
+
"name": "quiet",
|
|
695
|
+
"allowNo": false,
|
|
696
|
+
"type": "boolean"
|
|
697
|
+
},
|
|
698
|
+
"noMeta": {
|
|
699
|
+
"aliases": [
|
|
700
|
+
"no-meta"
|
|
701
|
+
],
|
|
702
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
703
|
+
"name": "noMeta",
|
|
704
|
+
"allowNo": false,
|
|
705
|
+
"type": "boolean"
|
|
706
|
+
},
|
|
707
|
+
"retry": {
|
|
708
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
709
|
+
"name": "retry",
|
|
710
|
+
"default": 0,
|
|
711
|
+
"hasDynamicHelp": false,
|
|
712
|
+
"multiple": false,
|
|
713
|
+
"type": "option"
|
|
714
|
+
},
|
|
715
|
+
"workspace": {
|
|
716
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
717
|
+
"name": "workspace",
|
|
718
|
+
"hasDynamicHelp": false,
|
|
719
|
+
"multiple": false,
|
|
720
|
+
"type": "option"
|
|
721
|
+
},
|
|
722
|
+
"allow-active-workspace-write": {
|
|
723
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
724
|
+
"name": "allow-active-workspace-write",
|
|
725
|
+
"allowNo": false,
|
|
726
|
+
"type": "boolean"
|
|
727
|
+
},
|
|
728
|
+
"fields": {
|
|
729
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
730
|
+
"name": "fields",
|
|
731
|
+
"default": "defaults",
|
|
732
|
+
"hasDynamicHelp": false,
|
|
733
|
+
"multiple": false,
|
|
734
|
+
"type": "option"
|
|
735
|
+
},
|
|
736
|
+
"body": {
|
|
737
|
+
"description": "New comment body (markdown). Pass \"\" to clear.",
|
|
738
|
+
"name": "body",
|
|
739
|
+
"hasDynamicHelp": false,
|
|
740
|
+
"multiple": false,
|
|
741
|
+
"type": "option"
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
"hasDynamicHelp": false,
|
|
745
|
+
"hiddenAliases": [],
|
|
746
|
+
"id": "comment:update",
|
|
747
|
+
"pluginAlias": "linmux",
|
|
748
|
+
"pluginName": "linmux",
|
|
749
|
+
"pluginType": "core",
|
|
750
|
+
"strict": true,
|
|
751
|
+
"enableJsonFlag": true,
|
|
752
|
+
"isESM": true,
|
|
753
|
+
"relativePath": [
|
|
754
|
+
"dist",
|
|
755
|
+
"commands",
|
|
756
|
+
"comment",
|
|
757
|
+
"update.js"
|
|
758
|
+
]
|
|
759
|
+
},
|
|
760
|
+
"cycle:current": {
|
|
761
|
+
"aliases": [],
|
|
762
|
+
"args": {},
|
|
763
|
+
"description": "Get the active cycle for a team. --team is REQUIRED.",
|
|
764
|
+
"flags": {
|
|
765
|
+
"json": {
|
|
766
|
+
"description": "Format output as json.",
|
|
767
|
+
"helpGroup": "GLOBAL",
|
|
768
|
+
"name": "json",
|
|
769
|
+
"allowNo": false,
|
|
770
|
+
"type": "boolean"
|
|
771
|
+
},
|
|
772
|
+
"pretty": {
|
|
773
|
+
"description": "Human-readable output (default is JSON)",
|
|
774
|
+
"name": "pretty",
|
|
775
|
+
"allowNo": false,
|
|
776
|
+
"type": "boolean"
|
|
777
|
+
},
|
|
778
|
+
"quiet": {
|
|
779
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
780
|
+
"name": "quiet",
|
|
781
|
+
"allowNo": false,
|
|
782
|
+
"type": "boolean"
|
|
783
|
+
},
|
|
784
|
+
"noMeta": {
|
|
785
|
+
"aliases": [
|
|
786
|
+
"no-meta"
|
|
787
|
+
],
|
|
788
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
789
|
+
"name": "noMeta",
|
|
790
|
+
"allowNo": false,
|
|
791
|
+
"type": "boolean"
|
|
792
|
+
},
|
|
793
|
+
"retry": {
|
|
794
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
795
|
+
"name": "retry",
|
|
796
|
+
"default": 0,
|
|
797
|
+
"hasDynamicHelp": false,
|
|
798
|
+
"multiple": false,
|
|
799
|
+
"type": "option"
|
|
800
|
+
},
|
|
801
|
+
"workspace": {
|
|
802
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
803
|
+
"name": "workspace",
|
|
804
|
+
"hasDynamicHelp": false,
|
|
805
|
+
"multiple": false,
|
|
806
|
+
"type": "option"
|
|
807
|
+
},
|
|
808
|
+
"team": {
|
|
809
|
+
"description": "Team key (e.g. \"ENG\"), name, or UUID -- REQUIRED",
|
|
810
|
+
"name": "team",
|
|
811
|
+
"hasDynamicHelp": false,
|
|
812
|
+
"multiple": false,
|
|
813
|
+
"type": "option"
|
|
814
|
+
},
|
|
815
|
+
"fields": {
|
|
816
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
817
|
+
"name": "fields",
|
|
818
|
+
"default": "defaults",
|
|
819
|
+
"hasDynamicHelp": false,
|
|
820
|
+
"multiple": false,
|
|
821
|
+
"type": "option"
|
|
822
|
+
}
|
|
823
|
+
},
|
|
824
|
+
"hasDynamicHelp": false,
|
|
825
|
+
"hiddenAliases": [],
|
|
826
|
+
"id": "cycle:current",
|
|
827
|
+
"pluginAlias": "linmux",
|
|
828
|
+
"pluginName": "linmux",
|
|
829
|
+
"pluginType": "core",
|
|
830
|
+
"strict": true,
|
|
831
|
+
"enableJsonFlag": true,
|
|
832
|
+
"isESM": true,
|
|
833
|
+
"relativePath": [
|
|
834
|
+
"dist",
|
|
835
|
+
"commands",
|
|
836
|
+
"cycle",
|
|
837
|
+
"current.js"
|
|
838
|
+
]
|
|
839
|
+
},
|
|
840
|
+
"cycle:list": {
|
|
841
|
+
"aliases": [],
|
|
842
|
+
"args": {},
|
|
843
|
+
"description": "List Linear cycles, optionally filtered to a single team via --team. Supports --fields, --limit, --cursor.",
|
|
844
|
+
"flags": {
|
|
845
|
+
"json": {
|
|
846
|
+
"description": "Format output as json.",
|
|
847
|
+
"helpGroup": "GLOBAL",
|
|
848
|
+
"name": "json",
|
|
849
|
+
"allowNo": false,
|
|
850
|
+
"type": "boolean"
|
|
851
|
+
},
|
|
852
|
+
"pretty": {
|
|
853
|
+
"description": "Human-readable output (default is JSON)",
|
|
854
|
+
"name": "pretty",
|
|
855
|
+
"allowNo": false,
|
|
856
|
+
"type": "boolean"
|
|
857
|
+
},
|
|
858
|
+
"quiet": {
|
|
859
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
860
|
+
"name": "quiet",
|
|
861
|
+
"allowNo": false,
|
|
862
|
+
"type": "boolean"
|
|
863
|
+
},
|
|
864
|
+
"noMeta": {
|
|
865
|
+
"aliases": [
|
|
866
|
+
"no-meta"
|
|
867
|
+
],
|
|
868
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
869
|
+
"name": "noMeta",
|
|
870
|
+
"allowNo": false,
|
|
871
|
+
"type": "boolean"
|
|
872
|
+
},
|
|
873
|
+
"retry": {
|
|
874
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
875
|
+
"name": "retry",
|
|
876
|
+
"default": 0,
|
|
877
|
+
"hasDynamicHelp": false,
|
|
878
|
+
"multiple": false,
|
|
879
|
+
"type": "option"
|
|
880
|
+
},
|
|
881
|
+
"limit": {
|
|
882
|
+
"description": "Page size (default 25, max 100)",
|
|
883
|
+
"name": "limit",
|
|
884
|
+
"default": 25,
|
|
885
|
+
"hasDynamicHelp": false,
|
|
886
|
+
"multiple": false,
|
|
887
|
+
"type": "option"
|
|
888
|
+
},
|
|
889
|
+
"cursor": {
|
|
890
|
+
"description": "Opaque cursor from a previous response's meta.pageInfo.endCursor",
|
|
891
|
+
"name": "cursor",
|
|
892
|
+
"hasDynamicHelp": false,
|
|
893
|
+
"multiple": false,
|
|
894
|
+
"type": "option"
|
|
895
|
+
},
|
|
896
|
+
"workspace": {
|
|
897
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
898
|
+
"name": "workspace",
|
|
899
|
+
"hasDynamicHelp": false,
|
|
900
|
+
"multiple": false,
|
|
901
|
+
"type": "option"
|
|
902
|
+
},
|
|
903
|
+
"team": {
|
|
904
|
+
"description": "Team key (e.g. \"ENG\"), name, or UUID -- filters cycles to one team",
|
|
905
|
+
"name": "team",
|
|
906
|
+
"hasDynamicHelp": false,
|
|
907
|
+
"multiple": false,
|
|
908
|
+
"type": "option"
|
|
909
|
+
},
|
|
910
|
+
"fields": {
|
|
911
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
912
|
+
"name": "fields",
|
|
913
|
+
"default": "defaults",
|
|
914
|
+
"hasDynamicHelp": false,
|
|
915
|
+
"multiple": false,
|
|
916
|
+
"type": "option"
|
|
917
|
+
},
|
|
918
|
+
"include": {
|
|
919
|
+
"description": "Hydrate related entities in a single GraphQL round-trip (e.g. issues). Available: issues.",
|
|
920
|
+
"name": "include",
|
|
921
|
+
"hasDynamicHelp": false,
|
|
922
|
+
"multiple": true,
|
|
923
|
+
"type": "option"
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
"hasDynamicHelp": false,
|
|
927
|
+
"hiddenAliases": [],
|
|
928
|
+
"id": "cycle:list",
|
|
929
|
+
"pluginAlias": "linmux",
|
|
930
|
+
"pluginName": "linmux",
|
|
931
|
+
"pluginType": "core",
|
|
932
|
+
"strict": true,
|
|
933
|
+
"enableJsonFlag": true,
|
|
934
|
+
"isESM": true,
|
|
935
|
+
"relativePath": [
|
|
936
|
+
"dist",
|
|
937
|
+
"commands",
|
|
938
|
+
"cycle",
|
|
939
|
+
"list.js"
|
|
940
|
+
]
|
|
941
|
+
},
|
|
942
|
+
"cycle:move": {
|
|
943
|
+
"aliases": [],
|
|
944
|
+
"args": {
|
|
945
|
+
"issue": {
|
|
946
|
+
"description": "Issue identifier (ENG-123) or UUID",
|
|
947
|
+
"name": "issue",
|
|
948
|
+
"required": true
|
|
949
|
+
}
|
|
950
|
+
},
|
|
951
|
+
"description": "Move a Linear issue to a different cycle. Calls updateIssue({ cycleId }); cycle is a property on Issue.",
|
|
952
|
+
"flags": {
|
|
953
|
+
"json": {
|
|
954
|
+
"description": "Format output as json.",
|
|
955
|
+
"helpGroup": "GLOBAL",
|
|
956
|
+
"name": "json",
|
|
957
|
+
"allowNo": false,
|
|
958
|
+
"type": "boolean"
|
|
959
|
+
},
|
|
960
|
+
"pretty": {
|
|
961
|
+
"description": "Human-readable output (default is JSON)",
|
|
962
|
+
"name": "pretty",
|
|
963
|
+
"allowNo": false,
|
|
964
|
+
"type": "boolean"
|
|
965
|
+
},
|
|
966
|
+
"quiet": {
|
|
967
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
968
|
+
"name": "quiet",
|
|
969
|
+
"allowNo": false,
|
|
970
|
+
"type": "boolean"
|
|
971
|
+
},
|
|
972
|
+
"noMeta": {
|
|
973
|
+
"aliases": [
|
|
974
|
+
"no-meta"
|
|
975
|
+
],
|
|
976
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
977
|
+
"name": "noMeta",
|
|
978
|
+
"allowNo": false,
|
|
979
|
+
"type": "boolean"
|
|
980
|
+
},
|
|
981
|
+
"retry": {
|
|
982
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
983
|
+
"name": "retry",
|
|
984
|
+
"default": 0,
|
|
985
|
+
"hasDynamicHelp": false,
|
|
986
|
+
"multiple": false,
|
|
987
|
+
"type": "option"
|
|
988
|
+
},
|
|
989
|
+
"workspace": {
|
|
990
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
991
|
+
"name": "workspace",
|
|
992
|
+
"hasDynamicHelp": false,
|
|
993
|
+
"multiple": false,
|
|
994
|
+
"type": "option"
|
|
995
|
+
},
|
|
996
|
+
"allow-active-workspace-write": {
|
|
997
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
998
|
+
"name": "allow-active-workspace-write",
|
|
999
|
+
"allowNo": false,
|
|
1000
|
+
"type": "boolean"
|
|
1001
|
+
},
|
|
1002
|
+
"fields": {
|
|
1003
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
1004
|
+
"name": "fields",
|
|
1005
|
+
"default": "defaults",
|
|
1006
|
+
"hasDynamicHelp": false,
|
|
1007
|
+
"multiple": false,
|
|
1008
|
+
"type": "option"
|
|
1009
|
+
},
|
|
1010
|
+
"to": {
|
|
1011
|
+
"description": "Cycle ref: UUID, +N/-N/0, current/next/previous, or cycle name",
|
|
1012
|
+
"name": "to",
|
|
1013
|
+
"required": true,
|
|
1014
|
+
"hasDynamicHelp": false,
|
|
1015
|
+
"multiple": false,
|
|
1016
|
+
"type": "option"
|
|
1017
|
+
}
|
|
1018
|
+
},
|
|
1019
|
+
"hasDynamicHelp": false,
|
|
1020
|
+
"hiddenAliases": [],
|
|
1021
|
+
"id": "cycle:move",
|
|
1022
|
+
"pluginAlias": "linmux",
|
|
1023
|
+
"pluginName": "linmux",
|
|
1024
|
+
"pluginType": "core",
|
|
1025
|
+
"strict": true,
|
|
1026
|
+
"enableJsonFlag": true,
|
|
1027
|
+
"isESM": true,
|
|
1028
|
+
"relativePath": [
|
|
1029
|
+
"dist",
|
|
1030
|
+
"commands",
|
|
1031
|
+
"cycle",
|
|
1032
|
+
"move.js"
|
|
1033
|
+
]
|
|
1034
|
+
},
|
|
1035
|
+
"graphql": {
|
|
1036
|
+
"aliases": [],
|
|
1037
|
+
"args": {},
|
|
1038
|
+
"description": "Execute a free-form GraphQL query against Linear (locally validated against vendored schema before dispatch).",
|
|
1039
|
+
"examples": [
|
|
1040
|
+
"<%= config.bin %> graphql --query=@./query.graphql --vars '{\"id\": \"...\"}'",
|
|
1041
|
+
"<%= config.bin %> graphql --query='{ viewer { id name } }'",
|
|
1042
|
+
"<%= config.bin %> graphql --query=@./mutation.graphql --allow-mutations --workspace acme"
|
|
1043
|
+
],
|
|
1044
|
+
"flags": {
|
|
1045
|
+
"json": {
|
|
1046
|
+
"description": "Format output as json.",
|
|
1047
|
+
"helpGroup": "GLOBAL",
|
|
1048
|
+
"name": "json",
|
|
1049
|
+
"allowNo": false,
|
|
1050
|
+
"type": "boolean"
|
|
1051
|
+
},
|
|
1052
|
+
"pretty": {
|
|
1053
|
+
"description": "Human-readable output (default is JSON)",
|
|
1054
|
+
"name": "pretty",
|
|
1055
|
+
"allowNo": false,
|
|
1056
|
+
"type": "boolean"
|
|
1057
|
+
},
|
|
1058
|
+
"quiet": {
|
|
1059
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
1060
|
+
"name": "quiet",
|
|
1061
|
+
"allowNo": false,
|
|
1062
|
+
"type": "boolean"
|
|
1063
|
+
},
|
|
1064
|
+
"noMeta": {
|
|
1065
|
+
"aliases": [
|
|
1066
|
+
"no-meta"
|
|
1067
|
+
],
|
|
1068
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
1069
|
+
"name": "noMeta",
|
|
1070
|
+
"allowNo": false,
|
|
1071
|
+
"type": "boolean"
|
|
1072
|
+
},
|
|
1073
|
+
"retry": {
|
|
1074
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
1075
|
+
"name": "retry",
|
|
1076
|
+
"default": 0,
|
|
1077
|
+
"hasDynamicHelp": false,
|
|
1078
|
+
"multiple": false,
|
|
1079
|
+
"type": "option"
|
|
1080
|
+
},
|
|
1081
|
+
"workspace": {
|
|
1082
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
1083
|
+
"name": "workspace",
|
|
1084
|
+
"hasDynamicHelp": false,
|
|
1085
|
+
"multiple": false,
|
|
1086
|
+
"type": "option"
|
|
1087
|
+
},
|
|
1088
|
+
"allow-active-workspace-write": {
|
|
1089
|
+
"description": "Per-invocation opt-in to use the active default workspace for mutation operations (WSP-06)",
|
|
1090
|
+
"name": "allow-active-workspace-write",
|
|
1091
|
+
"allowNo": false,
|
|
1092
|
+
"type": "boolean"
|
|
1093
|
+
},
|
|
1094
|
+
"allow-mutations": {
|
|
1095
|
+
"description": "Required flag to execute mutation operations. Prevents accidental data modification.",
|
|
1096
|
+
"name": "allow-mutations",
|
|
1097
|
+
"allowNo": false,
|
|
1098
|
+
"type": "boolean"
|
|
1099
|
+
},
|
|
1100
|
+
"query": {
|
|
1101
|
+
"description": "GraphQL query source: inline string (e.g. \"{ viewer { id } }\") OR file reference (@./query.graphql)",
|
|
1102
|
+
"name": "query",
|
|
1103
|
+
"required": true,
|
|
1104
|
+
"hasDynamicHelp": false,
|
|
1105
|
+
"multiple": false,
|
|
1106
|
+
"type": "option"
|
|
1107
|
+
},
|
|
1108
|
+
"vars": {
|
|
1109
|
+
"description": "Variables as inline JSON (e.g. '{\"id\": \"...\"}') OR file reference (@./vars.json)",
|
|
1110
|
+
"name": "vars",
|
|
1111
|
+
"hasDynamicHelp": false,
|
|
1112
|
+
"multiple": false,
|
|
1113
|
+
"type": "option"
|
|
1114
|
+
}
|
|
1115
|
+
},
|
|
1116
|
+
"hasDynamicHelp": false,
|
|
1117
|
+
"hiddenAliases": [],
|
|
1118
|
+
"id": "graphql",
|
|
1119
|
+
"pluginAlias": "linmux",
|
|
1120
|
+
"pluginName": "linmux",
|
|
1121
|
+
"pluginType": "core",
|
|
1122
|
+
"strict": true,
|
|
1123
|
+
"enableJsonFlag": true,
|
|
1124
|
+
"isESM": true,
|
|
1125
|
+
"relativePath": [
|
|
1126
|
+
"dist",
|
|
1127
|
+
"commands",
|
|
1128
|
+
"graphql",
|
|
1129
|
+
"index.js"
|
|
1130
|
+
]
|
|
1131
|
+
},
|
|
1132
|
+
"issue:archive": {
|
|
1133
|
+
"aliases": [],
|
|
1134
|
+
"args": {
|
|
1135
|
+
"identifier": {
|
|
1136
|
+
"description": "Issue identifier (ENG-123) or UUID",
|
|
1137
|
+
"name": "identifier",
|
|
1138
|
+
"required": true
|
|
1139
|
+
}
|
|
1140
|
+
},
|
|
1141
|
+
"description": "Archive a Linear issue (reversible). Linear keeps the issue and supports unarchive.",
|
|
1142
|
+
"flags": {
|
|
1143
|
+
"json": {
|
|
1144
|
+
"description": "Format output as json.",
|
|
1145
|
+
"helpGroup": "GLOBAL",
|
|
1146
|
+
"name": "json",
|
|
1147
|
+
"allowNo": false,
|
|
1148
|
+
"type": "boolean"
|
|
1149
|
+
},
|
|
1150
|
+
"pretty": {
|
|
1151
|
+
"description": "Human-readable output (default is JSON)",
|
|
1152
|
+
"name": "pretty",
|
|
1153
|
+
"allowNo": false,
|
|
1154
|
+
"type": "boolean"
|
|
1155
|
+
},
|
|
1156
|
+
"quiet": {
|
|
1157
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
1158
|
+
"name": "quiet",
|
|
1159
|
+
"allowNo": false,
|
|
1160
|
+
"type": "boolean"
|
|
1161
|
+
},
|
|
1162
|
+
"noMeta": {
|
|
1163
|
+
"aliases": [
|
|
1164
|
+
"no-meta"
|
|
1165
|
+
],
|
|
1166
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
1167
|
+
"name": "noMeta",
|
|
1168
|
+
"allowNo": false,
|
|
1169
|
+
"type": "boolean"
|
|
1170
|
+
},
|
|
1171
|
+
"retry": {
|
|
1172
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
1173
|
+
"name": "retry",
|
|
1174
|
+
"default": 0,
|
|
1175
|
+
"hasDynamicHelp": false,
|
|
1176
|
+
"multiple": false,
|
|
1177
|
+
"type": "option"
|
|
1178
|
+
},
|
|
1179
|
+
"workspace": {
|
|
1180
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
1181
|
+
"name": "workspace",
|
|
1182
|
+
"hasDynamicHelp": false,
|
|
1183
|
+
"multiple": false,
|
|
1184
|
+
"type": "option"
|
|
1185
|
+
},
|
|
1186
|
+
"allow-active-workspace-write": {
|
|
1187
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
1188
|
+
"name": "allow-active-workspace-write",
|
|
1189
|
+
"allowNo": false,
|
|
1190
|
+
"type": "boolean"
|
|
1191
|
+
}
|
|
1192
|
+
},
|
|
1193
|
+
"hasDynamicHelp": false,
|
|
1194
|
+
"hiddenAliases": [],
|
|
1195
|
+
"id": "issue:archive",
|
|
1196
|
+
"pluginAlias": "linmux",
|
|
1197
|
+
"pluginName": "linmux",
|
|
1198
|
+
"pluginType": "core",
|
|
1199
|
+
"strict": true,
|
|
1200
|
+
"enableJsonFlag": true,
|
|
1201
|
+
"isESM": true,
|
|
1202
|
+
"relativePath": [
|
|
1203
|
+
"dist",
|
|
1204
|
+
"commands",
|
|
1205
|
+
"issue",
|
|
1206
|
+
"archive.js"
|
|
1207
|
+
]
|
|
1208
|
+
},
|
|
1209
|
+
"issue:create": {
|
|
1210
|
+
"aliases": [],
|
|
1211
|
+
"args": {},
|
|
1212
|
+
"description": "Create a Linear issue (--title + --team required; --description, --state, --assignee, --labels, --project, --cycle, --priority, --parent optional).",
|
|
1213
|
+
"flags": {
|
|
1214
|
+
"json": {
|
|
1215
|
+
"description": "Format output as json.",
|
|
1216
|
+
"helpGroup": "GLOBAL",
|
|
1217
|
+
"name": "json",
|
|
1218
|
+
"allowNo": false,
|
|
1219
|
+
"type": "boolean"
|
|
1220
|
+
},
|
|
1221
|
+
"pretty": {
|
|
1222
|
+
"description": "Human-readable output (default is JSON)",
|
|
1223
|
+
"name": "pretty",
|
|
1224
|
+
"allowNo": false,
|
|
1225
|
+
"type": "boolean"
|
|
1226
|
+
},
|
|
1227
|
+
"quiet": {
|
|
1228
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
1229
|
+
"name": "quiet",
|
|
1230
|
+
"allowNo": false,
|
|
1231
|
+
"type": "boolean"
|
|
1232
|
+
},
|
|
1233
|
+
"noMeta": {
|
|
1234
|
+
"aliases": [
|
|
1235
|
+
"no-meta"
|
|
1236
|
+
],
|
|
1237
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
1238
|
+
"name": "noMeta",
|
|
1239
|
+
"allowNo": false,
|
|
1240
|
+
"type": "boolean"
|
|
1241
|
+
},
|
|
1242
|
+
"retry": {
|
|
1243
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
1244
|
+
"name": "retry",
|
|
1245
|
+
"default": 0,
|
|
1246
|
+
"hasDynamicHelp": false,
|
|
1247
|
+
"multiple": false,
|
|
1248
|
+
"type": "option"
|
|
1249
|
+
},
|
|
1250
|
+
"workspace": {
|
|
1251
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
1252
|
+
"name": "workspace",
|
|
1253
|
+
"hasDynamicHelp": false,
|
|
1254
|
+
"multiple": false,
|
|
1255
|
+
"type": "option"
|
|
1256
|
+
},
|
|
1257
|
+
"allow-active-workspace-write": {
|
|
1258
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
1259
|
+
"name": "allow-active-workspace-write",
|
|
1260
|
+
"allowNo": false,
|
|
1261
|
+
"type": "boolean"
|
|
1262
|
+
},
|
|
1263
|
+
"fields": {
|
|
1264
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
1265
|
+
"name": "fields",
|
|
1266
|
+
"default": "defaults",
|
|
1267
|
+
"hasDynamicHelp": false,
|
|
1268
|
+
"multiple": false,
|
|
1269
|
+
"type": "option"
|
|
1270
|
+
},
|
|
1271
|
+
"title": {
|
|
1272
|
+
"description": "Issue title (required)",
|
|
1273
|
+
"name": "title",
|
|
1274
|
+
"required": true,
|
|
1275
|
+
"hasDynamicHelp": false,
|
|
1276
|
+
"multiple": false,
|
|
1277
|
+
"type": "option"
|
|
1278
|
+
},
|
|
1279
|
+
"team": {
|
|
1280
|
+
"description": "Team key (ENG), team name, or team UUID (required)",
|
|
1281
|
+
"name": "team",
|
|
1282
|
+
"required": true,
|
|
1283
|
+
"hasDynamicHelp": false,
|
|
1284
|
+
"multiple": false,
|
|
1285
|
+
"type": "option"
|
|
1286
|
+
},
|
|
1287
|
+
"description": {
|
|
1288
|
+
"description": "Issue description (markdown)",
|
|
1289
|
+
"name": "description",
|
|
1290
|
+
"hasDynamicHelp": false,
|
|
1291
|
+
"multiple": false,
|
|
1292
|
+
"type": "option"
|
|
1293
|
+
},
|
|
1294
|
+
"state": {
|
|
1295
|
+
"description": "Workflow state name (e.g. \"In Progress\") or UUID",
|
|
1296
|
+
"name": "state",
|
|
1297
|
+
"hasDynamicHelp": false,
|
|
1298
|
+
"multiple": false,
|
|
1299
|
+
"type": "option"
|
|
1300
|
+
},
|
|
1301
|
+
"assignee": {
|
|
1302
|
+
"description": "\"me\", email, name, or user UUID",
|
|
1303
|
+
"name": "assignee",
|
|
1304
|
+
"hasDynamicHelp": false,
|
|
1305
|
+
"multiple": false,
|
|
1306
|
+
"type": "option"
|
|
1307
|
+
},
|
|
1308
|
+
"labels": {
|
|
1309
|
+
"description": "Comma-separated label names or UUIDs (replace mode)",
|
|
1310
|
+
"name": "labels",
|
|
1311
|
+
"hasDynamicHelp": false,
|
|
1312
|
+
"multiple": false,
|
|
1313
|
+
"type": "option"
|
|
1314
|
+
},
|
|
1315
|
+
"project": {
|
|
1316
|
+
"description": "Project name or UUID",
|
|
1317
|
+
"name": "project",
|
|
1318
|
+
"hasDynamicHelp": false,
|
|
1319
|
+
"multiple": false,
|
|
1320
|
+
"type": "option"
|
|
1321
|
+
},
|
|
1322
|
+
"cycle": {
|
|
1323
|
+
"description": "Cycle ref (current|next|previous|+N|-N|UUID|name)",
|
|
1324
|
+
"name": "cycle",
|
|
1325
|
+
"hasDynamicHelp": false,
|
|
1326
|
+
"multiple": false,
|
|
1327
|
+
"type": "option"
|
|
1328
|
+
},
|
|
1329
|
+
"priority": {
|
|
1330
|
+
"description": "Priority (0=no priority, 1=urgent, 2=high, 3=medium, 4=low)",
|
|
1331
|
+
"name": "priority",
|
|
1332
|
+
"hasDynamicHelp": false,
|
|
1333
|
+
"multiple": false,
|
|
1334
|
+
"type": "option"
|
|
1335
|
+
},
|
|
1336
|
+
"parent": {
|
|
1337
|
+
"description": "Parent issue identifier (ENG-42) or UUID",
|
|
1338
|
+
"name": "parent",
|
|
1339
|
+
"hasDynamicHelp": false,
|
|
1340
|
+
"multiple": false,
|
|
1341
|
+
"type": "option"
|
|
1342
|
+
}
|
|
1343
|
+
},
|
|
1344
|
+
"hasDynamicHelp": false,
|
|
1345
|
+
"hiddenAliases": [],
|
|
1346
|
+
"id": "issue:create",
|
|
1347
|
+
"pluginAlias": "linmux",
|
|
1348
|
+
"pluginName": "linmux",
|
|
1349
|
+
"pluginType": "core",
|
|
1350
|
+
"strict": true,
|
|
1351
|
+
"enableJsonFlag": true,
|
|
1352
|
+
"isESM": true,
|
|
1353
|
+
"relativePath": [
|
|
1354
|
+
"dist",
|
|
1355
|
+
"commands",
|
|
1356
|
+
"issue",
|
|
1357
|
+
"create.js"
|
|
1358
|
+
]
|
|
1359
|
+
},
|
|
1360
|
+
"issue:get": {
|
|
1361
|
+
"aliases": [],
|
|
1362
|
+
"args": {
|
|
1363
|
+
"identifier": {
|
|
1364
|
+
"description": "Issue identifier (ENG-123) or UUID",
|
|
1365
|
+
"name": "identifier",
|
|
1366
|
+
"required": true
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
"description": "Get a single Linear issue by identifier (ENG-123) or UUID.",
|
|
1370
|
+
"flags": {
|
|
1371
|
+
"json": {
|
|
1372
|
+
"description": "Format output as json.",
|
|
1373
|
+
"helpGroup": "GLOBAL",
|
|
1374
|
+
"name": "json",
|
|
1375
|
+
"allowNo": false,
|
|
1376
|
+
"type": "boolean"
|
|
1377
|
+
},
|
|
1378
|
+
"pretty": {
|
|
1379
|
+
"description": "Human-readable output (default is JSON)",
|
|
1380
|
+
"name": "pretty",
|
|
1381
|
+
"allowNo": false,
|
|
1382
|
+
"type": "boolean"
|
|
1383
|
+
},
|
|
1384
|
+
"quiet": {
|
|
1385
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
1386
|
+
"name": "quiet",
|
|
1387
|
+
"allowNo": false,
|
|
1388
|
+
"type": "boolean"
|
|
1389
|
+
},
|
|
1390
|
+
"noMeta": {
|
|
1391
|
+
"aliases": [
|
|
1392
|
+
"no-meta"
|
|
1393
|
+
],
|
|
1394
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
1395
|
+
"name": "noMeta",
|
|
1396
|
+
"allowNo": false,
|
|
1397
|
+
"type": "boolean"
|
|
1398
|
+
},
|
|
1399
|
+
"retry": {
|
|
1400
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
1401
|
+
"name": "retry",
|
|
1402
|
+
"default": 0,
|
|
1403
|
+
"hasDynamicHelp": false,
|
|
1404
|
+
"multiple": false,
|
|
1405
|
+
"type": "option"
|
|
1406
|
+
},
|
|
1407
|
+
"workspace": {
|
|
1408
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
1409
|
+
"name": "workspace",
|
|
1410
|
+
"hasDynamicHelp": false,
|
|
1411
|
+
"multiple": false,
|
|
1412
|
+
"type": "option"
|
|
1413
|
+
},
|
|
1414
|
+
"fields": {
|
|
1415
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
1416
|
+
"name": "fields",
|
|
1417
|
+
"default": "defaults",
|
|
1418
|
+
"hasDynamicHelp": false,
|
|
1419
|
+
"multiple": false,
|
|
1420
|
+
"type": "option"
|
|
1421
|
+
},
|
|
1422
|
+
"include": {
|
|
1423
|
+
"description": "Hydrate related entities in a single GraphQL round-trip (e.g. comments, labels). Available: comments, labels, attachments, subscribers, history.",
|
|
1424
|
+
"name": "include",
|
|
1425
|
+
"hasDynamicHelp": false,
|
|
1426
|
+
"multiple": true,
|
|
1427
|
+
"type": "option"
|
|
1428
|
+
}
|
|
1429
|
+
},
|
|
1430
|
+
"hasDynamicHelp": false,
|
|
1431
|
+
"hiddenAliases": [],
|
|
1432
|
+
"id": "issue:get",
|
|
1433
|
+
"pluginAlias": "linmux",
|
|
1434
|
+
"pluginName": "linmux",
|
|
1435
|
+
"pluginType": "core",
|
|
1436
|
+
"strict": true,
|
|
1437
|
+
"enableJsonFlag": true,
|
|
1438
|
+
"isESM": true,
|
|
1439
|
+
"relativePath": [
|
|
1440
|
+
"dist",
|
|
1441
|
+
"commands",
|
|
1442
|
+
"issue",
|
|
1443
|
+
"get.js"
|
|
1444
|
+
]
|
|
1445
|
+
},
|
|
1446
|
+
"issue:list": {
|
|
1447
|
+
"aliases": [],
|
|
1448
|
+
"args": {},
|
|
1449
|
+
"description": "List Linear issues, with --fields, --limit, --cursor, and Phase 1 filters.",
|
|
1450
|
+
"flags": {
|
|
1451
|
+
"json": {
|
|
1452
|
+
"description": "Format output as json.",
|
|
1453
|
+
"helpGroup": "GLOBAL",
|
|
1454
|
+
"name": "json",
|
|
1455
|
+
"allowNo": false,
|
|
1456
|
+
"type": "boolean"
|
|
1457
|
+
},
|
|
1458
|
+
"pretty": {
|
|
1459
|
+
"description": "Human-readable output (default is JSON)",
|
|
1460
|
+
"name": "pretty",
|
|
1461
|
+
"allowNo": false,
|
|
1462
|
+
"type": "boolean"
|
|
1463
|
+
},
|
|
1464
|
+
"quiet": {
|
|
1465
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
1466
|
+
"name": "quiet",
|
|
1467
|
+
"allowNo": false,
|
|
1468
|
+
"type": "boolean"
|
|
1469
|
+
},
|
|
1470
|
+
"noMeta": {
|
|
1471
|
+
"aliases": [
|
|
1472
|
+
"no-meta"
|
|
1473
|
+
],
|
|
1474
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
1475
|
+
"name": "noMeta",
|
|
1476
|
+
"allowNo": false,
|
|
1477
|
+
"type": "boolean"
|
|
1478
|
+
},
|
|
1479
|
+
"retry": {
|
|
1480
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
1481
|
+
"name": "retry",
|
|
1482
|
+
"default": 0,
|
|
1483
|
+
"hasDynamicHelp": false,
|
|
1484
|
+
"multiple": false,
|
|
1485
|
+
"type": "option"
|
|
1486
|
+
},
|
|
1487
|
+
"limit": {
|
|
1488
|
+
"description": "Page size (default 25, max 100)",
|
|
1489
|
+
"name": "limit",
|
|
1490
|
+
"default": 25,
|
|
1491
|
+
"hasDynamicHelp": false,
|
|
1492
|
+
"multiple": false,
|
|
1493
|
+
"type": "option"
|
|
1494
|
+
},
|
|
1495
|
+
"cursor": {
|
|
1496
|
+
"description": "Opaque cursor from a previous response's meta.pageInfo.endCursor",
|
|
1497
|
+
"name": "cursor",
|
|
1498
|
+
"hasDynamicHelp": false,
|
|
1499
|
+
"multiple": false,
|
|
1500
|
+
"type": "option"
|
|
1501
|
+
},
|
|
1502
|
+
"workspace": {
|
|
1503
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
1504
|
+
"name": "workspace",
|
|
1505
|
+
"hasDynamicHelp": false,
|
|
1506
|
+
"multiple": false,
|
|
1507
|
+
"type": "option"
|
|
1508
|
+
},
|
|
1509
|
+
"fields": {
|
|
1510
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
1511
|
+
"name": "fields",
|
|
1512
|
+
"default": "defaults",
|
|
1513
|
+
"hasDynamicHelp": false,
|
|
1514
|
+
"multiple": false,
|
|
1515
|
+
"type": "option"
|
|
1516
|
+
},
|
|
1517
|
+
"state": {
|
|
1518
|
+
"description": "Filter by workflow state name or ID",
|
|
1519
|
+
"name": "state",
|
|
1520
|
+
"hasDynamicHelp": false,
|
|
1521
|
+
"multiple": false,
|
|
1522
|
+
"type": "option"
|
|
1523
|
+
},
|
|
1524
|
+
"assignee": {
|
|
1525
|
+
"description": "Filter by assignee email, ID, or \"me\"",
|
|
1526
|
+
"name": "assignee",
|
|
1527
|
+
"hasDynamicHelp": false,
|
|
1528
|
+
"multiple": false,
|
|
1529
|
+
"type": "option"
|
|
1530
|
+
},
|
|
1531
|
+
"team": {
|
|
1532
|
+
"description": "Filter by team key, ID, or name",
|
|
1533
|
+
"name": "team",
|
|
1534
|
+
"hasDynamicHelp": false,
|
|
1535
|
+
"multiple": false,
|
|
1536
|
+
"type": "option"
|
|
1537
|
+
},
|
|
1538
|
+
"include": {
|
|
1539
|
+
"description": "Hydrate related entities in a single GraphQL round-trip (e.g. comments, labels). Available: comments, labels, attachments, subscribers, history.",
|
|
1540
|
+
"name": "include",
|
|
1541
|
+
"hasDynamicHelp": false,
|
|
1542
|
+
"multiple": true,
|
|
1543
|
+
"type": "option"
|
|
1544
|
+
}
|
|
1545
|
+
},
|
|
1546
|
+
"hasDynamicHelp": false,
|
|
1547
|
+
"hiddenAliases": [],
|
|
1548
|
+
"id": "issue:list",
|
|
1549
|
+
"pluginAlias": "linmux",
|
|
1550
|
+
"pluginName": "linmux",
|
|
1551
|
+
"pluginType": "core",
|
|
1552
|
+
"strict": true,
|
|
1553
|
+
"enableJsonFlag": true,
|
|
1554
|
+
"isESM": true,
|
|
1555
|
+
"relativePath": [
|
|
1556
|
+
"dist",
|
|
1557
|
+
"commands",
|
|
1558
|
+
"issue",
|
|
1559
|
+
"list.js"
|
|
1560
|
+
]
|
|
1561
|
+
},
|
|
1562
|
+
"issue:purge": {
|
|
1563
|
+
"aliases": [],
|
|
1564
|
+
"args": {
|
|
1565
|
+
"identifier": {
|
|
1566
|
+
"description": "Issue identifier (ENG-123) or UUID",
|
|
1567
|
+
"name": "identifier",
|
|
1568
|
+
"required": true
|
|
1569
|
+
}
|
|
1570
|
+
},
|
|
1571
|
+
"description": "PERMANENTLY delete a Linear issue. Irreversible. Requires --yes to confirm.",
|
|
1572
|
+
"flags": {
|
|
1573
|
+
"json": {
|
|
1574
|
+
"description": "Format output as json.",
|
|
1575
|
+
"helpGroup": "GLOBAL",
|
|
1576
|
+
"name": "json",
|
|
1577
|
+
"allowNo": false,
|
|
1578
|
+
"type": "boolean"
|
|
1579
|
+
},
|
|
1580
|
+
"pretty": {
|
|
1581
|
+
"description": "Human-readable output (default is JSON)",
|
|
1582
|
+
"name": "pretty",
|
|
1583
|
+
"allowNo": false,
|
|
1584
|
+
"type": "boolean"
|
|
1585
|
+
},
|
|
1586
|
+
"quiet": {
|
|
1587
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
1588
|
+
"name": "quiet",
|
|
1589
|
+
"allowNo": false,
|
|
1590
|
+
"type": "boolean"
|
|
1591
|
+
},
|
|
1592
|
+
"noMeta": {
|
|
1593
|
+
"aliases": [
|
|
1594
|
+
"no-meta"
|
|
1595
|
+
],
|
|
1596
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
1597
|
+
"name": "noMeta",
|
|
1598
|
+
"allowNo": false,
|
|
1599
|
+
"type": "boolean"
|
|
1600
|
+
},
|
|
1601
|
+
"retry": {
|
|
1602
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
1603
|
+
"name": "retry",
|
|
1604
|
+
"default": 0,
|
|
1605
|
+
"hasDynamicHelp": false,
|
|
1606
|
+
"multiple": false,
|
|
1607
|
+
"type": "option"
|
|
1608
|
+
},
|
|
1609
|
+
"workspace": {
|
|
1610
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
1611
|
+
"name": "workspace",
|
|
1612
|
+
"hasDynamicHelp": false,
|
|
1613
|
+
"multiple": false,
|
|
1614
|
+
"type": "option"
|
|
1615
|
+
},
|
|
1616
|
+
"allow-active-workspace-write": {
|
|
1617
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
1618
|
+
"name": "allow-active-workspace-write",
|
|
1619
|
+
"allowNo": false,
|
|
1620
|
+
"type": "boolean"
|
|
1621
|
+
},
|
|
1622
|
+
"yes": {
|
|
1623
|
+
"description": "Confirm permanent deletion (REQUIRED for purge)",
|
|
1624
|
+
"name": "yes",
|
|
1625
|
+
"allowNo": false,
|
|
1626
|
+
"type": "boolean"
|
|
1627
|
+
}
|
|
1628
|
+
},
|
|
1629
|
+
"hasDynamicHelp": false,
|
|
1630
|
+
"hiddenAliases": [],
|
|
1631
|
+
"id": "issue:purge",
|
|
1632
|
+
"pluginAlias": "linmux",
|
|
1633
|
+
"pluginName": "linmux",
|
|
1634
|
+
"pluginType": "core",
|
|
1635
|
+
"strict": true,
|
|
1636
|
+
"enableJsonFlag": true,
|
|
1637
|
+
"isESM": true,
|
|
1638
|
+
"relativePath": [
|
|
1639
|
+
"dist",
|
|
1640
|
+
"commands",
|
|
1641
|
+
"issue",
|
|
1642
|
+
"purge.js"
|
|
1643
|
+
]
|
|
1644
|
+
},
|
|
1645
|
+
"issue:search": {
|
|
1646
|
+
"aliases": [],
|
|
1647
|
+
"args": {
|
|
1648
|
+
"query": {
|
|
1649
|
+
"description": "Full-text search query",
|
|
1650
|
+
"name": "query",
|
|
1651
|
+
"required": true
|
|
1652
|
+
}
|
|
1653
|
+
},
|
|
1654
|
+
"description": "Full-text search Linear issues. Surfaces match snippets in metadata; supports the same filter flags as `issue list`.",
|
|
1655
|
+
"flags": {
|
|
1656
|
+
"json": {
|
|
1657
|
+
"description": "Format output as json.",
|
|
1658
|
+
"helpGroup": "GLOBAL",
|
|
1659
|
+
"name": "json",
|
|
1660
|
+
"allowNo": false,
|
|
1661
|
+
"type": "boolean"
|
|
1662
|
+
},
|
|
1663
|
+
"pretty": {
|
|
1664
|
+
"description": "Human-readable output (default is JSON)",
|
|
1665
|
+
"name": "pretty",
|
|
1666
|
+
"allowNo": false,
|
|
1667
|
+
"type": "boolean"
|
|
1668
|
+
},
|
|
1669
|
+
"quiet": {
|
|
1670
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
1671
|
+
"name": "quiet",
|
|
1672
|
+
"allowNo": false,
|
|
1673
|
+
"type": "boolean"
|
|
1674
|
+
},
|
|
1675
|
+
"noMeta": {
|
|
1676
|
+
"aliases": [
|
|
1677
|
+
"no-meta"
|
|
1678
|
+
],
|
|
1679
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
1680
|
+
"name": "noMeta",
|
|
1681
|
+
"allowNo": false,
|
|
1682
|
+
"type": "boolean"
|
|
1683
|
+
},
|
|
1684
|
+
"retry": {
|
|
1685
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
1686
|
+
"name": "retry",
|
|
1687
|
+
"default": 0,
|
|
1688
|
+
"hasDynamicHelp": false,
|
|
1689
|
+
"multiple": false,
|
|
1690
|
+
"type": "option"
|
|
1691
|
+
},
|
|
1692
|
+
"limit": {
|
|
1693
|
+
"description": "Page size (default 25, max 100)",
|
|
1694
|
+
"name": "limit",
|
|
1695
|
+
"default": 25,
|
|
1696
|
+
"hasDynamicHelp": false,
|
|
1697
|
+
"multiple": false,
|
|
1698
|
+
"type": "option"
|
|
1699
|
+
},
|
|
1700
|
+
"cursor": {
|
|
1701
|
+
"description": "Opaque cursor from a previous response's meta.pageInfo.endCursor",
|
|
1702
|
+
"name": "cursor",
|
|
1703
|
+
"hasDynamicHelp": false,
|
|
1704
|
+
"multiple": false,
|
|
1705
|
+
"type": "option"
|
|
1706
|
+
},
|
|
1707
|
+
"workspace": {
|
|
1708
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
1709
|
+
"name": "workspace",
|
|
1710
|
+
"hasDynamicHelp": false,
|
|
1711
|
+
"multiple": false,
|
|
1712
|
+
"type": "option"
|
|
1713
|
+
},
|
|
1714
|
+
"fields": {
|
|
1715
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
1716
|
+
"name": "fields",
|
|
1717
|
+
"default": "defaults",
|
|
1718
|
+
"hasDynamicHelp": false,
|
|
1719
|
+
"multiple": false,
|
|
1720
|
+
"type": "option"
|
|
1721
|
+
},
|
|
1722
|
+
"state": {
|
|
1723
|
+
"description": "Filter by workflow state name or ID",
|
|
1724
|
+
"name": "state",
|
|
1725
|
+
"hasDynamicHelp": false,
|
|
1726
|
+
"multiple": false,
|
|
1727
|
+
"type": "option"
|
|
1728
|
+
},
|
|
1729
|
+
"assignee": {
|
|
1730
|
+
"description": "Filter by assignee email, ID, or \"me\"",
|
|
1731
|
+
"name": "assignee",
|
|
1732
|
+
"hasDynamicHelp": false,
|
|
1733
|
+
"multiple": false,
|
|
1734
|
+
"type": "option"
|
|
1735
|
+
},
|
|
1736
|
+
"team": {
|
|
1737
|
+
"description": "Filter by team key, ID, or name",
|
|
1738
|
+
"name": "team",
|
|
1739
|
+
"hasDynamicHelp": false,
|
|
1740
|
+
"multiple": false,
|
|
1741
|
+
"type": "option"
|
|
1742
|
+
},
|
|
1743
|
+
"label": {
|
|
1744
|
+
"description": "Filter by label name or UUID",
|
|
1745
|
+
"name": "label",
|
|
1746
|
+
"hasDynamicHelp": false,
|
|
1747
|
+
"multiple": false,
|
|
1748
|
+
"type": "option"
|
|
1749
|
+
},
|
|
1750
|
+
"project": {
|
|
1751
|
+
"description": "Filter by project name or UUID",
|
|
1752
|
+
"name": "project",
|
|
1753
|
+
"hasDynamicHelp": false,
|
|
1754
|
+
"multiple": false,
|
|
1755
|
+
"type": "option"
|
|
1756
|
+
},
|
|
1757
|
+
"cycle": {
|
|
1758
|
+
"description": "Filter by cycle UUID",
|
|
1759
|
+
"name": "cycle",
|
|
1760
|
+
"hasDynamicHelp": false,
|
|
1761
|
+
"multiple": false,
|
|
1762
|
+
"type": "option"
|
|
1763
|
+
},
|
|
1764
|
+
"no-snippet": {
|
|
1765
|
+
"description": "Drop the snippet field from each result (token tightening)",
|
|
1766
|
+
"name": "no-snippet",
|
|
1767
|
+
"allowNo": false,
|
|
1768
|
+
"type": "boolean"
|
|
1769
|
+
},
|
|
1770
|
+
"include-archived": {
|
|
1771
|
+
"description": "Include archived issues in search results (default false)",
|
|
1772
|
+
"name": "include-archived",
|
|
1773
|
+
"allowNo": false,
|
|
1774
|
+
"type": "boolean"
|
|
1775
|
+
}
|
|
1776
|
+
},
|
|
1777
|
+
"hasDynamicHelp": false,
|
|
1778
|
+
"hiddenAliases": [],
|
|
1779
|
+
"id": "issue:search",
|
|
1780
|
+
"pluginAlias": "linmux",
|
|
1781
|
+
"pluginName": "linmux",
|
|
1782
|
+
"pluginType": "core",
|
|
1783
|
+
"strict": true,
|
|
1784
|
+
"enableJsonFlag": true,
|
|
1785
|
+
"isESM": true,
|
|
1786
|
+
"relativePath": [
|
|
1787
|
+
"dist",
|
|
1788
|
+
"commands",
|
|
1789
|
+
"issue",
|
|
1790
|
+
"search.js"
|
|
1791
|
+
]
|
|
1792
|
+
},
|
|
1793
|
+
"issue:transition": {
|
|
1794
|
+
"aliases": [],
|
|
1795
|
+
"args": {
|
|
1796
|
+
"identifier": {
|
|
1797
|
+
"description": "Issue identifier (ENG-123) or UUID",
|
|
1798
|
+
"name": "identifier",
|
|
1799
|
+
"required": true
|
|
1800
|
+
},
|
|
1801
|
+
"state": {
|
|
1802
|
+
"description": "Workflow state name (e.g. \"In Progress\") or UUID",
|
|
1803
|
+
"name": "state",
|
|
1804
|
+
"required": true
|
|
1805
|
+
}
|
|
1806
|
+
},
|
|
1807
|
+
"description": "Transition a Linear issue to a different workflow state by name or UUID.",
|
|
1808
|
+
"flags": {
|
|
1809
|
+
"json": {
|
|
1810
|
+
"description": "Format output as json.",
|
|
1811
|
+
"helpGroup": "GLOBAL",
|
|
1812
|
+
"name": "json",
|
|
1813
|
+
"allowNo": false,
|
|
1814
|
+
"type": "boolean"
|
|
1815
|
+
},
|
|
1816
|
+
"pretty": {
|
|
1817
|
+
"description": "Human-readable output (default is JSON)",
|
|
1818
|
+
"name": "pretty",
|
|
1819
|
+
"allowNo": false,
|
|
1820
|
+
"type": "boolean"
|
|
1821
|
+
},
|
|
1822
|
+
"quiet": {
|
|
1823
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
1824
|
+
"name": "quiet",
|
|
1825
|
+
"allowNo": false,
|
|
1826
|
+
"type": "boolean"
|
|
1827
|
+
},
|
|
1828
|
+
"noMeta": {
|
|
1829
|
+
"aliases": [
|
|
1830
|
+
"no-meta"
|
|
1831
|
+
],
|
|
1832
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
1833
|
+
"name": "noMeta",
|
|
1834
|
+
"allowNo": false,
|
|
1835
|
+
"type": "boolean"
|
|
1836
|
+
},
|
|
1837
|
+
"retry": {
|
|
1838
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
1839
|
+
"name": "retry",
|
|
1840
|
+
"default": 0,
|
|
1841
|
+
"hasDynamicHelp": false,
|
|
1842
|
+
"multiple": false,
|
|
1843
|
+
"type": "option"
|
|
1844
|
+
},
|
|
1845
|
+
"workspace": {
|
|
1846
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
1847
|
+
"name": "workspace",
|
|
1848
|
+
"hasDynamicHelp": false,
|
|
1849
|
+
"multiple": false,
|
|
1850
|
+
"type": "option"
|
|
1851
|
+
},
|
|
1852
|
+
"allow-active-workspace-write": {
|
|
1853
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
1854
|
+
"name": "allow-active-workspace-write",
|
|
1855
|
+
"allowNo": false,
|
|
1856
|
+
"type": "boolean"
|
|
1857
|
+
},
|
|
1858
|
+
"fields": {
|
|
1859
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
1860
|
+
"name": "fields",
|
|
1861
|
+
"default": "defaults",
|
|
1862
|
+
"hasDynamicHelp": false,
|
|
1863
|
+
"multiple": false,
|
|
1864
|
+
"type": "option"
|
|
1865
|
+
}
|
|
1866
|
+
},
|
|
1867
|
+
"hasDynamicHelp": false,
|
|
1868
|
+
"hiddenAliases": [],
|
|
1869
|
+
"id": "issue:transition",
|
|
1870
|
+
"pluginAlias": "linmux",
|
|
1871
|
+
"pluginName": "linmux",
|
|
1872
|
+
"pluginType": "core",
|
|
1873
|
+
"strict": true,
|
|
1874
|
+
"enableJsonFlag": true,
|
|
1875
|
+
"isESM": true,
|
|
1876
|
+
"relativePath": [
|
|
1877
|
+
"dist",
|
|
1878
|
+
"commands",
|
|
1879
|
+
"issue",
|
|
1880
|
+
"transition.js"
|
|
1881
|
+
]
|
|
1882
|
+
},
|
|
1883
|
+
"issue:trash": {
|
|
1884
|
+
"aliases": [],
|
|
1885
|
+
"args": {
|
|
1886
|
+
"identifier": {
|
|
1887
|
+
"description": "Issue identifier (ENG-123) or UUID",
|
|
1888
|
+
"name": "identifier",
|
|
1889
|
+
"required": true
|
|
1890
|
+
}
|
|
1891
|
+
},
|
|
1892
|
+
"description": "Trash a Linear issue (soft delete, recoverable for ~30 days via the Linear UI).",
|
|
1893
|
+
"flags": {
|
|
1894
|
+
"json": {
|
|
1895
|
+
"description": "Format output as json.",
|
|
1896
|
+
"helpGroup": "GLOBAL",
|
|
1897
|
+
"name": "json",
|
|
1898
|
+
"allowNo": false,
|
|
1899
|
+
"type": "boolean"
|
|
1900
|
+
},
|
|
1901
|
+
"pretty": {
|
|
1902
|
+
"description": "Human-readable output (default is JSON)",
|
|
1903
|
+
"name": "pretty",
|
|
1904
|
+
"allowNo": false,
|
|
1905
|
+
"type": "boolean"
|
|
1906
|
+
},
|
|
1907
|
+
"quiet": {
|
|
1908
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
1909
|
+
"name": "quiet",
|
|
1910
|
+
"allowNo": false,
|
|
1911
|
+
"type": "boolean"
|
|
1912
|
+
},
|
|
1913
|
+
"noMeta": {
|
|
1914
|
+
"aliases": [
|
|
1915
|
+
"no-meta"
|
|
1916
|
+
],
|
|
1917
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
1918
|
+
"name": "noMeta",
|
|
1919
|
+
"allowNo": false,
|
|
1920
|
+
"type": "boolean"
|
|
1921
|
+
},
|
|
1922
|
+
"retry": {
|
|
1923
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
1924
|
+
"name": "retry",
|
|
1925
|
+
"default": 0,
|
|
1926
|
+
"hasDynamicHelp": false,
|
|
1927
|
+
"multiple": false,
|
|
1928
|
+
"type": "option"
|
|
1929
|
+
},
|
|
1930
|
+
"workspace": {
|
|
1931
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
1932
|
+
"name": "workspace",
|
|
1933
|
+
"hasDynamicHelp": false,
|
|
1934
|
+
"multiple": false,
|
|
1935
|
+
"type": "option"
|
|
1936
|
+
},
|
|
1937
|
+
"allow-active-workspace-write": {
|
|
1938
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
1939
|
+
"name": "allow-active-workspace-write",
|
|
1940
|
+
"allowNo": false,
|
|
1941
|
+
"type": "boolean"
|
|
1942
|
+
}
|
|
1943
|
+
},
|
|
1944
|
+
"hasDynamicHelp": false,
|
|
1945
|
+
"hiddenAliases": [],
|
|
1946
|
+
"id": "issue:trash",
|
|
1947
|
+
"pluginAlias": "linmux",
|
|
1948
|
+
"pluginName": "linmux",
|
|
1949
|
+
"pluginType": "core",
|
|
1950
|
+
"strict": true,
|
|
1951
|
+
"enableJsonFlag": true,
|
|
1952
|
+
"isESM": true,
|
|
1953
|
+
"relativePath": [
|
|
1954
|
+
"dist",
|
|
1955
|
+
"commands",
|
|
1956
|
+
"issue",
|
|
1957
|
+
"trash.js"
|
|
1958
|
+
]
|
|
1959
|
+
},
|
|
1960
|
+
"issue:update": {
|
|
1961
|
+
"aliases": [],
|
|
1962
|
+
"args": {
|
|
1963
|
+
"identifier": {
|
|
1964
|
+
"description": "Issue identifier (ENG-123) or UUID",
|
|
1965
|
+
"name": "identifier",
|
|
1966
|
+
"required": true
|
|
1967
|
+
}
|
|
1968
|
+
},
|
|
1969
|
+
"description": "Update a Linear issue. Three label modes co-exist: --labels (replace), --add-label (additive), --remove-label (subtractive). At least one field flag is required.",
|
|
1970
|
+
"flags": {
|
|
1971
|
+
"json": {
|
|
1972
|
+
"description": "Format output as json.",
|
|
1973
|
+
"helpGroup": "GLOBAL",
|
|
1974
|
+
"name": "json",
|
|
1975
|
+
"allowNo": false,
|
|
1976
|
+
"type": "boolean"
|
|
1977
|
+
},
|
|
1978
|
+
"pretty": {
|
|
1979
|
+
"description": "Human-readable output (default is JSON)",
|
|
1980
|
+
"name": "pretty",
|
|
1981
|
+
"allowNo": false,
|
|
1982
|
+
"type": "boolean"
|
|
1983
|
+
},
|
|
1984
|
+
"quiet": {
|
|
1985
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
1986
|
+
"name": "quiet",
|
|
1987
|
+
"allowNo": false,
|
|
1988
|
+
"type": "boolean"
|
|
1989
|
+
},
|
|
1990
|
+
"noMeta": {
|
|
1991
|
+
"aliases": [
|
|
1992
|
+
"no-meta"
|
|
1993
|
+
],
|
|
1994
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
1995
|
+
"name": "noMeta",
|
|
1996
|
+
"allowNo": false,
|
|
1997
|
+
"type": "boolean"
|
|
1998
|
+
},
|
|
1999
|
+
"retry": {
|
|
2000
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
2001
|
+
"name": "retry",
|
|
2002
|
+
"default": 0,
|
|
2003
|
+
"hasDynamicHelp": false,
|
|
2004
|
+
"multiple": false,
|
|
2005
|
+
"type": "option"
|
|
2006
|
+
},
|
|
2007
|
+
"workspace": {
|
|
2008
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
2009
|
+
"name": "workspace",
|
|
2010
|
+
"hasDynamicHelp": false,
|
|
2011
|
+
"multiple": false,
|
|
2012
|
+
"type": "option"
|
|
2013
|
+
},
|
|
2014
|
+
"allow-active-workspace-write": {
|
|
2015
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
2016
|
+
"name": "allow-active-workspace-write",
|
|
2017
|
+
"allowNo": false,
|
|
2018
|
+
"type": "boolean"
|
|
2019
|
+
},
|
|
2020
|
+
"fields": {
|
|
2021
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
2022
|
+
"name": "fields",
|
|
2023
|
+
"default": "defaults",
|
|
2024
|
+
"hasDynamicHelp": false,
|
|
2025
|
+
"multiple": false,
|
|
2026
|
+
"type": "option"
|
|
2027
|
+
},
|
|
2028
|
+
"title": {
|
|
2029
|
+
"description": "New issue title",
|
|
2030
|
+
"name": "title",
|
|
2031
|
+
"hasDynamicHelp": false,
|
|
2032
|
+
"multiple": false,
|
|
2033
|
+
"type": "option"
|
|
2034
|
+
},
|
|
2035
|
+
"description": {
|
|
2036
|
+
"description": "New issue description (markdown). Pass \"\" to clear.",
|
|
2037
|
+
"name": "description",
|
|
2038
|
+
"hasDynamicHelp": false,
|
|
2039
|
+
"multiple": false,
|
|
2040
|
+
"type": "option"
|
|
2041
|
+
},
|
|
2042
|
+
"state": {
|
|
2043
|
+
"description": "Workflow state name (e.g. \"In Progress\") or UUID",
|
|
2044
|
+
"name": "state",
|
|
2045
|
+
"hasDynamicHelp": false,
|
|
2046
|
+
"multiple": false,
|
|
2047
|
+
"type": "option"
|
|
2048
|
+
},
|
|
2049
|
+
"assignee": {
|
|
2050
|
+
"description": "\"me\", email, name, or user UUID",
|
|
2051
|
+
"name": "assignee",
|
|
2052
|
+
"hasDynamicHelp": false,
|
|
2053
|
+
"multiple": false,
|
|
2054
|
+
"type": "option"
|
|
2055
|
+
},
|
|
2056
|
+
"labels": {
|
|
2057
|
+
"description": "Comma-separated label names or UUIDs (REPLACE mode -- maps to labelIds)",
|
|
2058
|
+
"name": "labels",
|
|
2059
|
+
"hasDynamicHelp": false,
|
|
2060
|
+
"multiple": false,
|
|
2061
|
+
"type": "option"
|
|
2062
|
+
},
|
|
2063
|
+
"add-label": {
|
|
2064
|
+
"description": "Label name or UUID to add (ADD mode -- repeatable; maps to addedLabelIds)",
|
|
2065
|
+
"name": "add-label",
|
|
2066
|
+
"hasDynamicHelp": false,
|
|
2067
|
+
"multiple": true,
|
|
2068
|
+
"type": "option"
|
|
2069
|
+
},
|
|
2070
|
+
"remove-label": {
|
|
2071
|
+
"description": "Label name or UUID to remove (REMOVE mode -- repeatable; maps to removedLabelIds)",
|
|
2072
|
+
"name": "remove-label",
|
|
2073
|
+
"hasDynamicHelp": false,
|
|
2074
|
+
"multiple": true,
|
|
2075
|
+
"type": "option"
|
|
2076
|
+
},
|
|
2077
|
+
"project": {
|
|
2078
|
+
"description": "Project name or UUID",
|
|
2079
|
+
"name": "project",
|
|
2080
|
+
"hasDynamicHelp": false,
|
|
2081
|
+
"multiple": false,
|
|
2082
|
+
"type": "option"
|
|
2083
|
+
},
|
|
2084
|
+
"cycle": {
|
|
2085
|
+
"description": "Cycle ref (current|next|previous|+N|-N|UUID|name)",
|
|
2086
|
+
"name": "cycle",
|
|
2087
|
+
"hasDynamicHelp": false,
|
|
2088
|
+
"multiple": false,
|
|
2089
|
+
"type": "option"
|
|
2090
|
+
},
|
|
2091
|
+
"priority": {
|
|
2092
|
+
"description": "Priority (0=no priority, 1=urgent, 2=high, 3=medium, 4=low)",
|
|
2093
|
+
"name": "priority",
|
|
2094
|
+
"hasDynamicHelp": false,
|
|
2095
|
+
"multiple": false,
|
|
2096
|
+
"type": "option"
|
|
2097
|
+
}
|
|
2098
|
+
},
|
|
2099
|
+
"hasDynamicHelp": false,
|
|
2100
|
+
"hiddenAliases": [],
|
|
2101
|
+
"id": "issue:update",
|
|
2102
|
+
"pluginAlias": "linmux",
|
|
2103
|
+
"pluginName": "linmux",
|
|
2104
|
+
"pluginType": "core",
|
|
2105
|
+
"strict": true,
|
|
2106
|
+
"enableJsonFlag": true,
|
|
2107
|
+
"isESM": true,
|
|
2108
|
+
"relativePath": [
|
|
2109
|
+
"dist",
|
|
2110
|
+
"commands",
|
|
2111
|
+
"issue",
|
|
2112
|
+
"update.js"
|
|
2113
|
+
]
|
|
2114
|
+
},
|
|
2115
|
+
"label:create": {
|
|
2116
|
+
"aliases": [],
|
|
2117
|
+
"args": {},
|
|
2118
|
+
"description": "Create a Linear issue label scoped to a team. --name + --team required.",
|
|
2119
|
+
"flags": {
|
|
2120
|
+
"json": {
|
|
2121
|
+
"description": "Format output as json.",
|
|
2122
|
+
"helpGroup": "GLOBAL",
|
|
2123
|
+
"name": "json",
|
|
2124
|
+
"allowNo": false,
|
|
2125
|
+
"type": "boolean"
|
|
2126
|
+
},
|
|
2127
|
+
"pretty": {
|
|
2128
|
+
"description": "Human-readable output (default is JSON)",
|
|
2129
|
+
"name": "pretty",
|
|
2130
|
+
"allowNo": false,
|
|
2131
|
+
"type": "boolean"
|
|
2132
|
+
},
|
|
2133
|
+
"quiet": {
|
|
2134
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
2135
|
+
"name": "quiet",
|
|
2136
|
+
"allowNo": false,
|
|
2137
|
+
"type": "boolean"
|
|
2138
|
+
},
|
|
2139
|
+
"noMeta": {
|
|
2140
|
+
"aliases": [
|
|
2141
|
+
"no-meta"
|
|
2142
|
+
],
|
|
2143
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
2144
|
+
"name": "noMeta",
|
|
2145
|
+
"allowNo": false,
|
|
2146
|
+
"type": "boolean"
|
|
2147
|
+
},
|
|
2148
|
+
"retry": {
|
|
2149
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
2150
|
+
"name": "retry",
|
|
2151
|
+
"default": 0,
|
|
2152
|
+
"hasDynamicHelp": false,
|
|
2153
|
+
"multiple": false,
|
|
2154
|
+
"type": "option"
|
|
2155
|
+
},
|
|
2156
|
+
"workspace": {
|
|
2157
|
+
"description": "Workspace name (required for write unless --allow-active-workspace-write)",
|
|
2158
|
+
"name": "workspace",
|
|
2159
|
+
"hasDynamicHelp": false,
|
|
2160
|
+
"multiple": false,
|
|
2161
|
+
"type": "option"
|
|
2162
|
+
},
|
|
2163
|
+
"allow-active-workspace-write": {
|
|
2164
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
2165
|
+
"name": "allow-active-workspace-write",
|
|
2166
|
+
"allowNo": false,
|
|
2167
|
+
"type": "boolean"
|
|
2168
|
+
},
|
|
2169
|
+
"fields": {
|
|
2170
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
2171
|
+
"name": "fields",
|
|
2172
|
+
"default": "defaults",
|
|
2173
|
+
"hasDynamicHelp": false,
|
|
2174
|
+
"multiple": false,
|
|
2175
|
+
"type": "option"
|
|
2176
|
+
},
|
|
2177
|
+
"name": {
|
|
2178
|
+
"description": "Label name",
|
|
2179
|
+
"name": "name",
|
|
2180
|
+
"required": true,
|
|
2181
|
+
"hasDynamicHelp": false,
|
|
2182
|
+
"multiple": false,
|
|
2183
|
+
"type": "option"
|
|
2184
|
+
},
|
|
2185
|
+
"team": {
|
|
2186
|
+
"description": "Team key (e.g. ENG), UUID, or name",
|
|
2187
|
+
"name": "team",
|
|
2188
|
+
"required": true,
|
|
2189
|
+
"hasDynamicHelp": false,
|
|
2190
|
+
"multiple": false,
|
|
2191
|
+
"type": "option"
|
|
2192
|
+
},
|
|
2193
|
+
"color": {
|
|
2194
|
+
"description": "Label color (hex, e.g. #ff0000)",
|
|
2195
|
+
"name": "color",
|
|
2196
|
+
"hasDynamicHelp": false,
|
|
2197
|
+
"multiple": false,
|
|
2198
|
+
"type": "option"
|
|
2199
|
+
},
|
|
2200
|
+
"description": {
|
|
2201
|
+
"description": "Label description",
|
|
2202
|
+
"name": "description",
|
|
2203
|
+
"hasDynamicHelp": false,
|
|
2204
|
+
"multiple": false,
|
|
2205
|
+
"type": "option"
|
|
2206
|
+
}
|
|
2207
|
+
},
|
|
2208
|
+
"hasDynamicHelp": false,
|
|
2209
|
+
"hiddenAliases": [],
|
|
2210
|
+
"id": "label:create",
|
|
2211
|
+
"pluginAlias": "linmux",
|
|
2212
|
+
"pluginName": "linmux",
|
|
2213
|
+
"pluginType": "core",
|
|
2214
|
+
"strict": true,
|
|
2215
|
+
"enableJsonFlag": true,
|
|
2216
|
+
"isESM": true,
|
|
2217
|
+
"relativePath": [
|
|
2218
|
+
"dist",
|
|
2219
|
+
"commands",
|
|
2220
|
+
"label",
|
|
2221
|
+
"create.js"
|
|
2222
|
+
]
|
|
2223
|
+
},
|
|
2224
|
+
"label:list": {
|
|
2225
|
+
"aliases": [],
|
|
2226
|
+
"args": {},
|
|
2227
|
+
"description": "List Linear issue labels. Pass --team <UUID|key|name> to scope to one team.",
|
|
2228
|
+
"flags": {
|
|
2229
|
+
"json": {
|
|
2230
|
+
"description": "Format output as json.",
|
|
2231
|
+
"helpGroup": "GLOBAL",
|
|
2232
|
+
"name": "json",
|
|
2233
|
+
"allowNo": false,
|
|
2234
|
+
"type": "boolean"
|
|
2235
|
+
},
|
|
2236
|
+
"pretty": {
|
|
2237
|
+
"description": "Human-readable output (default is JSON)",
|
|
2238
|
+
"name": "pretty",
|
|
2239
|
+
"allowNo": false,
|
|
2240
|
+
"type": "boolean"
|
|
2241
|
+
},
|
|
2242
|
+
"quiet": {
|
|
2243
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
2244
|
+
"name": "quiet",
|
|
2245
|
+
"allowNo": false,
|
|
2246
|
+
"type": "boolean"
|
|
2247
|
+
},
|
|
2248
|
+
"noMeta": {
|
|
2249
|
+
"aliases": [
|
|
2250
|
+
"no-meta"
|
|
2251
|
+
],
|
|
2252
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
2253
|
+
"name": "noMeta",
|
|
2254
|
+
"allowNo": false,
|
|
2255
|
+
"type": "boolean"
|
|
2256
|
+
},
|
|
2257
|
+
"retry": {
|
|
2258
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
2259
|
+
"name": "retry",
|
|
2260
|
+
"default": 0,
|
|
2261
|
+
"hasDynamicHelp": false,
|
|
2262
|
+
"multiple": false,
|
|
2263
|
+
"type": "option"
|
|
2264
|
+
},
|
|
2265
|
+
"limit": {
|
|
2266
|
+
"description": "Page size (default 25, max 100)",
|
|
2267
|
+
"name": "limit",
|
|
2268
|
+
"default": 25,
|
|
2269
|
+
"hasDynamicHelp": false,
|
|
2270
|
+
"multiple": false,
|
|
2271
|
+
"type": "option"
|
|
2272
|
+
},
|
|
2273
|
+
"cursor": {
|
|
2274
|
+
"description": "Opaque cursor from a previous response's meta.pageInfo.endCursor",
|
|
2275
|
+
"name": "cursor",
|
|
2276
|
+
"hasDynamicHelp": false,
|
|
2277
|
+
"multiple": false,
|
|
2278
|
+
"type": "option"
|
|
2279
|
+
},
|
|
2280
|
+
"workspace": {
|
|
2281
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
2282
|
+
"name": "workspace",
|
|
2283
|
+
"hasDynamicHelp": false,
|
|
2284
|
+
"multiple": false,
|
|
2285
|
+
"type": "option"
|
|
2286
|
+
},
|
|
2287
|
+
"fields": {
|
|
2288
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
2289
|
+
"name": "fields",
|
|
2290
|
+
"default": "defaults",
|
|
2291
|
+
"hasDynamicHelp": false,
|
|
2292
|
+
"multiple": false,
|
|
2293
|
+
"type": "option"
|
|
2294
|
+
},
|
|
2295
|
+
"team": {
|
|
2296
|
+
"description": "Optional team filter (UUID, key, or name)",
|
|
2297
|
+
"name": "team",
|
|
2298
|
+
"hasDynamicHelp": false,
|
|
2299
|
+
"multiple": false,
|
|
2300
|
+
"type": "option"
|
|
2301
|
+
}
|
|
2302
|
+
},
|
|
2303
|
+
"hasDynamicHelp": false,
|
|
2304
|
+
"hiddenAliases": [],
|
|
2305
|
+
"id": "label:list",
|
|
2306
|
+
"pluginAlias": "linmux",
|
|
2307
|
+
"pluginName": "linmux",
|
|
2308
|
+
"pluginType": "core",
|
|
2309
|
+
"strict": true,
|
|
2310
|
+
"enableJsonFlag": true,
|
|
2311
|
+
"isESM": true,
|
|
2312
|
+
"relativePath": [
|
|
2313
|
+
"dist",
|
|
2314
|
+
"commands",
|
|
2315
|
+
"label",
|
|
2316
|
+
"list.js"
|
|
2317
|
+
]
|
|
2318
|
+
},
|
|
2319
|
+
"project:create": {
|
|
2320
|
+
"aliases": [],
|
|
2321
|
+
"args": {},
|
|
2322
|
+
"description": "Create a Linear project (--name + --teams required; --description, --state, --lead, --start-date, --target-date optional).",
|
|
2323
|
+
"flags": {
|
|
2324
|
+
"json": {
|
|
2325
|
+
"description": "Format output as json.",
|
|
2326
|
+
"helpGroup": "GLOBAL",
|
|
2327
|
+
"name": "json",
|
|
2328
|
+
"allowNo": false,
|
|
2329
|
+
"type": "boolean"
|
|
2330
|
+
},
|
|
2331
|
+
"pretty": {
|
|
2332
|
+
"description": "Human-readable output (default is JSON)",
|
|
2333
|
+
"name": "pretty",
|
|
2334
|
+
"allowNo": false,
|
|
2335
|
+
"type": "boolean"
|
|
2336
|
+
},
|
|
2337
|
+
"quiet": {
|
|
2338
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
2339
|
+
"name": "quiet",
|
|
2340
|
+
"allowNo": false,
|
|
2341
|
+
"type": "boolean"
|
|
2342
|
+
},
|
|
2343
|
+
"noMeta": {
|
|
2344
|
+
"aliases": [
|
|
2345
|
+
"no-meta"
|
|
2346
|
+
],
|
|
2347
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
2348
|
+
"name": "noMeta",
|
|
2349
|
+
"allowNo": false,
|
|
2350
|
+
"type": "boolean"
|
|
2351
|
+
},
|
|
2352
|
+
"retry": {
|
|
2353
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
2354
|
+
"name": "retry",
|
|
2355
|
+
"default": 0,
|
|
2356
|
+
"hasDynamicHelp": false,
|
|
2357
|
+
"multiple": false,
|
|
2358
|
+
"type": "option"
|
|
2359
|
+
},
|
|
2360
|
+
"workspace": {
|
|
2361
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
2362
|
+
"name": "workspace",
|
|
2363
|
+
"hasDynamicHelp": false,
|
|
2364
|
+
"multiple": false,
|
|
2365
|
+
"type": "option"
|
|
2366
|
+
},
|
|
2367
|
+
"allow-active-workspace-write": {
|
|
2368
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
2369
|
+
"name": "allow-active-workspace-write",
|
|
2370
|
+
"allowNo": false,
|
|
2371
|
+
"type": "boolean"
|
|
2372
|
+
},
|
|
2373
|
+
"fields": {
|
|
2374
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
2375
|
+
"name": "fields",
|
|
2376
|
+
"default": "defaults",
|
|
2377
|
+
"hasDynamicHelp": false,
|
|
2378
|
+
"multiple": false,
|
|
2379
|
+
"type": "option"
|
|
2380
|
+
},
|
|
2381
|
+
"name": {
|
|
2382
|
+
"description": "Project name (required)",
|
|
2383
|
+
"name": "name",
|
|
2384
|
+
"required": true,
|
|
2385
|
+
"hasDynamicHelp": false,
|
|
2386
|
+
"multiple": false,
|
|
2387
|
+
"type": "option"
|
|
2388
|
+
},
|
|
2389
|
+
"teams": {
|
|
2390
|
+
"description": "Comma-separated team keys (ENG), names (Engineering), or UUIDs; at least one required",
|
|
2391
|
+
"name": "teams",
|
|
2392
|
+
"required": true,
|
|
2393
|
+
"hasDynamicHelp": false,
|
|
2394
|
+
"multiple": false,
|
|
2395
|
+
"type": "option"
|
|
2396
|
+
},
|
|
2397
|
+
"description": {
|
|
2398
|
+
"description": "Project description (markdown)",
|
|
2399
|
+
"name": "description",
|
|
2400
|
+
"hasDynamicHelp": false,
|
|
2401
|
+
"multiple": false,
|
|
2402
|
+
"type": "option"
|
|
2403
|
+
},
|
|
2404
|
+
"state": {
|
|
2405
|
+
"description": "Project state ('planned' | 'started' | 'paused' | 'completed' | 'canceled' | 'backlog')",
|
|
2406
|
+
"name": "state",
|
|
2407
|
+
"hasDynamicHelp": false,
|
|
2408
|
+
"multiple": false,
|
|
2409
|
+
"type": "option"
|
|
2410
|
+
},
|
|
2411
|
+
"lead": {
|
|
2412
|
+
"description": "\"me\", email, name, or user UUID",
|
|
2413
|
+
"name": "lead",
|
|
2414
|
+
"hasDynamicHelp": false,
|
|
2415
|
+
"multiple": false,
|
|
2416
|
+
"type": "option"
|
|
2417
|
+
},
|
|
2418
|
+
"start-date": {
|
|
2419
|
+
"description": "Project start date (ISO 8601, e.g. 2026-10-01)",
|
|
2420
|
+
"name": "start-date",
|
|
2421
|
+
"hasDynamicHelp": false,
|
|
2422
|
+
"multiple": false,
|
|
2423
|
+
"type": "option"
|
|
2424
|
+
},
|
|
2425
|
+
"target-date": {
|
|
2426
|
+
"description": "Project target date (ISO 8601, e.g. 2026-12-31)",
|
|
2427
|
+
"name": "target-date",
|
|
2428
|
+
"hasDynamicHelp": false,
|
|
2429
|
+
"multiple": false,
|
|
2430
|
+
"type": "option"
|
|
2431
|
+
}
|
|
2432
|
+
},
|
|
2433
|
+
"hasDynamicHelp": false,
|
|
2434
|
+
"hiddenAliases": [],
|
|
2435
|
+
"id": "project:create",
|
|
2436
|
+
"pluginAlias": "linmux",
|
|
2437
|
+
"pluginName": "linmux",
|
|
2438
|
+
"pluginType": "core",
|
|
2439
|
+
"strict": true,
|
|
2440
|
+
"enableJsonFlag": true,
|
|
2441
|
+
"isESM": true,
|
|
2442
|
+
"relativePath": [
|
|
2443
|
+
"dist",
|
|
2444
|
+
"commands",
|
|
2445
|
+
"project",
|
|
2446
|
+
"create.js"
|
|
2447
|
+
]
|
|
2448
|
+
},
|
|
2449
|
+
"project:get": {
|
|
2450
|
+
"aliases": [],
|
|
2451
|
+
"args": {
|
|
2452
|
+
"ref": {
|
|
2453
|
+
"description": "Project name or UUID",
|
|
2454
|
+
"name": "ref",
|
|
2455
|
+
"required": true
|
|
2456
|
+
}
|
|
2457
|
+
},
|
|
2458
|
+
"description": "Get a single Linear project by name or UUID.",
|
|
2459
|
+
"flags": {
|
|
2460
|
+
"json": {
|
|
2461
|
+
"description": "Format output as json.",
|
|
2462
|
+
"helpGroup": "GLOBAL",
|
|
2463
|
+
"name": "json",
|
|
2464
|
+
"allowNo": false,
|
|
2465
|
+
"type": "boolean"
|
|
2466
|
+
},
|
|
2467
|
+
"pretty": {
|
|
2468
|
+
"description": "Human-readable output (default is JSON)",
|
|
2469
|
+
"name": "pretty",
|
|
2470
|
+
"allowNo": false,
|
|
2471
|
+
"type": "boolean"
|
|
2472
|
+
},
|
|
2473
|
+
"quiet": {
|
|
2474
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
2475
|
+
"name": "quiet",
|
|
2476
|
+
"allowNo": false,
|
|
2477
|
+
"type": "boolean"
|
|
2478
|
+
},
|
|
2479
|
+
"noMeta": {
|
|
2480
|
+
"aliases": [
|
|
2481
|
+
"no-meta"
|
|
2482
|
+
],
|
|
2483
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
2484
|
+
"name": "noMeta",
|
|
2485
|
+
"allowNo": false,
|
|
2486
|
+
"type": "boolean"
|
|
2487
|
+
},
|
|
2488
|
+
"retry": {
|
|
2489
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
2490
|
+
"name": "retry",
|
|
2491
|
+
"default": 0,
|
|
2492
|
+
"hasDynamicHelp": false,
|
|
2493
|
+
"multiple": false,
|
|
2494
|
+
"type": "option"
|
|
2495
|
+
},
|
|
2496
|
+
"workspace": {
|
|
2497
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
2498
|
+
"name": "workspace",
|
|
2499
|
+
"hasDynamicHelp": false,
|
|
2500
|
+
"multiple": false,
|
|
2501
|
+
"type": "option"
|
|
2502
|
+
},
|
|
2503
|
+
"fields": {
|
|
2504
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
2505
|
+
"name": "fields",
|
|
2506
|
+
"default": "defaults",
|
|
2507
|
+
"hasDynamicHelp": false,
|
|
2508
|
+
"multiple": false,
|
|
2509
|
+
"type": "option"
|
|
2510
|
+
},
|
|
2511
|
+
"include": {
|
|
2512
|
+
"description": "Hydrate related entities in a single GraphQL round-trip (e.g. members, teams). Available: members, teams, projectMilestones, documents.",
|
|
2513
|
+
"name": "include",
|
|
2514
|
+
"hasDynamicHelp": false,
|
|
2515
|
+
"multiple": true,
|
|
2516
|
+
"type": "option"
|
|
2517
|
+
}
|
|
2518
|
+
},
|
|
2519
|
+
"hasDynamicHelp": false,
|
|
2520
|
+
"hiddenAliases": [],
|
|
2521
|
+
"id": "project:get",
|
|
2522
|
+
"pluginAlias": "linmux",
|
|
2523
|
+
"pluginName": "linmux",
|
|
2524
|
+
"pluginType": "core",
|
|
2525
|
+
"strict": true,
|
|
2526
|
+
"enableJsonFlag": true,
|
|
2527
|
+
"isESM": true,
|
|
2528
|
+
"relativePath": [
|
|
2529
|
+
"dist",
|
|
2530
|
+
"commands",
|
|
2531
|
+
"project",
|
|
2532
|
+
"get.js"
|
|
2533
|
+
]
|
|
2534
|
+
},
|
|
2535
|
+
"project:list": {
|
|
2536
|
+
"aliases": [],
|
|
2537
|
+
"args": {},
|
|
2538
|
+
"description": "List Linear projects in the active workspace, with --fields, --limit, --cursor.",
|
|
2539
|
+
"flags": {
|
|
2540
|
+
"json": {
|
|
2541
|
+
"description": "Format output as json.",
|
|
2542
|
+
"helpGroup": "GLOBAL",
|
|
2543
|
+
"name": "json",
|
|
2544
|
+
"allowNo": false,
|
|
2545
|
+
"type": "boolean"
|
|
2546
|
+
},
|
|
2547
|
+
"pretty": {
|
|
2548
|
+
"description": "Human-readable output (default is JSON)",
|
|
2549
|
+
"name": "pretty",
|
|
2550
|
+
"allowNo": false,
|
|
2551
|
+
"type": "boolean"
|
|
2552
|
+
},
|
|
2553
|
+
"quiet": {
|
|
2554
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
2555
|
+
"name": "quiet",
|
|
2556
|
+
"allowNo": false,
|
|
2557
|
+
"type": "boolean"
|
|
2558
|
+
},
|
|
2559
|
+
"noMeta": {
|
|
2560
|
+
"aliases": [
|
|
2561
|
+
"no-meta"
|
|
2562
|
+
],
|
|
2563
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
2564
|
+
"name": "noMeta",
|
|
2565
|
+
"allowNo": false,
|
|
2566
|
+
"type": "boolean"
|
|
2567
|
+
},
|
|
2568
|
+
"retry": {
|
|
2569
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
2570
|
+
"name": "retry",
|
|
2571
|
+
"default": 0,
|
|
2572
|
+
"hasDynamicHelp": false,
|
|
2573
|
+
"multiple": false,
|
|
2574
|
+
"type": "option"
|
|
2575
|
+
},
|
|
2576
|
+
"limit": {
|
|
2577
|
+
"description": "Page size (default 25, max 100)",
|
|
2578
|
+
"name": "limit",
|
|
2579
|
+
"default": 25,
|
|
2580
|
+
"hasDynamicHelp": false,
|
|
2581
|
+
"multiple": false,
|
|
2582
|
+
"type": "option"
|
|
2583
|
+
},
|
|
2584
|
+
"cursor": {
|
|
2585
|
+
"description": "Opaque cursor from a previous response's meta.pageInfo.endCursor",
|
|
2586
|
+
"name": "cursor",
|
|
2587
|
+
"hasDynamicHelp": false,
|
|
2588
|
+
"multiple": false,
|
|
2589
|
+
"type": "option"
|
|
2590
|
+
},
|
|
2591
|
+
"workspace": {
|
|
2592
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
2593
|
+
"name": "workspace",
|
|
2594
|
+
"hasDynamicHelp": false,
|
|
2595
|
+
"multiple": false,
|
|
2596
|
+
"type": "option"
|
|
2597
|
+
},
|
|
2598
|
+
"fields": {
|
|
2599
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
2600
|
+
"name": "fields",
|
|
2601
|
+
"default": "defaults",
|
|
2602
|
+
"hasDynamicHelp": false,
|
|
2603
|
+
"multiple": false,
|
|
2604
|
+
"type": "option"
|
|
2605
|
+
}
|
|
2606
|
+
},
|
|
2607
|
+
"hasDynamicHelp": false,
|
|
2608
|
+
"hiddenAliases": [],
|
|
2609
|
+
"id": "project:list",
|
|
2610
|
+
"pluginAlias": "linmux",
|
|
2611
|
+
"pluginName": "linmux",
|
|
2612
|
+
"pluginType": "core",
|
|
2613
|
+
"strict": true,
|
|
2614
|
+
"enableJsonFlag": true,
|
|
2615
|
+
"isESM": true,
|
|
2616
|
+
"relativePath": [
|
|
2617
|
+
"dist",
|
|
2618
|
+
"commands",
|
|
2619
|
+
"project",
|
|
2620
|
+
"list.js"
|
|
2621
|
+
]
|
|
2622
|
+
},
|
|
2623
|
+
"project:update-status": {
|
|
2624
|
+
"aliases": [],
|
|
2625
|
+
"args": {
|
|
2626
|
+
"ref": {
|
|
2627
|
+
"description": "Project name or UUID",
|
|
2628
|
+
"name": "ref",
|
|
2629
|
+
"required": true
|
|
2630
|
+
},
|
|
2631
|
+
"status": {
|
|
2632
|
+
"description": "Status name (e.g. \"At Risk\") or UUID",
|
|
2633
|
+
"name": "status",
|
|
2634
|
+
"required": true
|
|
2635
|
+
}
|
|
2636
|
+
},
|
|
2637
|
+
"description": "Set a Linear project's current status (e.g. \"On Track\" -> \"At Risk\"). Calls updateProject({ statusId }); does NOT mutate the workspace-level status definition.",
|
|
2638
|
+
"flags": {
|
|
2639
|
+
"json": {
|
|
2640
|
+
"description": "Format output as json.",
|
|
2641
|
+
"helpGroup": "GLOBAL",
|
|
2642
|
+
"name": "json",
|
|
2643
|
+
"allowNo": false,
|
|
2644
|
+
"type": "boolean"
|
|
2645
|
+
},
|
|
2646
|
+
"pretty": {
|
|
2647
|
+
"description": "Human-readable output (default is JSON)",
|
|
2648
|
+
"name": "pretty",
|
|
2649
|
+
"allowNo": false,
|
|
2650
|
+
"type": "boolean"
|
|
2651
|
+
},
|
|
2652
|
+
"quiet": {
|
|
2653
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
2654
|
+
"name": "quiet",
|
|
2655
|
+
"allowNo": false,
|
|
2656
|
+
"type": "boolean"
|
|
2657
|
+
},
|
|
2658
|
+
"noMeta": {
|
|
2659
|
+
"aliases": [
|
|
2660
|
+
"no-meta"
|
|
2661
|
+
],
|
|
2662
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
2663
|
+
"name": "noMeta",
|
|
2664
|
+
"allowNo": false,
|
|
2665
|
+
"type": "boolean"
|
|
2666
|
+
},
|
|
2667
|
+
"retry": {
|
|
2668
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
2669
|
+
"name": "retry",
|
|
2670
|
+
"default": 0,
|
|
2671
|
+
"hasDynamicHelp": false,
|
|
2672
|
+
"multiple": false,
|
|
2673
|
+
"type": "option"
|
|
2674
|
+
},
|
|
2675
|
+
"workspace": {
|
|
2676
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
2677
|
+
"name": "workspace",
|
|
2678
|
+
"hasDynamicHelp": false,
|
|
2679
|
+
"multiple": false,
|
|
2680
|
+
"type": "option"
|
|
2681
|
+
},
|
|
2682
|
+
"allow-active-workspace-write": {
|
|
2683
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
2684
|
+
"name": "allow-active-workspace-write",
|
|
2685
|
+
"allowNo": false,
|
|
2686
|
+
"type": "boolean"
|
|
2687
|
+
},
|
|
2688
|
+
"fields": {
|
|
2689
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
2690
|
+
"name": "fields",
|
|
2691
|
+
"default": "defaults",
|
|
2692
|
+
"hasDynamicHelp": false,
|
|
2693
|
+
"multiple": false,
|
|
2694
|
+
"type": "option"
|
|
2695
|
+
}
|
|
2696
|
+
},
|
|
2697
|
+
"hasDynamicHelp": false,
|
|
2698
|
+
"hiddenAliases": [],
|
|
2699
|
+
"id": "project:update-status",
|
|
2700
|
+
"pluginAlias": "linmux",
|
|
2701
|
+
"pluginName": "linmux",
|
|
2702
|
+
"pluginType": "core",
|
|
2703
|
+
"strict": true,
|
|
2704
|
+
"enableJsonFlag": true,
|
|
2705
|
+
"isESM": true,
|
|
2706
|
+
"relativePath": [
|
|
2707
|
+
"dist",
|
|
2708
|
+
"commands",
|
|
2709
|
+
"project",
|
|
2710
|
+
"update-status.js"
|
|
2711
|
+
]
|
|
2712
|
+
},
|
|
2713
|
+
"project:update": {
|
|
2714
|
+
"aliases": [],
|
|
2715
|
+
"args": {
|
|
2716
|
+
"ref": {
|
|
2717
|
+
"description": "Project name or UUID",
|
|
2718
|
+
"name": "ref",
|
|
2719
|
+
"required": true
|
|
2720
|
+
}
|
|
2721
|
+
},
|
|
2722
|
+
"description": "Update a Linear project. At least one field flag is required. Use `project update-status` to change the project's current status.",
|
|
2723
|
+
"flags": {
|
|
2724
|
+
"json": {
|
|
2725
|
+
"description": "Format output as json.",
|
|
2726
|
+
"helpGroup": "GLOBAL",
|
|
2727
|
+
"name": "json",
|
|
2728
|
+
"allowNo": false,
|
|
2729
|
+
"type": "boolean"
|
|
2730
|
+
},
|
|
2731
|
+
"pretty": {
|
|
2732
|
+
"description": "Human-readable output (default is JSON)",
|
|
2733
|
+
"name": "pretty",
|
|
2734
|
+
"allowNo": false,
|
|
2735
|
+
"type": "boolean"
|
|
2736
|
+
},
|
|
2737
|
+
"quiet": {
|
|
2738
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
2739
|
+
"name": "quiet",
|
|
2740
|
+
"allowNo": false,
|
|
2741
|
+
"type": "boolean"
|
|
2742
|
+
},
|
|
2743
|
+
"noMeta": {
|
|
2744
|
+
"aliases": [
|
|
2745
|
+
"no-meta"
|
|
2746
|
+
],
|
|
2747
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
2748
|
+
"name": "noMeta",
|
|
2749
|
+
"allowNo": false,
|
|
2750
|
+
"type": "boolean"
|
|
2751
|
+
},
|
|
2752
|
+
"retry": {
|
|
2753
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
2754
|
+
"name": "retry",
|
|
2755
|
+
"default": 0,
|
|
2756
|
+
"hasDynamicHelp": false,
|
|
2757
|
+
"multiple": false,
|
|
2758
|
+
"type": "option"
|
|
2759
|
+
},
|
|
2760
|
+
"workspace": {
|
|
2761
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
2762
|
+
"name": "workspace",
|
|
2763
|
+
"hasDynamicHelp": false,
|
|
2764
|
+
"multiple": false,
|
|
2765
|
+
"type": "option"
|
|
2766
|
+
},
|
|
2767
|
+
"allow-active-workspace-write": {
|
|
2768
|
+
"description": "Per-invocation opt-in to use the active default workspace for this write (WSP-06)",
|
|
2769
|
+
"name": "allow-active-workspace-write",
|
|
2770
|
+
"allowNo": false,
|
|
2771
|
+
"type": "boolean"
|
|
2772
|
+
},
|
|
2773
|
+
"fields": {
|
|
2774
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
2775
|
+
"name": "fields",
|
|
2776
|
+
"default": "defaults",
|
|
2777
|
+
"hasDynamicHelp": false,
|
|
2778
|
+
"multiple": false,
|
|
2779
|
+
"type": "option"
|
|
2780
|
+
},
|
|
2781
|
+
"name": {
|
|
2782
|
+
"description": "New project name",
|
|
2783
|
+
"name": "name",
|
|
2784
|
+
"hasDynamicHelp": false,
|
|
2785
|
+
"multiple": false,
|
|
2786
|
+
"type": "option"
|
|
2787
|
+
},
|
|
2788
|
+
"description": {
|
|
2789
|
+
"description": "New project description (markdown). Pass \"\" to clear.",
|
|
2790
|
+
"name": "description",
|
|
2791
|
+
"hasDynamicHelp": false,
|
|
2792
|
+
"multiple": false,
|
|
2793
|
+
"type": "option"
|
|
2794
|
+
},
|
|
2795
|
+
"state": {
|
|
2796
|
+
"description": "Project state ('planned' | 'started' | 'paused' | 'completed' | 'canceled' | 'backlog')",
|
|
2797
|
+
"name": "state",
|
|
2798
|
+
"hasDynamicHelp": false,
|
|
2799
|
+
"multiple": false,
|
|
2800
|
+
"type": "option"
|
|
2801
|
+
},
|
|
2802
|
+
"lead": {
|
|
2803
|
+
"description": "\"me\", email, name, or user UUID",
|
|
2804
|
+
"name": "lead",
|
|
2805
|
+
"hasDynamicHelp": false,
|
|
2806
|
+
"multiple": false,
|
|
2807
|
+
"type": "option"
|
|
2808
|
+
},
|
|
2809
|
+
"start-date": {
|
|
2810
|
+
"description": "Project start date (ISO 8601, e.g. 2026-10-01)",
|
|
2811
|
+
"name": "start-date",
|
|
2812
|
+
"hasDynamicHelp": false,
|
|
2813
|
+
"multiple": false,
|
|
2814
|
+
"type": "option"
|
|
2815
|
+
},
|
|
2816
|
+
"target-date": {
|
|
2817
|
+
"description": "Project target date (ISO 8601, e.g. 2026-12-31)",
|
|
2818
|
+
"name": "target-date",
|
|
2819
|
+
"hasDynamicHelp": false,
|
|
2820
|
+
"multiple": false,
|
|
2821
|
+
"type": "option"
|
|
2822
|
+
}
|
|
2823
|
+
},
|
|
2824
|
+
"hasDynamicHelp": false,
|
|
2825
|
+
"hiddenAliases": [],
|
|
2826
|
+
"id": "project:update",
|
|
2827
|
+
"pluginAlias": "linmux",
|
|
2828
|
+
"pluginName": "linmux",
|
|
2829
|
+
"pluginType": "core",
|
|
2830
|
+
"strict": true,
|
|
2831
|
+
"enableJsonFlag": true,
|
|
2832
|
+
"isESM": true,
|
|
2833
|
+
"relativePath": [
|
|
2834
|
+
"dist",
|
|
2835
|
+
"commands",
|
|
2836
|
+
"project",
|
|
2837
|
+
"update.js"
|
|
2838
|
+
]
|
|
2839
|
+
},
|
|
2840
|
+
"raw:batch": {
|
|
2841
|
+
"aliases": [],
|
|
2842
|
+
"args": {},
|
|
2843
|
+
"description": "Execute a batch of registry operations from a JSON plan file. Default dry-run; --yes required to execute.",
|
|
2844
|
+
"examples": [
|
|
2845
|
+
"<%= config.bin %> raw batch --plan=@./plan.json",
|
|
2846
|
+
"<%= config.bin %> raw batch --plan=@./plan.json --workspace acme --allow-mutations --yes",
|
|
2847
|
+
"<%= config.bin %> raw batch --plan=@./plan.json --no-dry-run --yes --workspace acme --allow-mutations"
|
|
2848
|
+
],
|
|
2849
|
+
"flags": {
|
|
2850
|
+
"json": {
|
|
2851
|
+
"description": "Format output as json.",
|
|
2852
|
+
"helpGroup": "GLOBAL",
|
|
2853
|
+
"name": "json",
|
|
2854
|
+
"allowNo": false,
|
|
2855
|
+
"type": "boolean"
|
|
2856
|
+
},
|
|
2857
|
+
"pretty": {
|
|
2858
|
+
"description": "Human-readable output (default is JSON)",
|
|
2859
|
+
"name": "pretty",
|
|
2860
|
+
"allowNo": false,
|
|
2861
|
+
"type": "boolean"
|
|
2862
|
+
},
|
|
2863
|
+
"quiet": {
|
|
2864
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
2865
|
+
"name": "quiet",
|
|
2866
|
+
"allowNo": false,
|
|
2867
|
+
"type": "boolean"
|
|
2868
|
+
},
|
|
2869
|
+
"noMeta": {
|
|
2870
|
+
"aliases": [
|
|
2871
|
+
"no-meta"
|
|
2872
|
+
],
|
|
2873
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
2874
|
+
"name": "noMeta",
|
|
2875
|
+
"allowNo": false,
|
|
2876
|
+
"type": "boolean"
|
|
2877
|
+
},
|
|
2878
|
+
"retry": {
|
|
2879
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
2880
|
+
"name": "retry",
|
|
2881
|
+
"default": 0,
|
|
2882
|
+
"hasDynamicHelp": false,
|
|
2883
|
+
"multiple": false,
|
|
2884
|
+
"type": "option"
|
|
2885
|
+
},
|
|
2886
|
+
"workspace": {
|
|
2887
|
+
"description": "Workspace name override (precedence over LINEAR_WORKSPACE env / active default)",
|
|
2888
|
+
"name": "workspace",
|
|
2889
|
+
"hasDynamicHelp": false,
|
|
2890
|
+
"multiple": false,
|
|
2891
|
+
"type": "option"
|
|
2892
|
+
},
|
|
2893
|
+
"allow-active-workspace-write": {
|
|
2894
|
+
"description": "Permit mutations against the active workspace without an explicit --workspace selector (WSP-06 opt-in)",
|
|
2895
|
+
"name": "allow-active-workspace-write",
|
|
2896
|
+
"allowNo": false,
|
|
2897
|
+
"type": "boolean"
|
|
2898
|
+
},
|
|
2899
|
+
"allow-mutations": {
|
|
2900
|
+
"description": "Required for plans containing mutation operations — explicit safety gate",
|
|
2901
|
+
"name": "allow-mutations",
|
|
2902
|
+
"allowNo": false,
|
|
2903
|
+
"type": "boolean"
|
|
2904
|
+
},
|
|
2905
|
+
"plan": {
|
|
2906
|
+
"description": "Plan file path as @file.json (e.g. --plan=@./plan.json)",
|
|
2907
|
+
"name": "plan",
|
|
2908
|
+
"required": true,
|
|
2909
|
+
"hasDynamicHelp": false,
|
|
2910
|
+
"multiple": false,
|
|
2911
|
+
"type": "option"
|
|
2912
|
+
},
|
|
2913
|
+
"dry-run": {
|
|
2914
|
+
"description": "Print planned operations without executing (default true). Pass --no-dry-run --yes to execute.",
|
|
2915
|
+
"name": "dry-run",
|
|
2916
|
+
"allowNo": true,
|
|
2917
|
+
"type": "boolean"
|
|
2918
|
+
},
|
|
2919
|
+
"yes": {
|
|
2920
|
+
"description": "Confirm execution. Required when --no-dry-run is passed.",
|
|
2921
|
+
"name": "yes",
|
|
2922
|
+
"allowNo": false,
|
|
2923
|
+
"type": "boolean"
|
|
2924
|
+
}
|
|
2925
|
+
},
|
|
2926
|
+
"hasDynamicHelp": false,
|
|
2927
|
+
"hiddenAliases": [],
|
|
2928
|
+
"id": "raw:batch",
|
|
2929
|
+
"pluginAlias": "linmux",
|
|
2930
|
+
"pluginName": "linmux",
|
|
2931
|
+
"pluginType": "core",
|
|
2932
|
+
"strict": true,
|
|
2933
|
+
"enableJsonFlag": true,
|
|
2934
|
+
"isESM": true,
|
|
2935
|
+
"relativePath": [
|
|
2936
|
+
"dist",
|
|
2937
|
+
"commands",
|
|
2938
|
+
"raw",
|
|
2939
|
+
"batch.js"
|
|
2940
|
+
]
|
|
2941
|
+
},
|
|
2942
|
+
"raw": {
|
|
2943
|
+
"aliases": [],
|
|
2944
|
+
"args": {
|
|
2945
|
+
"operation": {
|
|
2946
|
+
"description": "PascalCase operation name (e.g. Issues, IssueCreate)",
|
|
2947
|
+
"name": "operation",
|
|
2948
|
+
"required": true
|
|
2949
|
+
}
|
|
2950
|
+
},
|
|
2951
|
+
"description": "Dispatch any operation in the generated GraphQL registry (501 ops).",
|
|
2952
|
+
"examples": [
|
|
2953
|
+
"<%= config.bin %> raw Issues --vars '{\"first\": 10}'",
|
|
2954
|
+
"<%= config.bin %> raw IssueCreate --workspace acme --allow-mutations --vars '{\"input\": {\"title\": \"x\", \"teamId\": \"...\"}}'",
|
|
2955
|
+
"<%= config.bin %> raw Issues --vars @vars.json"
|
|
2956
|
+
],
|
|
2957
|
+
"flags": {
|
|
2958
|
+
"json": {
|
|
2959
|
+
"description": "Format output as json.",
|
|
2960
|
+
"helpGroup": "GLOBAL",
|
|
2961
|
+
"name": "json",
|
|
2962
|
+
"allowNo": false,
|
|
2963
|
+
"type": "boolean"
|
|
2964
|
+
},
|
|
2965
|
+
"pretty": {
|
|
2966
|
+
"description": "Human-readable output (default is JSON)",
|
|
2967
|
+
"name": "pretty",
|
|
2968
|
+
"allowNo": false,
|
|
2969
|
+
"type": "boolean"
|
|
2970
|
+
},
|
|
2971
|
+
"quiet": {
|
|
2972
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
2973
|
+
"name": "quiet",
|
|
2974
|
+
"allowNo": false,
|
|
2975
|
+
"type": "boolean"
|
|
2976
|
+
},
|
|
2977
|
+
"noMeta": {
|
|
2978
|
+
"aliases": [
|
|
2979
|
+
"no-meta"
|
|
2980
|
+
],
|
|
2981
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
2982
|
+
"name": "noMeta",
|
|
2983
|
+
"allowNo": false,
|
|
2984
|
+
"type": "boolean"
|
|
2985
|
+
},
|
|
2986
|
+
"retry": {
|
|
2987
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
2988
|
+
"name": "retry",
|
|
2989
|
+
"default": 0,
|
|
2990
|
+
"hasDynamicHelp": false,
|
|
2991
|
+
"multiple": false,
|
|
2992
|
+
"type": "option"
|
|
2993
|
+
},
|
|
2994
|
+
"workspace": {
|
|
2995
|
+
"description": "Workspace name override (precedence over LINEAR_WORKSPACE env / active default)",
|
|
2996
|
+
"name": "workspace",
|
|
2997
|
+
"hasDynamicHelp": false,
|
|
2998
|
+
"multiple": false,
|
|
2999
|
+
"type": "option"
|
|
3000
|
+
},
|
|
3001
|
+
"allow-active-workspace-write": {
|
|
3002
|
+
"description": "Permit mutations against the active workspace without an explicit --workspace selector (WSP-06 opt-in)",
|
|
3003
|
+
"name": "allow-active-workspace-write",
|
|
3004
|
+
"allowNo": false,
|
|
3005
|
+
"type": "boolean"
|
|
3006
|
+
},
|
|
3007
|
+
"allow-mutations": {
|
|
3008
|
+
"description": "Required for mutation operations — explicit safety gate",
|
|
3009
|
+
"name": "allow-mutations",
|
|
3010
|
+
"allowNo": false,
|
|
3011
|
+
"type": "boolean"
|
|
3012
|
+
},
|
|
3013
|
+
"vars": {
|
|
3014
|
+
"description": "Variables as inline JSON or @file.json path (file takes precedence)",
|
|
3015
|
+
"name": "vars",
|
|
3016
|
+
"hasDynamicHelp": false,
|
|
3017
|
+
"multiple": false,
|
|
3018
|
+
"type": "option"
|
|
3019
|
+
}
|
|
3020
|
+
},
|
|
3021
|
+
"hasDynamicHelp": false,
|
|
3022
|
+
"hiddenAliases": [],
|
|
3023
|
+
"id": "raw",
|
|
3024
|
+
"pluginAlias": "linmux",
|
|
3025
|
+
"pluginName": "linmux",
|
|
3026
|
+
"pluginType": "core",
|
|
3027
|
+
"strict": true,
|
|
3028
|
+
"enableJsonFlag": true,
|
|
3029
|
+
"isESM": true,
|
|
3030
|
+
"relativePath": [
|
|
3031
|
+
"dist",
|
|
3032
|
+
"commands",
|
|
3033
|
+
"raw",
|
|
3034
|
+
"index.js"
|
|
3035
|
+
]
|
|
3036
|
+
},
|
|
3037
|
+
"team:get": {
|
|
3038
|
+
"aliases": [],
|
|
3039
|
+
"args": {
|
|
3040
|
+
"ref": {
|
|
3041
|
+
"description": "Team UUID, key (e.g. ENG), or name",
|
|
3042
|
+
"name": "ref",
|
|
3043
|
+
"required": true
|
|
3044
|
+
}
|
|
3045
|
+
},
|
|
3046
|
+
"description": "Get a single Linear team by UUID, key (e.g. ENG), or name.",
|
|
3047
|
+
"flags": {
|
|
3048
|
+
"json": {
|
|
3049
|
+
"description": "Format output as json.",
|
|
3050
|
+
"helpGroup": "GLOBAL",
|
|
3051
|
+
"name": "json",
|
|
3052
|
+
"allowNo": false,
|
|
3053
|
+
"type": "boolean"
|
|
3054
|
+
},
|
|
3055
|
+
"pretty": {
|
|
3056
|
+
"description": "Human-readable output (default is JSON)",
|
|
3057
|
+
"name": "pretty",
|
|
3058
|
+
"allowNo": false,
|
|
3059
|
+
"type": "boolean"
|
|
3060
|
+
},
|
|
3061
|
+
"quiet": {
|
|
3062
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
3063
|
+
"name": "quiet",
|
|
3064
|
+
"allowNo": false,
|
|
3065
|
+
"type": "boolean"
|
|
3066
|
+
},
|
|
3067
|
+
"noMeta": {
|
|
3068
|
+
"aliases": [
|
|
3069
|
+
"no-meta"
|
|
3070
|
+
],
|
|
3071
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
3072
|
+
"name": "noMeta",
|
|
3073
|
+
"allowNo": false,
|
|
3074
|
+
"type": "boolean"
|
|
3075
|
+
},
|
|
3076
|
+
"retry": {
|
|
3077
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
3078
|
+
"name": "retry",
|
|
3079
|
+
"default": 0,
|
|
3080
|
+
"hasDynamicHelp": false,
|
|
3081
|
+
"multiple": false,
|
|
3082
|
+
"type": "option"
|
|
3083
|
+
},
|
|
3084
|
+
"workspace": {
|
|
3085
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
3086
|
+
"name": "workspace",
|
|
3087
|
+
"hasDynamicHelp": false,
|
|
3088
|
+
"multiple": false,
|
|
3089
|
+
"type": "option"
|
|
3090
|
+
},
|
|
3091
|
+
"fields": {
|
|
3092
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
3093
|
+
"name": "fields",
|
|
3094
|
+
"default": "defaults",
|
|
3095
|
+
"hasDynamicHelp": false,
|
|
3096
|
+
"multiple": false,
|
|
3097
|
+
"type": "option"
|
|
3098
|
+
}
|
|
3099
|
+
},
|
|
3100
|
+
"hasDynamicHelp": false,
|
|
3101
|
+
"hiddenAliases": [],
|
|
3102
|
+
"id": "team:get",
|
|
3103
|
+
"pluginAlias": "linmux",
|
|
3104
|
+
"pluginName": "linmux",
|
|
3105
|
+
"pluginType": "core",
|
|
3106
|
+
"strict": true,
|
|
3107
|
+
"enableJsonFlag": true,
|
|
3108
|
+
"isESM": true,
|
|
3109
|
+
"relativePath": [
|
|
3110
|
+
"dist",
|
|
3111
|
+
"commands",
|
|
3112
|
+
"team",
|
|
3113
|
+
"get.js"
|
|
3114
|
+
]
|
|
3115
|
+
},
|
|
3116
|
+
"team:list": {
|
|
3117
|
+
"aliases": [],
|
|
3118
|
+
"args": {},
|
|
3119
|
+
"description": "List Linear teams in the resolved workspace.",
|
|
3120
|
+
"flags": {
|
|
3121
|
+
"json": {
|
|
3122
|
+
"description": "Format output as json.",
|
|
3123
|
+
"helpGroup": "GLOBAL",
|
|
3124
|
+
"name": "json",
|
|
3125
|
+
"allowNo": false,
|
|
3126
|
+
"type": "boolean"
|
|
3127
|
+
},
|
|
3128
|
+
"pretty": {
|
|
3129
|
+
"description": "Human-readable output (default is JSON)",
|
|
3130
|
+
"name": "pretty",
|
|
3131
|
+
"allowNo": false,
|
|
3132
|
+
"type": "boolean"
|
|
3133
|
+
},
|
|
3134
|
+
"quiet": {
|
|
3135
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
3136
|
+
"name": "quiet",
|
|
3137
|
+
"allowNo": false,
|
|
3138
|
+
"type": "boolean"
|
|
3139
|
+
},
|
|
3140
|
+
"noMeta": {
|
|
3141
|
+
"aliases": [
|
|
3142
|
+
"no-meta"
|
|
3143
|
+
],
|
|
3144
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
3145
|
+
"name": "noMeta",
|
|
3146
|
+
"allowNo": false,
|
|
3147
|
+
"type": "boolean"
|
|
3148
|
+
},
|
|
3149
|
+
"retry": {
|
|
3150
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
3151
|
+
"name": "retry",
|
|
3152
|
+
"default": 0,
|
|
3153
|
+
"hasDynamicHelp": false,
|
|
3154
|
+
"multiple": false,
|
|
3155
|
+
"type": "option"
|
|
3156
|
+
},
|
|
3157
|
+
"limit": {
|
|
3158
|
+
"description": "Page size (default 25, max 100)",
|
|
3159
|
+
"name": "limit",
|
|
3160
|
+
"default": 25,
|
|
3161
|
+
"hasDynamicHelp": false,
|
|
3162
|
+
"multiple": false,
|
|
3163
|
+
"type": "option"
|
|
3164
|
+
},
|
|
3165
|
+
"cursor": {
|
|
3166
|
+
"description": "Opaque cursor from a previous response's meta.pageInfo.endCursor",
|
|
3167
|
+
"name": "cursor",
|
|
3168
|
+
"hasDynamicHelp": false,
|
|
3169
|
+
"multiple": false,
|
|
3170
|
+
"type": "option"
|
|
3171
|
+
},
|
|
3172
|
+
"workspace": {
|
|
3173
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
3174
|
+
"name": "workspace",
|
|
3175
|
+
"hasDynamicHelp": false,
|
|
3176
|
+
"multiple": false,
|
|
3177
|
+
"type": "option"
|
|
3178
|
+
},
|
|
3179
|
+
"fields": {
|
|
3180
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
3181
|
+
"name": "fields",
|
|
3182
|
+
"default": "defaults",
|
|
3183
|
+
"hasDynamicHelp": false,
|
|
3184
|
+
"multiple": false,
|
|
3185
|
+
"type": "option"
|
|
3186
|
+
}
|
|
3187
|
+
},
|
|
3188
|
+
"hasDynamicHelp": false,
|
|
3189
|
+
"hiddenAliases": [],
|
|
3190
|
+
"id": "team:list",
|
|
3191
|
+
"pluginAlias": "linmux",
|
|
3192
|
+
"pluginName": "linmux",
|
|
3193
|
+
"pluginType": "core",
|
|
3194
|
+
"strict": true,
|
|
3195
|
+
"enableJsonFlag": true,
|
|
3196
|
+
"isESM": true,
|
|
3197
|
+
"relativePath": [
|
|
3198
|
+
"dist",
|
|
3199
|
+
"commands",
|
|
3200
|
+
"team",
|
|
3201
|
+
"list.js"
|
|
3202
|
+
]
|
|
3203
|
+
},
|
|
3204
|
+
"state:list": {
|
|
3205
|
+
"aliases": [],
|
|
3206
|
+
"args": {},
|
|
3207
|
+
"description": "List Linear workflow states. Pass --team <UUID|key|name> to scope to one team; otherwise lists all states the viewer can see.",
|
|
3208
|
+
"flags": {
|
|
3209
|
+
"json": {
|
|
3210
|
+
"description": "Format output as json.",
|
|
3211
|
+
"helpGroup": "GLOBAL",
|
|
3212
|
+
"name": "json",
|
|
3213
|
+
"allowNo": false,
|
|
3214
|
+
"type": "boolean"
|
|
3215
|
+
},
|
|
3216
|
+
"pretty": {
|
|
3217
|
+
"description": "Human-readable output (default is JSON)",
|
|
3218
|
+
"name": "pretty",
|
|
3219
|
+
"allowNo": false,
|
|
3220
|
+
"type": "boolean"
|
|
3221
|
+
},
|
|
3222
|
+
"quiet": {
|
|
3223
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
3224
|
+
"name": "quiet",
|
|
3225
|
+
"allowNo": false,
|
|
3226
|
+
"type": "boolean"
|
|
3227
|
+
},
|
|
3228
|
+
"noMeta": {
|
|
3229
|
+
"aliases": [
|
|
3230
|
+
"no-meta"
|
|
3231
|
+
],
|
|
3232
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
3233
|
+
"name": "noMeta",
|
|
3234
|
+
"allowNo": false,
|
|
3235
|
+
"type": "boolean"
|
|
3236
|
+
},
|
|
3237
|
+
"retry": {
|
|
3238
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
3239
|
+
"name": "retry",
|
|
3240
|
+
"default": 0,
|
|
3241
|
+
"hasDynamicHelp": false,
|
|
3242
|
+
"multiple": false,
|
|
3243
|
+
"type": "option"
|
|
3244
|
+
},
|
|
3245
|
+
"limit": {
|
|
3246
|
+
"description": "Page size (default 25, max 100)",
|
|
3247
|
+
"name": "limit",
|
|
3248
|
+
"default": 25,
|
|
3249
|
+
"hasDynamicHelp": false,
|
|
3250
|
+
"multiple": false,
|
|
3251
|
+
"type": "option"
|
|
3252
|
+
},
|
|
3253
|
+
"cursor": {
|
|
3254
|
+
"description": "Opaque cursor from a previous response's meta.pageInfo.endCursor",
|
|
3255
|
+
"name": "cursor",
|
|
3256
|
+
"hasDynamicHelp": false,
|
|
3257
|
+
"multiple": false,
|
|
3258
|
+
"type": "option"
|
|
3259
|
+
},
|
|
3260
|
+
"workspace": {
|
|
3261
|
+
"description": "Workspace name (overrides active default and LINEAR_WORKSPACE)",
|
|
3262
|
+
"name": "workspace",
|
|
3263
|
+
"hasDynamicHelp": false,
|
|
3264
|
+
"multiple": false,
|
|
3265
|
+
"type": "option"
|
|
3266
|
+
},
|
|
3267
|
+
"fields": {
|
|
3268
|
+
"description": "Field preset (ids|defaults|full) or comma-separated list",
|
|
3269
|
+
"name": "fields",
|
|
3270
|
+
"default": "defaults",
|
|
3271
|
+
"hasDynamicHelp": false,
|
|
3272
|
+
"multiple": false,
|
|
3273
|
+
"type": "option"
|
|
3274
|
+
},
|
|
3275
|
+
"team": {
|
|
3276
|
+
"description": "Optional team filter (UUID, key, or name)",
|
|
3277
|
+
"name": "team",
|
|
3278
|
+
"hasDynamicHelp": false,
|
|
3279
|
+
"multiple": false,
|
|
3280
|
+
"type": "option"
|
|
3281
|
+
}
|
|
3282
|
+
},
|
|
3283
|
+
"hasDynamicHelp": false,
|
|
3284
|
+
"hiddenAliases": [],
|
|
3285
|
+
"id": "state:list",
|
|
3286
|
+
"pluginAlias": "linmux",
|
|
3287
|
+
"pluginName": "linmux",
|
|
3288
|
+
"pluginType": "core",
|
|
3289
|
+
"strict": true,
|
|
3290
|
+
"enableJsonFlag": true,
|
|
3291
|
+
"isESM": true,
|
|
3292
|
+
"relativePath": [
|
|
3293
|
+
"dist",
|
|
3294
|
+
"commands",
|
|
3295
|
+
"state",
|
|
3296
|
+
"list.js"
|
|
3297
|
+
]
|
|
3298
|
+
},
|
|
3299
|
+
"workspace:add": {
|
|
3300
|
+
"aliases": [],
|
|
3301
|
+
"args": {
|
|
3302
|
+
"name": {
|
|
3303
|
+
"description": "Local alias for the workspace",
|
|
3304
|
+
"name": "name",
|
|
3305
|
+
"required": true
|
|
3306
|
+
}
|
|
3307
|
+
},
|
|
3308
|
+
"description": "Register a Linear workspace",
|
|
3309
|
+
"flags": {
|
|
3310
|
+
"json": {
|
|
3311
|
+
"description": "Format output as json.",
|
|
3312
|
+
"helpGroup": "GLOBAL",
|
|
3313
|
+
"name": "json",
|
|
3314
|
+
"allowNo": false,
|
|
3315
|
+
"type": "boolean"
|
|
3316
|
+
},
|
|
3317
|
+
"token": {
|
|
3318
|
+
"description": "Linear personal API key (lin_api_*)",
|
|
3319
|
+
"name": "token",
|
|
3320
|
+
"required": true,
|
|
3321
|
+
"hasDynamicHelp": false,
|
|
3322
|
+
"multiple": false,
|
|
3323
|
+
"type": "option"
|
|
3324
|
+
},
|
|
3325
|
+
"pretty": {
|
|
3326
|
+
"description": "Human-readable output (default is JSON)",
|
|
3327
|
+
"name": "pretty",
|
|
3328
|
+
"allowNo": false,
|
|
3329
|
+
"type": "boolean"
|
|
3330
|
+
},
|
|
3331
|
+
"quiet": {
|
|
3332
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
3333
|
+
"name": "quiet",
|
|
3334
|
+
"allowNo": false,
|
|
3335
|
+
"type": "boolean"
|
|
3336
|
+
},
|
|
3337
|
+
"noMeta": {
|
|
3338
|
+
"aliases": [
|
|
3339
|
+
"no-meta"
|
|
3340
|
+
],
|
|
3341
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
3342
|
+
"name": "noMeta",
|
|
3343
|
+
"allowNo": false,
|
|
3344
|
+
"type": "boolean"
|
|
3345
|
+
},
|
|
3346
|
+
"retry": {
|
|
3347
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
3348
|
+
"name": "retry",
|
|
3349
|
+
"default": 0,
|
|
3350
|
+
"hasDynamicHelp": false,
|
|
3351
|
+
"multiple": false,
|
|
3352
|
+
"type": "option"
|
|
3353
|
+
}
|
|
3354
|
+
},
|
|
3355
|
+
"hasDynamicHelp": false,
|
|
3356
|
+
"hiddenAliases": [],
|
|
3357
|
+
"id": "workspace:add",
|
|
3358
|
+
"pluginAlias": "linmux",
|
|
3359
|
+
"pluginName": "linmux",
|
|
3360
|
+
"pluginType": "core",
|
|
3361
|
+
"strict": true,
|
|
3362
|
+
"enableJsonFlag": true,
|
|
3363
|
+
"isESM": true,
|
|
3364
|
+
"relativePath": [
|
|
3365
|
+
"dist",
|
|
3366
|
+
"commands",
|
|
3367
|
+
"workspace",
|
|
3368
|
+
"add.js"
|
|
3369
|
+
]
|
|
3370
|
+
},
|
|
3371
|
+
"workspace:list": {
|
|
3372
|
+
"aliases": [],
|
|
3373
|
+
"args": {},
|
|
3374
|
+
"description": "List registered Linear workspaces",
|
|
3375
|
+
"flags": {
|
|
3376
|
+
"json": {
|
|
3377
|
+
"description": "Format output as json.",
|
|
3378
|
+
"helpGroup": "GLOBAL",
|
|
3379
|
+
"name": "json",
|
|
3380
|
+
"allowNo": false,
|
|
3381
|
+
"type": "boolean"
|
|
3382
|
+
},
|
|
3383
|
+
"pretty": {
|
|
3384
|
+
"description": "Human-readable output (default is JSON)",
|
|
3385
|
+
"name": "pretty",
|
|
3386
|
+
"allowNo": false,
|
|
3387
|
+
"type": "boolean"
|
|
3388
|
+
},
|
|
3389
|
+
"quiet": {
|
|
3390
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
3391
|
+
"name": "quiet",
|
|
3392
|
+
"allowNo": false,
|
|
3393
|
+
"type": "boolean"
|
|
3394
|
+
},
|
|
3395
|
+
"noMeta": {
|
|
3396
|
+
"aliases": [
|
|
3397
|
+
"no-meta"
|
|
3398
|
+
],
|
|
3399
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
3400
|
+
"name": "noMeta",
|
|
3401
|
+
"allowNo": false,
|
|
3402
|
+
"type": "boolean"
|
|
3403
|
+
},
|
|
3404
|
+
"retry": {
|
|
3405
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
3406
|
+
"name": "retry",
|
|
3407
|
+
"default": 0,
|
|
3408
|
+
"hasDynamicHelp": false,
|
|
3409
|
+
"multiple": false,
|
|
3410
|
+
"type": "option"
|
|
3411
|
+
}
|
|
3412
|
+
},
|
|
3413
|
+
"hasDynamicHelp": false,
|
|
3414
|
+
"hiddenAliases": [],
|
|
3415
|
+
"id": "workspace:list",
|
|
3416
|
+
"pluginAlias": "linmux",
|
|
3417
|
+
"pluginName": "linmux",
|
|
3418
|
+
"pluginType": "core",
|
|
3419
|
+
"strict": true,
|
|
3420
|
+
"enableJsonFlag": true,
|
|
3421
|
+
"isESM": true,
|
|
3422
|
+
"relativePath": [
|
|
3423
|
+
"dist",
|
|
3424
|
+
"commands",
|
|
3425
|
+
"workspace",
|
|
3426
|
+
"list.js"
|
|
3427
|
+
]
|
|
3428
|
+
},
|
|
3429
|
+
"workspace:remove": {
|
|
3430
|
+
"aliases": [],
|
|
3431
|
+
"args": {
|
|
3432
|
+
"name": {
|
|
3433
|
+
"description": "Name of the workspace to remove",
|
|
3434
|
+
"name": "name",
|
|
3435
|
+
"required": true
|
|
3436
|
+
}
|
|
3437
|
+
},
|
|
3438
|
+
"description": "Remove a workspace from local config",
|
|
3439
|
+
"flags": {
|
|
3440
|
+
"json": {
|
|
3441
|
+
"description": "Format output as json.",
|
|
3442
|
+
"helpGroup": "GLOBAL",
|
|
3443
|
+
"name": "json",
|
|
3444
|
+
"allowNo": false,
|
|
3445
|
+
"type": "boolean"
|
|
3446
|
+
},
|
|
3447
|
+
"pretty": {
|
|
3448
|
+
"description": "Human-readable output (default is JSON)",
|
|
3449
|
+
"name": "pretty",
|
|
3450
|
+
"allowNo": false,
|
|
3451
|
+
"type": "boolean"
|
|
3452
|
+
},
|
|
3453
|
+
"quiet": {
|
|
3454
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
3455
|
+
"name": "quiet",
|
|
3456
|
+
"allowNo": false,
|
|
3457
|
+
"type": "boolean"
|
|
3458
|
+
},
|
|
3459
|
+
"noMeta": {
|
|
3460
|
+
"aliases": [
|
|
3461
|
+
"no-meta"
|
|
3462
|
+
],
|
|
3463
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
3464
|
+
"name": "noMeta",
|
|
3465
|
+
"allowNo": false,
|
|
3466
|
+
"type": "boolean"
|
|
3467
|
+
},
|
|
3468
|
+
"retry": {
|
|
3469
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
3470
|
+
"name": "retry",
|
|
3471
|
+
"default": 0,
|
|
3472
|
+
"hasDynamicHelp": false,
|
|
3473
|
+
"multiple": false,
|
|
3474
|
+
"type": "option"
|
|
3475
|
+
}
|
|
3476
|
+
},
|
|
3477
|
+
"hasDynamicHelp": false,
|
|
3478
|
+
"hiddenAliases": [],
|
|
3479
|
+
"id": "workspace:remove",
|
|
3480
|
+
"pluginAlias": "linmux",
|
|
3481
|
+
"pluginName": "linmux",
|
|
3482
|
+
"pluginType": "core",
|
|
3483
|
+
"strict": true,
|
|
3484
|
+
"enableJsonFlag": true,
|
|
3485
|
+
"isESM": true,
|
|
3486
|
+
"relativePath": [
|
|
3487
|
+
"dist",
|
|
3488
|
+
"commands",
|
|
3489
|
+
"workspace",
|
|
3490
|
+
"remove.js"
|
|
3491
|
+
]
|
|
3492
|
+
},
|
|
3493
|
+
"workspace:replace-token": {
|
|
3494
|
+
"aliases": [],
|
|
3495
|
+
"args": {
|
|
3496
|
+
"name": {
|
|
3497
|
+
"description": "Name of the workspace to rotate",
|
|
3498
|
+
"name": "name",
|
|
3499
|
+
"required": true
|
|
3500
|
+
}
|
|
3501
|
+
},
|
|
3502
|
+
"description": "Rotate the API token for a registered workspace",
|
|
3503
|
+
"flags": {
|
|
3504
|
+
"json": {
|
|
3505
|
+
"description": "Format output as json.",
|
|
3506
|
+
"helpGroup": "GLOBAL",
|
|
3507
|
+
"name": "json",
|
|
3508
|
+
"allowNo": false,
|
|
3509
|
+
"type": "boolean"
|
|
3510
|
+
},
|
|
3511
|
+
"token": {
|
|
3512
|
+
"description": "New Linear personal API key (lin_api_*)",
|
|
3513
|
+
"name": "token",
|
|
3514
|
+
"required": true,
|
|
3515
|
+
"hasDynamicHelp": false,
|
|
3516
|
+
"multiple": false,
|
|
3517
|
+
"type": "option"
|
|
3518
|
+
},
|
|
3519
|
+
"pretty": {
|
|
3520
|
+
"description": "Human-readable output (default is JSON)",
|
|
3521
|
+
"name": "pretty",
|
|
3522
|
+
"allowNo": false,
|
|
3523
|
+
"type": "boolean"
|
|
3524
|
+
},
|
|
3525
|
+
"quiet": {
|
|
3526
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
3527
|
+
"name": "quiet",
|
|
3528
|
+
"allowNo": false,
|
|
3529
|
+
"type": "boolean"
|
|
3530
|
+
},
|
|
3531
|
+
"noMeta": {
|
|
3532
|
+
"aliases": [
|
|
3533
|
+
"no-meta"
|
|
3534
|
+
],
|
|
3535
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
3536
|
+
"name": "noMeta",
|
|
3537
|
+
"allowNo": false,
|
|
3538
|
+
"type": "boolean"
|
|
3539
|
+
},
|
|
3540
|
+
"retry": {
|
|
3541
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
3542
|
+
"name": "retry",
|
|
3543
|
+
"default": 0,
|
|
3544
|
+
"hasDynamicHelp": false,
|
|
3545
|
+
"multiple": false,
|
|
3546
|
+
"type": "option"
|
|
3547
|
+
}
|
|
3548
|
+
},
|
|
3549
|
+
"hasDynamicHelp": false,
|
|
3550
|
+
"hiddenAliases": [],
|
|
3551
|
+
"id": "workspace:replace-token",
|
|
3552
|
+
"pluginAlias": "linmux",
|
|
3553
|
+
"pluginName": "linmux",
|
|
3554
|
+
"pluginType": "core",
|
|
3555
|
+
"strict": true,
|
|
3556
|
+
"enableJsonFlag": true,
|
|
3557
|
+
"isESM": true,
|
|
3558
|
+
"relativePath": [
|
|
3559
|
+
"dist",
|
|
3560
|
+
"commands",
|
|
3561
|
+
"workspace",
|
|
3562
|
+
"replace-token.js"
|
|
3563
|
+
]
|
|
3564
|
+
},
|
|
3565
|
+
"workspace:use": {
|
|
3566
|
+
"aliases": [],
|
|
3567
|
+
"args": {
|
|
3568
|
+
"name": {
|
|
3569
|
+
"description": "Name of the workspace to make active",
|
|
3570
|
+
"name": "name",
|
|
3571
|
+
"required": true
|
|
3572
|
+
}
|
|
3573
|
+
},
|
|
3574
|
+
"description": "Set the active default workspace",
|
|
3575
|
+
"flags": {
|
|
3576
|
+
"json": {
|
|
3577
|
+
"description": "Format output as json.",
|
|
3578
|
+
"helpGroup": "GLOBAL",
|
|
3579
|
+
"name": "json",
|
|
3580
|
+
"allowNo": false,
|
|
3581
|
+
"type": "boolean"
|
|
3582
|
+
},
|
|
3583
|
+
"pretty": {
|
|
3584
|
+
"description": "Human-readable output (default is JSON)",
|
|
3585
|
+
"name": "pretty",
|
|
3586
|
+
"allowNo": false,
|
|
3587
|
+
"type": "boolean"
|
|
3588
|
+
},
|
|
3589
|
+
"quiet": {
|
|
3590
|
+
"description": "Suppress meta block from success envelopes and pretty-mode banners (implies --no-meta).",
|
|
3591
|
+
"name": "quiet",
|
|
3592
|
+
"allowNo": false,
|
|
3593
|
+
"type": "boolean"
|
|
3594
|
+
},
|
|
3595
|
+
"noMeta": {
|
|
3596
|
+
"aliases": [
|
|
3597
|
+
"no-meta"
|
|
3598
|
+
],
|
|
3599
|
+
"description": "Omit the meta block from success envelopes (smaller token footprint; failure envelopes unchanged).",
|
|
3600
|
+
"name": "noMeta",
|
|
3601
|
+
"allowNo": false,
|
|
3602
|
+
"type": "boolean"
|
|
3603
|
+
},
|
|
3604
|
+
"retry": {
|
|
3605
|
+
"description": "Extra retries on transient errors (added on top of defaults). Min 0.",
|
|
3606
|
+
"name": "retry",
|
|
3607
|
+
"default": 0,
|
|
3608
|
+
"hasDynamicHelp": false,
|
|
3609
|
+
"multiple": false,
|
|
3610
|
+
"type": "option"
|
|
3611
|
+
}
|
|
3612
|
+
},
|
|
3613
|
+
"hasDynamicHelp": false,
|
|
3614
|
+
"hiddenAliases": [],
|
|
3615
|
+
"id": "workspace:use",
|
|
3616
|
+
"pluginAlias": "linmux",
|
|
3617
|
+
"pluginName": "linmux",
|
|
3618
|
+
"pluginType": "core",
|
|
3619
|
+
"strict": true,
|
|
3620
|
+
"enableJsonFlag": true,
|
|
3621
|
+
"isESM": true,
|
|
3622
|
+
"relativePath": [
|
|
3623
|
+
"dist",
|
|
3624
|
+
"commands",
|
|
3625
|
+
"workspace",
|
|
3626
|
+
"use.js"
|
|
3627
|
+
]
|
|
3628
|
+
}
|
|
3629
|
+
},
|
|
3630
|
+
"version": "0.1.0"
|
|
3631
|
+
}
|