openclaw-linear 0.5.3 → 0.5.4
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/package.json +1 -1
- package/skills/linear/SKILL.md +4 -2
package/package.json
CHANGED
package/skills/linear/SKILL.md
CHANGED
|
@@ -53,7 +53,7 @@ Manage Linear issues: view details, search/filter, create, update, and delete.
|
|
|
53
53
|
| `view` | `issueId` | — |
|
|
54
54
|
| `list` | — | `state`, `assignee`, `team`, `project`, `limit` |
|
|
55
55
|
| `create` | `title` | `description`, `assignee`, `state`, `priority`, `team`, `project`, `parent`, `labels` |
|
|
56
|
-
| `update` | `issueId` | `title`, `description`, `assignee`, `state`, `priority`, `labels`, `project` |
|
|
56
|
+
| `update` | `issueId` | `title`, `description`, `appendDescription`, `assignee`, `state`, `priority`, `labels`, `project` |
|
|
57
57
|
| `delete` | `issueId` | — |
|
|
58
58
|
|
|
59
59
|
- `issueId` accepts human-readable identifiers like `ENG-123`
|
|
@@ -63,6 +63,8 @@ Manage Linear issues: view details, search/filter, create, update, and delete.
|
|
|
63
63
|
- `priority` is numeric: 0=None, 1=Urgent, 2=High, 3=Medium, 4=Low
|
|
64
64
|
- `labels` is an array of label names
|
|
65
65
|
- `parent` accepts a parent issue identifier for creating sub-issues
|
|
66
|
+
- `appendDescription` (boolean) — when true, appends `description` to the existing description instead of replacing it (update only)
|
|
67
|
+
- `description` supports markdown. **Use actual newlines for line breaks, not `\n` escape sequences** — literal `\n` will appear as-is in the ticket instead of creating line breaks
|
|
66
68
|
|
|
67
69
|
### `linear_comment` — manage comments
|
|
68
70
|
|
|
@@ -74,7 +76,7 @@ Read, create, and update comments on Linear issues.
|
|
|
74
76
|
| `add` | `issueId`, `body` | `parentCommentId` |
|
|
75
77
|
| `update` | `commentId`, `body` | — |
|
|
76
78
|
|
|
77
|
-
- `body` supports markdown
|
|
79
|
+
- `body` supports markdown. **Use actual newlines for line breaks, not `\n` escape sequences** — literal `\n` will appear as-is in the comment instead of creating line breaks
|
|
78
80
|
- `parentCommentId` threads the comment as a reply
|
|
79
81
|
|
|
80
82
|
### `linear_team` — teams and members
|