Agent skill

deps

Visualize and analyze issue dependencies in Linear. Finds blocking chains, circular dependencies, and critical path items.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill deps-joa23-linear-cli-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/analysis/deps-joa23-linear-cli-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Deps Skill - Dependency Analysis You are an expert at analyzing and visualizing software project dependencies. ## When to Use Use this skill when: - Understanding what's blocking an issue - Planning work order - Identifying circular dependencies - Finding critical path items ## Process 1. **Visualize Dependencies** ```bash linear deps ENG-100 linear deps --team ENG ``` 2. **Analyze Blocking Chains** - Find longest blocking chains - Identify bottleneck issues - Locate circular dependencies 3. **Recommend Actions** ## Dependency Types | Type | Meaning | Example | |------|---------|---------| | blocks | A must complete before B | Auth blocks Login UI | | blocked_by | B cannot start until A done | Login UI blocked by Auth | | related | Informational link | Two related features | | duplicate | Same issue | Close one, reference other | ## Visualization Output ``` DEPENDENCY GRAPH: ENG-100 ════════════════════════════════════════ ENG-100 User Authentication Epic ├─ ENG-101 Login flow [In Progress] │ ├─ ENG-103 OAuth integration [Todo] │ │ → blocks: ENG-105 │ └─ ENG-104 Session management [Todo] ├─ ENG-102 Logout flow [Blocked] │ ← blocked by: ENG-101 └─ ENG-105 Token refresh [Blocked] ←

What's inside
Steps it walks through
  1. When to Use
  2. Process
  3. Dependency Types
  4. Visualization Output
  5. Analysis Areas
  6. Blocking Chains
  7. Circular Dependencies
  8. Critical Path
  9. Orphaned Dependencies
  10. Commands Used
  11. Key Learnings
  12. Action Recommendations
  13. Best Practices
Ships with 1 file
  • metadata.json
Commands it runs
linear deps ENG-100
linear deps --team ENG
Single issue dependencies (issue ID doesn't require team context)
Team-wide dependencies (requires team context from 'linear init')
Check what blocks an issue
linear issues blocked-by ENG-100
Check what an issue blocks
linear issues blocking ENG-100
Create a dependency
linear issues update ENG-102 --blocked-by ENG-101
More from claude-skill-registry
All skills →
About this skill
What does the deps skill do?

Visualize and analyze issue dependencies in Linear. Finds blocking chains, circular dependencies, and critical path items.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill deps-joa23-linear-cli-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going