@kyaukyuai/linear-cli 2.1.0 → 2.2.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/CHANGELOG.md +14 -1
- package/README.md +66 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.2.0] - 2026-03-15
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- added `workflow-state list` and `workflow-state view` commands with team-scoped and JSON output support
|
|
10
|
+
- added `user list` and `user view` commands for organization-wide user lookup with JSON output support
|
|
11
|
+
- added `project-label list` plus `project label add/remove` commands for project label discovery and assignment
|
|
12
|
+
|
|
13
|
+
### Improved
|
|
14
|
+
|
|
15
|
+
- documented ClawHub skill publishing for the published `kyaukyuai-linear-cli` slug and fixed npm release tarball handling for future releases
|
|
16
|
+
|
|
5
17
|
## [2.1.0] - 2026-03-13
|
|
6
18
|
|
|
7
19
|
### Added
|
|
@@ -456,7 +468,8 @@
|
|
|
456
468
|
- adds a -t, --title flag to the `issue pr` command, allowing you to provide a PR title that is different than linear's issue title
|
|
457
469
|
- allows linear issue identifiers to be passed in as arguments to the issue commands as an alternative to parsing the branch name, e.g. `linear issue show ABC-123`
|
|
458
470
|
|
|
459
|
-
[Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.
|
|
471
|
+
[Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.0...HEAD
|
|
472
|
+
[2.2.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.1.0...v2.2.0
|
|
460
473
|
[2.1.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.1...v2.1.0
|
|
461
474
|
[2.0.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.0...v2.0.1
|
|
462
475
|
[2.0.0]: https://github.com/kyaukyuai/linear-cli/compare/v1.11.1...v2.0.0
|
package/README.md
CHANGED
|
@@ -93,6 +93,9 @@ compared to upstream, this fork adds and maintains several capabilities aimed at
|
|
|
93
93
|
- issue workflow commands for `search`, `assign`, `move`, `priority`, `estimate`, `label add/remove`, comment delete, relations, and attachments
|
|
94
94
|
- inbox notification commands for `list`, `count`, `read`, and `archive`
|
|
95
95
|
- webhook commands for `list`, `view`, `create`, `update`, and `delete`
|
|
96
|
+
- workflow state commands for `list` and `view`
|
|
97
|
+
- user commands for `list` and `view`
|
|
98
|
+
- project label commands for `list` and `project label add/remove`
|
|
96
99
|
- JSON output for scripting across issue, cycle, project, and document commands
|
|
97
100
|
- workspace-aware auth management with keyring migration and default workspace support
|
|
98
101
|
- generated AI-agent skill docs, Claude plugin metadata, npm publishing, and Homebrew tap release plumbing
|
|
@@ -184,6 +187,8 @@ linear team autolinks # configure GitHub repository autolinks for Linear issues
|
|
|
184
187
|
```bash
|
|
185
188
|
linear project list # list projects
|
|
186
189
|
linear project view # view project details
|
|
190
|
+
linear project label add <projectIdOrSlug> <labelNameOrId> # attach a project label
|
|
191
|
+
linear project label remove <projectIdOrSlug> <labelNameOrId> # detach a project label
|
|
187
192
|
```
|
|
188
193
|
|
|
189
194
|
### milestone commands
|
|
@@ -264,6 +269,39 @@ linear webhook delete <webhookId> --yes
|
|
|
264
269
|
linear webhook list --json
|
|
265
270
|
```
|
|
266
271
|
|
|
272
|
+
### workflow state commands
|
|
273
|
+
|
|
274
|
+
inspect workflow states directly, without going through issue mutations.
|
|
275
|
+
|
|
276
|
+
```bash
|
|
277
|
+
linear workflow-state list --team ENG
|
|
278
|
+
linear workflow-state list --json
|
|
279
|
+
linear workflow-state view <workflowStateId>
|
|
280
|
+
linear workflow-state view <workflowStateId> --json
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
### project label commands
|
|
284
|
+
|
|
285
|
+
inspect workspace project labels directly with a primitive GraphQL-aligned surface.
|
|
286
|
+
|
|
287
|
+
```bash
|
|
288
|
+
linear project-label list
|
|
289
|
+
linear project-label list --include-archived
|
|
290
|
+
linear project-label list --json
|
|
291
|
+
```
|
|
292
|
+
|
|
293
|
+
### user commands
|
|
294
|
+
|
|
295
|
+
inspect workspace users directly with a primitive GraphQL-aligned surface.
|
|
296
|
+
|
|
297
|
+
```bash
|
|
298
|
+
linear user list
|
|
299
|
+
linear user list --all
|
|
300
|
+
linear user list --json
|
|
301
|
+
linear user view <userId>
|
|
302
|
+
linear user view <userId> --json
|
|
303
|
+
```
|
|
304
|
+
|
|
267
305
|
### other commands
|
|
268
306
|
|
|
269
307
|
```bash
|
|
@@ -325,6 +363,34 @@ npx skills add kyaukyuai/linear-cli
|
|
|
325
363
|
|
|
326
364
|
view the skill at [skills.sh/kyaukyuai/linear-cli/linear-cli](https://skills.sh/kyaukyuai/linear-cli/linear-cli)
|
|
327
365
|
|
|
366
|
+
### clawhub publish for maintainers
|
|
367
|
+
|
|
368
|
+
if you want to publish the generated skill to ClawHub, use the `skills/linear-cli/` directory as the publish target.
|
|
369
|
+
|
|
370
|
+
> **note:** the CLI is `clawhub`, not `clawdhub`
|
|
371
|
+
|
|
372
|
+
```bash
|
|
373
|
+
cd skills/linear-cli
|
|
374
|
+
npx clawhub@latest login
|
|
375
|
+
npx clawhub@latest whoami
|
|
376
|
+
npx clawhub@latest publish . \
|
|
377
|
+
--slug kyaukyuai-linear-cli \
|
|
378
|
+
--name "Linear CLI" \
|
|
379
|
+
--version 2.1.0 \
|
|
380
|
+
--changelog "Refresh skill docs for linear-cli v2.1.0" \
|
|
381
|
+
--tags latest
|
|
382
|
+
```
|
|
383
|
+
|
|
384
|
+
guidance:
|
|
385
|
+
|
|
386
|
+
- publish from `skills/linear-cli/`, not the repository root
|
|
387
|
+
- keep `--slug kyaukyuai-linear-cli` and `--name "Linear CLI"` stable unless the public skill identity changes
|
|
388
|
+
- when the skill matches a CLI release, prefer using the same version as `deno.json` and `CHANGELOG.md`
|
|
389
|
+
- if the skill contents changed but no CLI release was cut, bump the skill version independently before publishing
|
|
390
|
+
- run `deno task generate-skill-docs` first if command help or skill references changed
|
|
391
|
+
|
|
392
|
+
the generic `linear-cli` slug is already taken on ClawHub, so this fork publishes as `kyaukyuai-linear-cli`.
|
|
393
|
+
|
|
328
394
|
## development
|
|
329
395
|
|
|
330
396
|
### release operations
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "@kyaukyuai/linear-cli",
|
|
26
|
-
"version": "2.
|
|
26
|
+
"version": "2.2.0"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/cliui": {
|
|
29
29
|
"engines": {
|
|
@@ -542,5 +542,5 @@
|
|
|
542
542
|
}
|
|
543
543
|
},
|
|
544
544
|
"requires": true,
|
|
545
|
-
"version": "2.
|
|
545
|
+
"version": "2.2.0"
|
|
546
546
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"artifactDownloadUrls": [
|
|
3
|
-
"https://github.com/kyaukyuai/linear-cli/releases/download/v2.
|
|
3
|
+
"https://github.com/kyaukyuai/linear-cli/releases/download/v2.2.0"
|
|
4
4
|
],
|
|
5
5
|
"bin": {
|
|
6
6
|
"linear": "run-linear.js"
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"zipExt": ".tar.xz"
|
|
86
86
|
}
|
|
87
87
|
},
|
|
88
|
-
"version": "2.
|
|
88
|
+
"version": "2.2.0",
|
|
89
89
|
"volta": {
|
|
90
90
|
"node": "18.14.1",
|
|
91
91
|
"npm": "9.5.0"
|