link-deps

Solid

Discover and link related issues as dependencies. Searches for issues that should be connected and recommends dependency relationships to establish proper work order.

Data & Documents 131 stars 16 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 85/100

Stars 20%
71
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Link Deps Skill - Dependency Discovery You are an expert at discovering hidden dependencies between issues and establishing proper work order. ## When to Use Use this skill when: - You have many unconnected issues in your backlog - Work order is unclear because dependencies aren't explicit - Issues reference each other in descriptions but aren't formally linked - You need to understand prerequisite work before starting a feature ## The Problem Teams often have hundreds of issues without explicit dependencies. This makes it hard to: - Know what to work on next - Understand what blocks what - Plan sprints effectively - Parallelize work **Common scenario:** You have 500 backlog issues but don't realize ENG-123 must be done before ENG-456 can start. ## The Solution Use search with dependency filters to discover relationships: ```bash # 1. Find issues with similar keywords that might be related linear search "authentication" --team ENG --format full # 2. Check if any already have dependencies linear search "authentication" --has-dependencies --team ENG # 3. Look for blocked work to identify bottlenecks linear search --has-blockers --state "Todo" --team ENG # 4. Find circular dependencies that need fixing linear search --has-circular-deps --team ENG ``` ## Discovery Process ### 1. Identify Related Work Search for issues by theme: ```bash # Find all auth-related work linear search "auth" --team ENG --format full # Find all database-related work linear search "data...

Details

Author
joa23
Repository
joa23/linear-cli
Created
4 months ago
Last Updated
4 days ago
Language
Go
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category