linear-issue▌
n8n-io/n8n · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Start work on Linear issue $ARGUMENTS
Linear Issue Analysis
Start work on Linear issue $ARGUMENTS
Prerequisites
This skill depends on external tools. Before proceeding, verify availability:
Required:
- Linear MCP (
mcp__linear): Must be connected. Without it the skill cannot function at all. - GitHub CLI (
gh): Must be installed and authenticated. Rungh auth statusto verify. Used to fetch linked PRs and issues.
Optional (graceful degradation):
- Notion MCP (
mcp__notion): Needed only if the issue links to Notion docs. If unavailable, note the Notion links in the summary and tell the user to check them manually. - Loom transcript skill (
/loom-transcript): Needed only if the issue contains Loom videos. If unavailable, note the Loom links in the summary for the user to watch. - curl: Used to download images. Almost always available; if missing, skip image downloads and note it.
If a required tool is missing, stop and tell the user what needs to be set up before continuing.
Instructions
Follow these steps to gather comprehensive context about the issue:
1. Fetch the Issue and Comments from Linear
Use the Linear MCP tools to fetch the issue details and comments together:
- Use
mcp__linear__get_issuewith the issue ID to get full details including attachments - Include relations to see blocking/related/duplicate issues
- Immediately after, use
mcp__linear__list_commentswith the issue ID to fetch all comments
Both calls should be made together in the same step to gather the complete context upfront.
2. Analyze Attachments and Media (MANDATORY)
IMPORTANT: This step is NOT optional. You MUST scan and fetch all visual content from BOTH the issue description AND all comments.
Screenshots/Images (ALWAYS fetch):
- Scan the issue description AND all comments for ALL image URLs:
<img>tags- Markdown images
 - Raw URLs (github.com/user-attachments, imgur.com, etc.)
