What problem does it solve? Newly created packages in a monorepo fail to resolve imports from sibling packages, producing errors like "cannot find module", "failed to resolve import", or "TS2307". This Skill wires up dependencies between workspace packages using the correct package manager syntax instead of fragile tsconfig path patches. ## Core Features & Use Cases - Package Manager Detection: Identifies npm, yarn, pnpm, or bun from the root package.json packageManager field or lockfile. - Manager-Specific Linking: Applies the correct workspace syntax for each tool, including pnpm and bun workspace:* protocol, yarn berry workspace:^, and npm auto-symlinking. - Resolution Error Diagnosis: Walks through debugging "Cannot find module" errors by checking declared dependencies and re-running install. - Use Case: After generating a new @org/ui library, an app importing it fails to build. The Skill detects pnpm from the lockfile and runs pnpm add @org/ui --filter @org/app --workspace to create the symlink. ## Quick Start Link the @org/ui package as a dependency of @org/app in this monorepo and fix the module resolution errors.