@kyaukyuai/linear-cli 2.0.1 → 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 CHANGED
@@ -2,6 +2,34 @@
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
+
17
+ ## [2.1.0] - 2026-03-13
18
+
19
+ ### Added
20
+
21
+ - added inbox notification commands for `list`, `count`, `read`, and `archive`, including `--json` output for scripting
22
+ - added webhook commands for `list`, `view`, `create`, `update`, and `delete` with team-scoped and all-public-team support
23
+
24
+ ### Changed
25
+
26
+ - deprecated `issue search`; it now exits with guidance to use `issue list`, `issue list --json`, or `api` instead of the removed search endpoint
27
+
28
+ ### Improved
29
+
30
+ - hardened release automation by splitting npm publish from cargo-dist release flow, skipping already-published npm/JSR versions, removing npm release-asset polling, and updating GitHub Actions for the Node 24 transition
31
+ - added a release runbook for verification, recovery steps, and manual publish fallback
32
+
5
33
  ## [2.0.1] - 2026-03-13
6
34
 
7
35
  ### Improved
@@ -440,7 +468,9 @@
440
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
441
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`
442
470
 
443
- [Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.1...HEAD
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
473
+ [2.1.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.1...v2.1.0
444
474
  [2.0.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.0...v2.0.1
445
475
  [2.0.0]: https://github.com/kyaukyuai/linear-cli/compare/v1.11.1...v2.0.0
446
476
  [1.11.1]: https://github.com/schpet/linear-cli/compare/v1.11.0...v1.11.1
package/README.md CHANGED
@@ -91,6 +91,11 @@ compared to upstream, this fork adds and maintains several capabilities aimed at
91
91
 
92
92
  - cycle workflows beyond listing and viewing, including `cycle current`, `cycle next`, `cycle create`, `cycle add`, and `cycle remove`
93
93
  - issue workflow commands for `search`, `assign`, `move`, `priority`, `estimate`, `label add/remove`, comment delete, relations, and attachments
94
+ - inbox notification commands for `list`, `count`, `read`, and `archive`
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`
94
99
  - JSON output for scripting across issue, cycle, project, and document commands
95
100
  - workspace-aware auth management with keyring migration and default workspace support
96
101
  - generated AI-agent skill docs, Claude plugin metadata, npm publishing, and Homebrew tap release plumbing
@@ -182,6 +187,8 @@ linear team autolinks # configure GitHub repository autolinks for Linear issues
182
187
  ```bash
183
188
  linear project list # list projects
184
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
185
192
  ```
186
193
 
187
194
  ### milestone commands
@@ -235,6 +242,66 @@ linear document delete <slug> --permanent # permanent delete
235
242
  linear document delete --bulk <slug1> <slug2> # bulk delete
236
243
  ```
237
244
 
245
+ ### notification commands
246
+
247
+ manage your Linear inbox from the command line with a primitive GraphQL-aligned surface.
248
+
249
+ ```bash
250
+ linear notification list # list recent notifications
251
+ linear notification list --unread # show only unread notifications
252
+ linear notification count # show unread notification count
253
+ linear notification read <notificationId> # mark a notification as read
254
+ linear notification archive <notificationId> # archive a notification
255
+ linear notification list --json # output as JSON
256
+ ```
257
+
258
+ ### webhook commands
259
+
260
+ manage Linear webhooks with a primitive GraphQL-aligned surface.
261
+
262
+ ```bash
263
+ linear webhook list
264
+ linear webhook list --team ENG
265
+ linear webhook view <webhookId>
266
+ linear webhook create --url https://example.com/linear --resource-types Issue,Comment
267
+ linear webhook update <webhookId> --disabled
268
+ linear webhook delete <webhookId> --yes
269
+ linear webhook list --json
270
+ ```
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
+
238
305
  ### other commands
239
306
 
240
307
  ```bash
@@ -296,8 +363,40 @@ npx skills add kyaukyuai/linear-cli
296
363
 
297
364
  view the skill at [skills.sh/kyaukyuai/linear-cli/linear-cli](https://skills.sh/kyaukyuai/linear-cli/linear-cli)
298
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
+
299
394
  ## development
300
395
 
396
+ ### release operations
397
+
398
+ maintainer release and publish recovery steps are documented in [docs/release-runbook.md](docs/release-runbook.md).
399
+
301
400
  ### updating skill documentation
302
401
 
303
402
  the skill documentation in `skills/linear-cli/` is automatically generated from the CLI help text. after making changes to commands or help text, regenerate the docs:
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@kyaukyuai/linear-cli",
26
- "version": "2.0.1"
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.0.1"
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.0.1"
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.0.1",
88
+ "version": "2.2.0",
89
89
  "volta": {
90
90
  "node": "18.14.1",
91
91
  "npm": "9.5.0"