- For EACH image found (in description or comments):
- Download using
curl -sL "url" -o /path/to/image.png(GitHub URLs require following redirects) OR the linear mcp - Use the
Readtool on the downloaded file to view it - Describe what you see in detail
- Download using
- Do NOT skip images - they often contain critical context like error messages, UI states, or configuration
Loom Videos (ALWAYS fetch transcript):
- Scan the issue description AND all comments for Loom URLs (loom.com/share/...)
- For EACH Loom video found (in description or comments):
- Use the
/loom-transcriptskill to fetch the FULL transcript - Summarize key points, timestamps, and any demonstrated issues
- Use the
- Loom videos often contain crucial reproduction steps and context that text alone cannot convey
3. Fetch Related Context
Related Linear Issues:
- Use
mcp__linear__get_issuefor any issues mentioned in relations (blocking, blocked by, related, duplicates) - Summarize how they relate to the main issue
GitHub PRs and Issues:
- If GitHub links are mentioned, use
ghCLI to fetch PR/issue details:gh pr view <number>for pull requestsgh issue view <number>for issues
- Download images attached to issues:
curl -H "Authorization: token $(gh auth token)" -L <image-url> -o image.png
Notion Documents:
- If Notion links are present, use
mcp__notion__notion-fetchwith the Notion URL or page ID to retrieve document content - Summarize relevant documentation
4. Review Comments
Comments were already fetched in Step 1. Review them for:
- Additional context and discussion history
- Any attachments or media linked in comments (process in Step 2)
- Clarifications or updates to the original issue description
5. Identify Affected Node (if applicable)
Determine whether this issue is specific to a particular n8n node (e.g. a trigger, action, or tool node). Look for clues in:
- The issue title (e.g. "Linear trigger", "Slack node", "HTTP Request")
- The issue description and comments mentioning node names
- Labels or tags on the issue (e.g.
node:linear,node:slack) - Screenshots showing a specific node's configuration or error
If the issue is node-specific:
-
Find the node type ID. Use
Grepto search for the node's display name (or keywords from it) inpackages/frontend/editor-ui/data/node-popularity.jsonto find the exact node type ID. For reference, common ID patterns are:- Core nodes:
n8n-nodes-base.<camelCaseName>(e.g. "HTTP Request" →n8n-nodes-base.httpRequest) - Trigger variants:
n8n-nodes-base.<name>Trigger(e.g. "Gmail Trigger" →n8n-nodes-base.gmailTrigger) - Tool variants:
n8n-nodes-base.<name>Tool(e.g. "Google Sheets Tool" →n8n-nodes-base.googleSheetsTool) - LangChain/AI nodes:
@n8n/n8n-nodes-langchain.<camelCaseName>(e.g. "OpenAI Chat Model" →@n8n/n8n-nodes-langchain.lmChatOpenAi)
- Core nodes:
-
Look up the node's popularity score from
packages/frontend/editor-ui/data/node-popularity.json. UseGrepto search for the node ID in that file. The popularity score is a log-scale value between 0 and 1. Use these thresholds to classify:Score Level Description Examples ≥ 0.8 High Core/widely-used nodes, top ~5% HTTP Request (0.98), Google Sheets (0.95), Postgres (0.83), Gmail Trigger (0.80) 0.4–0.8 Medium Regularly used integrations Slack (0.78), GitHub (0.64), Jira (0.65), MongoDB (0.63) < 0.4 Low Niche or rarely used nodes Amqp (0.34), Wise (0.36), CraftMyPdf (0.33) Include the raw score and the level (high/medium/low) in the summary.
-
If the node is not found in the popularity file, note that it may be a community node or a very new/niche node.
6. Assess Effort/Complexity
After gathering all context, assess the effort required to fix/implement the issue. Use the following T-shirt sizes:
| Size | Approximate effort |
|---|---|
| XS | ≤ 1 hour |
| S | ≤ 1 day |
| M | 2-3 days |
| L | 3-5 days |
| XL | ≥ 6 days |
To make this assessment, consider:
- Scope of changes: How many files/packages need to be modified? Is it a single node fix or a cross-cutting change?
- Complexity: Is it a straightforward parameter change, a new API integration, a new credential type, or an architectural change?
- Testing: How much test coverage is needed? Are E2E tests required?
- Risk: Could this break existing functionality? Does it need backward compatibility?
- Dependencies: Are there external API changes, new packages, or cross-team coordination needed?
- Documentation: Does this require docs updates, migration guides, or changelog entries?
Provide the T-shirt size along with a brief justification explaining the key factors that drove the estimate.
7. Present Summary
Before presenting, verify you have completed:
- Downloaded and viewed ALL images in the description AND comments
- Fetched transcripts for ALL Loom videos in the description AND comments
- Fetched ALL linked GitHub issues/PRs via
ghCLI - Listed all comments on the issue
- Checked whether the issue is node-specific and looked up popularity if so
- Assessed effort/complexity with T-shirt size
After gathering all context, present a comprehensive summary including:
- Issue Overview: Title, status, priority, assignee, labels
- Description: Full issue description with any clarifications from comments
- Visual Context: Summary of screenshots/videos (what you observed in each)
- Affected Node (if applicable): Node name, node type ID (
n8n-nodes-base.xxx), popularity score with level (e.g.0.64 — medium popularity) - Related Issues: How this connects to other work
- Technical Context: Any PRs, code references, or documentation
- Effort Estimate: T-shirt size (XS/S/M/L/XL) with justification
- Next Steps: Suggested approach based on all gathered context
Notes
- The issue ID can be provided in formats like:
AI-1975,node-1975, or just1975(will search) - If no issue ID is provided, ask the user for one
How to use linear-issue on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add linear-issue
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches linear-issue from GitHub repository n8n-io/n8n and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate linear-issue. Access the skill through slash commands (e.g., /linear-issue) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★63 reviews- ★★★★★Kiara Chen· Dec 28, 2024
Registry listing for linear-issue matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Liam Perez· Dec 20, 2024
We added linear-issue from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Ganesh Mohane· Dec 16, 2024
linear-issue reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Anaya Garcia· Dec 16, 2024
linear-issue reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Aarav Desai· Dec 16, 2024
Solid pick for teams standardizing on skills: linear-issue is focused, and the summary matches what you get after install.
- ★★★★★Kiara Zhang· Dec 12, 2024
Keeps context tight: linear-issue is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Aarav Dixit· Dec 12, 2024
Useful defaults in linear-issue — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Amina White· Dec 4, 2024
linear-issue has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Kaira Ramirez· Nov 23, 2024
linear-issue fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Chen White· Nov 19, 2024
Useful defaults in linear-issue — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 63