@dabble/linear-cli 1.0.5 → 1.1.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/README.md +3 -1
- package/bin/linear.mjs +659 -183
- package/claude/commands/standup.md +6 -5
- package/claude/skills/linear-cli/SKILL.md +83 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,9 +50,11 @@ linear whoami # Show current user and team
|
|
|
50
50
|
|
|
51
51
|
### Issues
|
|
52
52
|
```bash
|
|
53
|
+
linear issues # Default: backlog + todo
|
|
53
54
|
linear issues --unblocked # Ready to work on
|
|
54
55
|
linear issues --open # All non-completed issues
|
|
55
|
-
linear issues --in-progress
|
|
56
|
+
linear issues --status in-progress # Filter by status
|
|
57
|
+
linear issues --status todo --status in-progress # Multiple statuses
|
|
56
58
|
linear issues --mine # Only your issues
|
|
57
59
|
linear issues --label bug # Filter by label
|
|
58
60
|
linear issue show ISSUE-1 # Full details with parent context
|