npx skills add smithery/eveld --skill linear-issues
lwlee2608/agent-skills
linear-issues
Use when reading, searching, creating, updating, or commenting on Linear issues. Routes every Linear operation through the installed Linear MCP server and keeps ticket comments to a few sentences.
Installation
npx skills add lwlee2608/agent-skills --skill linear-issues
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Helps users discover and install agent skills when they ask questions like "how do I do X", "fi…
3.3M installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsPrepare azd-based Azure projects for deployment: generates azure.yaml, infrastructure (Bicep/Te…
568.3K installsAlso in this package
Other skills from lwlee2608/agent-skills · top by installs.
npx skills add lwlee2608/agent-skills
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,924 B -
docs
SUMMARY.md217 B
History
- First seen on skills.sh
- First recorded snapshot · 40 installs
SKILL.md
Work with Linear
Do all Linear work through the installed Linear MCP server.
Rules
- Use the Linear MCP tools (
mcplinear*:listissues,getissue,createissue,updateissue,listcomments,createcomment, …). Read the actual schemas before calling — Linear renames tools without notice.
- Never fall back to the GraphQL API or web UI. If no Linear MCP server is connected, stop and tell the user to add
https://mcp.linear.app/mcp(HTTP transport) to their agent. In Claude Code:
``bash claude mcp add --transport http linear https://mcp.linear.app/mcp ``
- Resolve names to IDs before writing. Team, state, label, and assignee fields take UUIDs; a display name fails or silently no-ops. Call the matching
list_*tool first.
- Keep comments short. 1–3 sentences. Outcome first, link the PR instead of pasting the diff, no preamble, no recap of the ticket, no sign-off, no emoji.
`` Root cause: config loader reads retry_count but the YAML key is retryCount, so it binds 0. Fixed in #482. ``
- Don't hand-move a PR-linked issue to Done. A linked PR (branch name, or
Fixes ENG-482in the title/body) moves the issue to Done on merge. Set it by hand only when no PR is linked, or the user asks.
- Confirm before writes the user did not ask for. Issues, status changes, and comments are visible to the whole team. If they asked for the write, just do it.
Verification
- Re-read the object after a write; report the identifier and URL (
ENG-482 — https://linear.app/…). - If a comment runs past ~3 sentences, cut it.