Marketplace linear-issues-write
Create and update Linear issues via CLI (write operations)
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/bind/linear-issues-write" ~/.claude/skills/aiskillstore-marketplace-linear-issues-write && rm -rf "$T"
manifest:
skills/bind/linear-issues-write/SKILL.mdsource content
Overview
CLI tools for creating and updating Linear issues. Requires
LINEAR_API_KEY set in <git-root>/.env or exported in the environment.
Prerequisites
- bun runtime installed
set inLINEAR_API_KEY
or environment<git-root>/.env
Commands
Create Issue
bun .opencode/skill/linear-issues-write/create-issue.js --title "..." --team <team> [options]
Required:
- Issue title--title <title>
- Team name (e.g., Engineering)--team <name>
Options:
- Issue description--description <text>
- Assignee name--assignee <name>
- Priority: 0=none, 1=urgent, 2=high, 3=medium, 4=low--priority <0-4>
- Comma-separated labels (e.g., "Bug,SOC2")--labels <labels>
- Project name--project <name>
- Output as JSON--json
Examples:
bun .opencode/skill/linear-issues-write/create-issue.js --title "Fix login bug" --team Engineering --priority 2 bun .opencode/skill/linear-issues-write/create-issue.js --title "New feature" --team Engineering --labels "Feature" --assignee "John Adams" bun .opencode/skill/linear-issues-write/create-issue.js --title "Security fix" --team Engineering --project "Monticello" --priority 1
Update Issue
bun .opencode/skill/linear-issues-write/update-issue.js <issue-id> [options]
Arguments:
- Issue identifier (e.g., ENG-123) or UUIDissue-id
Options:
- New title--title <title>
- New description--description <text>
- New status (e.g., "In Progress", "Done")--status <status>
- New assignee (use "none" to unassign)--assignee <name>
- New priority--priority <0-4>
- Replace all labels--labels <labels>
- Add labels without removing existing--add-labels <labels>
- Set project (use "none" to remove)--project <name>
- Output as JSON--json
Examples:
bun .opencode/skill/linear-issues-write/update-issue.js ENG-123 --status "In Progress" bun .opencode/skill/linear-issues-write/update-issue.js ENG-123 --assignee "Thomas Jefferson" --priority 2 bun .opencode/skill/linear-issues-write/update-issue.js ENG-123 --add-labels "Bug,Urgent" bun .opencode/skill/linear-issues-write/update-issue.js ENG-123 --assignee none
Notes
- Team, user, and label names are resolved automatically (case-insensitive)
- Use
flag for machine-readable output suitable for scripting--json - All commands support
for detailed usage information--help