linear
Use when managing Linear issues, projects, cycles, or team workflows. Triggers on creating, updating, triaging, or querying Linear tickets.
What this skill does
# Linear
Structured workflow for managing issues, projects, and team workflows in Linear via the Linear MCP server (OAuth-based, remote).
## Prerequisites
- Linear MCP server connected via your MCP integration (OAuth)
- If any Linear MCP tool call fails, the user may need to reconnect their Linear integration.
## Workflow
**Follow these steps in order.**
### Step 1: Clarify Scope
Confirm the user's goal: issue creation, triage, sprint planning, status update, documentation, workload review, etc. Identify team, project, priority, labels, cycle, and due dates as needed.
### Step 2: Read First
Always query before mutating. Build context with read operations:
| Goal | Tool |
|------|------|
| Find issues | `list_issues` (filter by team, assignee, state, label, project, priority) |
| My open work | `list_issues` with `assignee: "me"` |
| Issue details | `get_issue` with issue identifier (e.g., `CON-435`) |
| Team lookup | `list_teams` |
| Project lookup | `list_projects`, `get_project` |
| Available states | `list_issue_statuses` (requires `team`) |
| Available labels | `list_issue_labels` (optional `team` filter) |
| Cycles | `list_cycles` |
| Documents | `list_documents`, `get_document`, `search_documentation` |
| Comments | `list_comments` (requires `issueId`) |
| Users | `list_users`, `get_user` |
| Initiatives | `list_initiatives`, `get_initiative` |
| Milestones | `list_milestones` (requires `project`) |
| Status updates | `get_status_updates` |
### Step 3: Create or Update
Use `save_issue` for both creating and updating:
**Creating:** `title` and `team` are required. Omit `id`.
```
save_issue(title: "...", team: "Content", description: "...", priority: 3, labels: ["Bug"])
```
**Updating:** Pass `id` with the issue identifier.
```
save_issue(id: "CON-435", state: "In Progress", assignee: "me")
```
Other mutation tools:
- `save_comment` - add comments to issues
- `save_project`, `save_initiative`, `save_milestone` - project management
- `save_status_update` - post status updates
- `create_issue_label` - create new labels
- `create_document`, `update_document` - Linear docs
- `create_attachment` - attach files to issues
### Step 4: Summarize
After mutations, report what changed. Call out remaining gaps, blockers, or suggested next actions.
## Priority Values
| Value | Meaning |
|-------|---------|
| 0 | None |
| 1 | Urgent |
| 2 | High |
| 3 | Normal |
| 4 | Low |
## Practical Workflows
- **Sprint planning:** List open issues for a team, pick top items by priority, assign to a cycle
- **Bug triage:** List critical/high-priority bugs, rank by impact, move top items to In Progress
- **Team workload:** Group active issues by assignee, flag overloaded members, suggest redistributions
- **Release planning:** Create a project with milestones, generate issues with estimates
- **Status updates:** Find issues with stale updates, add status comments based on current state
- **Smart labeling:** Analyze unlabeled issues, suggest/apply labels, create missing categories
- **Cross-project dependencies:** Find blocked issues, identify blockers, create linked issues if missing
## Tips
- Use `assignee: "me"` for personal issue queries
- Batch related operations logically; don't create 20 issues one at a time without confirmation
- Use `query` parameter for text search across issue titles and descriptions
- `list_issues` with `state: "In Progress"` finds active work
- Duration filters use ISO-8601: `createdAt: "-P7D"` for last 7 days
- Link attachments to issues with the `links` field on `save_issue`: `[{url, title}]`
- Relations (`blocks`, `blockedBy`, `relatedTo`) are append-only on `save_issue`
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.