📦
DevOpsTypeScript

Add npm Dependency

by elirantutia

Add npm Dependency is a DevOps skill for Claude Code, published by elirantutia in vibeyard.

1.4K stars161 forkson elirantutia/vibeyardAdded 2026/08/19Repository updated 2026/07/27
aiccclaudeclaude-codeclideveloper-toolselectronidetypescriptvibe-codingxterm
Install in seconds
Install Add npm Dependency
Copy Add npm Dependency into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/elirantutia/vibeyard/tree/main/.claude/skills/add-npm-dependency ~/.claude/skills/add-npm-dependency

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/elirantutia/vibeyard.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
.claude/skills/add-npm-dependency/SKILL.md in elirantutia/vibeyard
Installs to
~/.claude/skills/add-npm-dependency
Collection
One of 2 skills cataloged from this repository
Category
DevOps798 skills

What Add npm Dependency does

Add npm Dependency guides you through installing, upgrading, and configuring npm packages in an Electron project with separate main, preload, and renderer build targets. Use it when adding a library, handling CSS assets, native modules, or verifying builds.

Add npm Dependency is cataloged under DevOps on DirSkills. Add npm Dependency comes from a repository tagged ai, cc, claude, claude-code and cli.

Documentation

README

Adding an npm Library

This is an Electron app with three separate build targets (main, preload, renderer) and a few non-obvious bundling rules. Adding a dependency the wrong way silently breaks CSS, native modules, or the renderer bundle. Follow this guide every time.

Golden Rule: install the latest, caret-pinned

Always install the newest published version. Never hand-edit package.json to set or downgrade a version.

npm install <pkg>@latest          # runtime dependency
npm install -D <pkg>@latest       # dev / build-only tool (types, bundlers, test libs)

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Add npm Dependency

  • What else does elirantutia publish alongside Add npm Dependency?

    Add npm Dependency is one of 2 skills that DirSkills catalogs from elirantutia/vibeyard, the repository it ships in. Its siblings there include UI Development. Each one is a separate skill with its own page in this directory, installs the same way Add npm Dependency does, and is maintained by elirantutia in that same repository. The rest of the collection is listed on the elirantutia/vibeyard page.

  • How does Add npm Dependency compare to other DevOps skills?

    Add npm Dependency ranks #367 by stars among the 798 DevOps skills in this catalog. The most-starred ones next to it are Backend Patterns, API Connector Builder and Migration. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Add npm Dependency against them. Open each page to compare what they document and how they install.