link-workspace-packages

Link workspace packages across npm, yarn, pnpm, and bun monorepos.

Updated Dec 12, 2025
One-click install
npx skills add https://github.com/MateusRoscoe/quantyx --skill link-workspace-packages-mateusroscoe
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: link-workspace-packages
Source: https://github.com/MateusRoscoe/quantyx/tree/main/.cursor/skills/link-workspace-packages
Command: npx skills add https://github.com/MateusRoscoe/quantyx --skill link-workspace-packages-mateusroscoe

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Link workspace packages across monorepos to wire dependencies between consumer and provider packages without editing tsconfig paths or manually editing package.json.

Core Features & Use Cases

  • Wire dependencies between packages in a monorepo using the appropriate workspace command for pnpm, yarn, npm, or bun.
  • Resolve common workspace resolution errors like "Cannot find module" by ensuring consumer imports point to a linked provider package.
  • Use case: after creating new packages or adjusting imports, automatically link packages to maintain consistent workflows.

Quick Start

From the consumer project, run the package manager's workspace command to link the provider package and verify the symlink exists in node_modules.

Frequently Asked Questions about link-workspace-packages

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I link workspace packages in a monorepo without editing tsconfig paths?

Link workspace packages by running the standard workspace command for your package manager, which wires consumer and provider dependencies without manual tsconfig paths or package.json edits.

Why does my monorepo get a 'Cannot find module' workspace resolution error?

Workspace resolution errors occur when consumer imports do not point to a linked provider package; running the appropriate workspace linking command resolves the symlinks in node_modules.

Can I use workspace linking with pnpm, yarn, npm, and bun?

Workspace linking supports pnpm, yarn, npm, and bun by applying the standard workspace commands of each package manager to resolve inter-package dependencies across monorepos.

What's the best way to wire dependencies after creating new packages in a monorepo?

Wire dependencies after creating new packages by running the package manager's workspace command from the consumer project to link the provider package and verify the symlink exists in node_modules.

Do I need to manually edit package.json to resolve inter-package dependencies in workspaces?

Resolving inter-package dependencies in workspaces does not require manual package.json edits; the Skill follows standard package manager workspace commands to link consumer and provider packages automatically.