@kyaukyuai/linear-cli 2.1.0 → 2.2.1

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,28 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [2.2.1] - 2026-03-17
6
+
7
+ ### Fixed
8
+
9
+ - added due date display to `issue view` and `issue list`, and added `issue update --clear-due-date`
10
+
11
+ ### Improved
12
+
13
+ - updated npm publishing to use trusted publishing for future releases
14
+
15
+ ## [2.2.0] - 2026-03-15
16
+
17
+ ### Added
18
+
19
+ - added `workflow-state list` and `workflow-state view` commands with team-scoped and JSON output support
20
+ - added `user list` and `user view` commands for organization-wide user lookup with JSON output support
21
+ - added `project-label list` plus `project label add/remove` commands for project label discovery and assignment
22
+
23
+ ### Improved
24
+
25
+ - documented ClawHub skill publishing for the published `kyaukyuai-linear-cli` slug and fixed npm release tarball handling for future releases
26
+
5
27
  ## [2.1.0] - 2026-03-13
6
28
 
7
29
  ### Added
@@ -456,7 +478,9 @@
456
478
  - 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
479
  - 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
480
 
459
- [Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.1.0...HEAD
481
+ [Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.1...HEAD
482
+ [2.2.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.0...v2.2.1
483
+ [2.2.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.1.0...v2.2.0
460
484
  [2.1.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.1...v2.1.0
461
485
  [2.0.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.0...v2.0.1
462
486
  [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
@@ -160,6 +163,8 @@ linear issue create # create a new issue (interactive prompts)
160
163
  linear issue create -t "title" -d "description" # create with flags
161
164
  linear issue create --project "My Project" --milestone "Phase 1" # create with milestone
162
165
  linear issue update # update an issue (interactive prompts)
166
+ linear issue update ENG-123 --due-date 2026-03-31 # set an issue due date
167
+ linear issue update ENG-123 --clear-due-date # clear an issue due date
163
168
  linear issue update ENG-123 --milestone "Phase 2" # set milestone on existing issue
164
169
  linear issue delete # delete an issue
165
170
  linear issue comment list # list comments on current issue
@@ -184,6 +189,8 @@ linear team autolinks # configure GitHub repository autolinks for Linear issues
184
189
  ```bash
185
190
  linear project list # list projects
186
191
  linear project view # view project details
192
+ linear project label add <projectIdOrSlug> <labelNameOrId> # attach a project label
193
+ linear project label remove <projectIdOrSlug> <labelNameOrId> # detach a project label
187
194
  ```
188
195
 
189
196
  ### milestone commands
@@ -264,6 +271,39 @@ linear webhook delete <webhookId> --yes
264
271
  linear webhook list --json
265
272
  ```
266
273
 
274
+ ### workflow state commands
275
+
276
+ inspect workflow states directly, without going through issue mutations.
277
+
278
+ ```bash
279
+ linear workflow-state list --team ENG
280
+ linear workflow-state list --json
281
+ linear workflow-state view <workflowStateId>
282
+ linear workflow-state view <workflowStateId> --json
283
+ ```
284
+
285
+ ### project label commands
286
+
287
+ inspect workspace project labels directly with a primitive GraphQL-aligned surface.
288
+
289
+ ```bash
290
+ linear project-label list
291
+ linear project-label list --include-archived
292
+ linear project-label list --json
293
+ ```
294
+
295
+ ### user commands
296
+
297
+ inspect workspace users directly with a primitive GraphQL-aligned surface.
298
+
299
+ ```bash
300
+ linear user list
301
+ linear user list --all
302
+ linear user list --json
303
+ linear user view <userId>
304
+ linear user view <userId> --json
305
+ ```
306
+
267
307
  ### other commands
268
308
 
269
309
  ```bash
@@ -325,6 +365,34 @@ npx skills add kyaukyuai/linear-cli
325
365
 
326
366
  view the skill at [skills.sh/kyaukyuai/linear-cli/linear-cli](https://skills.sh/kyaukyuai/linear-cli/linear-cli)
327
367
 
368
+ ### clawhub publish for maintainers
369
+
370
+ if you want to publish the generated skill to ClawHub, use the `skills/linear-cli/` directory as the publish target.
371
+
372
+ > **note:** the CLI is `clawhub`, not `clawdhub`
373
+
374
+ ```bash
375
+ cd skills/linear-cli
376
+ npx clawhub@latest login
377
+ npx clawhub@latest whoami
378
+ npx clawhub@latest publish . \
379
+ --slug kyaukyuai-linear-cli \
380
+ --name "Linear CLI" \
381
+ --version 2.1.0 \
382
+ --changelog "Refresh skill docs for linear-cli v2.1.0" \
383
+ --tags latest
384
+ ```
385
+
386
+ guidance:
387
+
388
+ - publish from `skills/linear-cli/`, not the repository root
389
+ - keep `--slug kyaukyuai-linear-cli` and `--name "Linear CLI"` stable unless the public skill identity changes
390
+ - when the skill matches a CLI release, prefer using the same version as `deno.json` and `CHANGELOG.md`
391
+ - if the skill contents changed but no CLI release was cut, bump the skill version independently before publishing
392
+ - run `deno task generate-skill-docs` first if command help or skill references changed
393
+
394
+ the generic `linear-cli` slug is already taken on ClawHub, so this fork publishes as `kyaukyuai-linear-cli`.
395
+
328
396
  ## development
329
397
 
330
398
  ### release operations
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@kyaukyuai/linear-cli",
26
- "version": "2.1.0"
26
+ "version": "2.2.1"
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.1.0"
545
+ "version": "2.2.1"
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.1.0"
3
+ "https://github.com/kyaukyuai/linear-cli/releases/download/v2.2.1"
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.1.0",
88
+ "version": "2.2.1",
89
89
  "volta": {
90
90
  "node": "18.14.1",
91
91
  "npm": "9.5.0"