Skip to content

Commit aff8f82

Browse files
committed
chore: remove auth login warning and sync plugin versions to 1.9.1
The auth login command is now stable, so remove the warning from README. Regenerated skill docs and updated marketplace.json and plugin.json versions to match deno.json.
1 parent 923a63c commit aff8f82

File tree

4 files changed

+42
-23
lines changed

4 files changed

+42
-23
lines changed

.claude-plugin/marketplace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"name": "schpet"
55
},
66
"description": "marketplace for linear-cli claude code plugin",
7-
"version": "1.8.0",
7+
"version": "1.9.1",
88
"plugins": [
99
{
1010
"name": "linear-cli",
1111
"description": "skill for using the linear-cli to manage Linear issues",
12-
"version": "1.8.0",
12+
"version": "1.9.1",
1313
"author": {
1414
"name": "schpet"
1515
},

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "linear-cli",
33
"description": "Manage Linear issues from the command line",
4-
"version": "1.8.0",
4+
"version": "1.9.1",
55
"author": {
66
"name": "schpet"
77
},

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ deno task install
6464

6565
## setup
6666

67-
> [!WARNING]
68-
> The `linear auth login` command is new and may have issues. For stable release setup instructions, see the [v1.8.1 README](https://github.com/schpet/linear-cli/blob/v1.8.1/README.md).
69-
7067
1. create an API key at [linear.app/settings/account/security](https://linear.app/settings/account/security)[^1]
7168

7269
2. authenticate with the CLI:

skills/linear-cli/references/issue.md

Lines changed: 39 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,20 @@ Options:
1919
2020
Commands:
2121
22-
id - Print the issue based on the current git branch
23-
list - List your issues
24-
title [issueId] - Print the issue title
25-
start [issueId] - Start working on an issue
26-
view, v [issueId] - View issue details (default) or open in browser/app
27-
url [issueId] - Print the issue URL
28-
describe [issueId] - Print the issue title and Linear-issue trailer
29-
commits [issueId] - Show all commits for a Linear issue (jj only)
30-
pull-request, pr [issueId] - Create a GitHub pull request with issue details
31-
delete, d [issueId] - Delete an issue
32-
create - Create a linear issue
33-
update [issueId] - Update a linear issue
34-
comment - Manage issue comments
22+
id - Print the issue based on the current git branch
23+
list - List your issues
24+
title [issueId] - Print the issue title
25+
start [issueId] - Start working on an issue
26+
view, v [issueId] - View issue details (default) or open in browser/app
27+
url [issueId] - Print the issue URL
28+
describe [issueId] - Print the issue title and Linear-issue trailer
29+
commits [issueId] - Show all commits for a Linear issue (jj only)
30+
pull-request, pr [issueId] - Create a GitHub pull request with issue details
31+
delete, d [issueId] - Delete an issue
32+
create - Create a linear issue
33+
update [issueId] - Update a linear issue
34+
comment - Manage issue comments
35+
attach <issueId> <filepath> - Attach a file to an issue
3536
```
3637

3738
## Subcommands
@@ -351,10 +352,11 @@ Description:
351352
352353
Options:
353354
354-
-h, --help - Show this help.
355-
-w, --workspace <slug> - Target workspace (uses credentials)
356-
-b, --body <text> - Comment body text
357-
-p, --parent <id> - Parent comment ID for replies
355+
-h, --help - Show this help.
356+
-w, --workspace <slug> - Target workspace (uses credentials)
357+
-b, --body <text> - Comment body text
358+
-p, --parent <id> - Parent comment ID for replies
359+
-a, --attach <filepath> - Attach a file to the comment (can be used multiple times)
358360
```
359361

360362
##### update
@@ -390,3 +392,23 @@ Options:
390392
-w, --workspace <slug> - Target workspace (uses credentials)
391393
-j, --json - Output as JSON
392394
```
395+
396+
### attach
397+
398+
> Attach a file to an issue
399+
400+
```
401+
Usage: linear issue attach <issueId> <filepath>
402+
Version: 1.8.1
403+
404+
Description:
405+
406+
Attach a file to an issue
407+
408+
Options:
409+
410+
-h, --help - Show this help.
411+
-w, --workspace <slug> - Target workspace (uses credentials)
412+
-t, --title <title> - Custom title for the attachment
413+
-c, --comment <body> - Add a comment body linked to the attachment
414+
```

0 commit comments

Comments
 (0)