Zurück zu Fähigkeiten

dependency-management

rampstackco
Aktualisiert 2 days ago
3 Ansichten
239
27
239
Auf GitHub ansehen
Andereaidesign

Über

Diese Fähigkeit unterstützt Entwickler bei der Verwaltung von Drittanbieter-Abhängigkeiten, indem sie Updates, Sicherheitshinweise und Veröffentlichungsende behandelt. Sie wird durch Paketaktualisierungen, Sicherheitspatches, Lockfile-Änderungen oder fehlgeschlagene Builds nach einem Update ausgelöst. Nutzen Sie sie, um Update-Zyklen festzulegen, Installationen zu prüfen und Abhängigkeits-Upgrades freizugeben.

Schnellinstallation

Claude Code

Empfohlen
Primär
npx skills add rampstackco/claude-skills -a claude-code
Plugin-BefehlAlternativ
/plugin add https://github.com/rampstackco/claude-skills
Git CloneAlternativ
git clone https://github.com/rampstackco/claude-skills.git ~/.claude/skills/dependency-management

Kopieren Sie diesen Befehl und fügen Sie ihn in Claude Code ein, um diese Fähigkeit zu installieren

Dokumentation

Dependency Management

Decide what to depend on, keep dependencies current, respond to advisories, and reduce supply chain risk. Stack-agnostic principles; specifics vary by package manager.


When to use

  • Setting up dependency hygiene for a new or existing project
  • Responding to a security advisory
  • Major version upgrade of a key dependency
  • Adding a new dependency (evaluation, decision)
  • Removing a dependency (cleanup)
  • Audit of what's installed and what's actually used
  • Setting an update cadence and policy
  • Diagnosing a broken build after an update

When NOT to use

  • General code review (use code-review-web)
  • Vulnerability scanning of infrastructure (use security-baseline)
  • Pinning vendor or service contracts (use vendor-evaluation)
  • Performance impact of dependencies (use performance-optimization)

Required inputs

  • Package manager and lockfile in use (npm, yarn, pnpm, pip, gem, composer, etc.)
  • Current dependency list (production and dev)
  • Current advisories (run audit; check service like Snyk, Dependabot)
  • Update history (when were major dependencies last updated)
  • Risk profile (production criticality, change tolerance)

The framework: 4 categories of dependency

Every dependency falls into one of these. The category drives the policy.

Category 1: Critical runtime

Code that runs in production and would break the system if it failed.

Examples: framework, database driver, payment SDK, authentication library.

Policy:

  • Update cadence: monthly minor, quarterly major (with planning)
  • Security: patch within 24-72 hours of advisory, 24h for critical
  • Pinning: exact version pins or narrow ranges
  • Vetting: thoroughly evaluated before adoption

Category 2: Supporting runtime

Code that runs in production but is replaceable or non-critical.

Examples: utility libraries, formatting, non-core integrations.

Policy:

  • Update cadence: monthly together with critical
  • Security: patch within a week of advisory
  • Pinning: narrow ranges acceptable (e.g., ^1.2.3)
  • Vetting: moderate evaluation; alternatives considered

Category 3: Dev/build

Code that runs only during development or build, not in production.

Examples: bundlers, linters, test frameworks, type checkers.

Policy:

  • Update cadence: quarterly
  • Security: patch within a week (still matters; supply chain attacks target build tools)
  • Pinning: ranges acceptable
  • Vetting: lighter; broken dev tools surface fast

Category 4: Optional/dev-only-personal

Tools individual developers use that aren't part of shared dev environment.

Not really managed at the project level. Mentioned for completeness.


The framework: 5 risk dimensions

When evaluating a dependency, consider:

Dimension 1: Maintenance health

  • Last commit date (months ago is concerning)
  • Open issue count and age
  • Number of maintainers
  • Sponsorship or commercial backing
  • Roadmap visibility

A dependency abandoned a year ago is a liability waiting to surface.

Dimension 2: Surface area

  • Size of the package
  • Number of transitive dependencies
  • Footprint in the bundle (for client-side)
  • Privileges required (file system, network, etc.)

A small dependency that pulls in 50 transitive packages has the surface area of all 50.

Dimension 3: Replaceability

  • How hard would it be to remove?
  • Are there alternatives?
  • Could the functionality be implemented in-house?
  • Is the API standard or idiomatic?

A dependency you can't replace is leverage you've granted to its maintainer.

Dimension 4: Trust

  • Reputation of the maintainer or organization
  • Code quality (skim the source)
  • License (GPL, MIT, BSD, proprietary, none)
  • History of security issues
  • Supply chain practices (signed releases, 2FA on publishes)

Dimension 5: Cost

  • Time to evaluate, integrate, maintain
  • Risk of breaking changes
  • Lockfile entropy
  • Potential security exposure
  • Bundle size impact (for client-side)

Every dependency has a cost. Free packages aren't free.


Workflow

Step 1: Inventory

Run a dependency listing:

# npm/yarn/pnpm
npm ls --all --json

# pip
pip list

# gem  
bundle list

For each top-level dependency, categorize (critical / supporting / dev). For transitives, you generally don't manage individually unless one becomes a problem.

Step 2: Audit

Run the security audit:

npm audit
yarn audit
pip-audit
bundle audit

For each finding:

  • Severity (critical, high, medium, low)
  • Package and version
  • Fix available?
  • Used directly or transitively?

Step 3: Categorize and prioritize

SeverityDirect depIndirect dep
CriticalPatch todayPatch this week (if a fix exists; track if not)
HighPatch this weekPatch this month
MediumPatch this monthTrack; patch with next round
LowTrackTrack

Critical and high in production code are emergencies. Low and medium are scheduled work.

Step 4: Test before merging fixes

Even patch-level updates can break things. For critical dependencies:

  • Run the full test suite
  • Smoke-test in staging
  • Watch the monitoring after rollout

For supporting and dev:

  • Run the test suite
  • A failed test is OK to investigate; don't merge a known-broken update

Step 5: Plan major version upgrades

Major versions break things. Plan rather than rush.

For each major upgrade:

  • Read the changelog and migration guide
  • Estimate the migration effort
  • Schedule the work (don't do it under deadline pressure)
  • Branch and test thoroughly
  • Plan a staged rollout if it's a critical dependency

Don't sit on major versions indefinitely. The longer you wait, the more painful the upgrade.

Step 6: Set the policy

Document:

  • Update cadence (e.g., monthly review, quarterly upgrades)
  • Security response SLA (e.g., critical within 24h)
  • Approval for new dependencies (who signs off)
  • Removal criteria (when do we drop a dependency)
  • Pinning strategy (exact, narrow range, broad range)

The policy is what survives team turnover. Without it, dependency management becomes chaotic ad hoc work.

Step 7: Automate

  • Renovate or Dependabot for automatic update PRs
  • CI runs audit on every PR
  • Block merges on critical advisories (with override path for false positives)
  • Notify on advisories for installed packages
  • Lockfile diff in PR review

Automation reduces toil. Manual checking doesn't scale.

Step 8: Audit usage periodically

Quarterly:

  • Dependencies installed but not imported anywhere (run a tool like depcheck)
  • Major versions behind (more than 1-2 majors behind = upgrade plan needed)
  • Unmaintained packages (last commit over a year ago = consider replacing)
  • License audit (anything that's changed terms?)

Remove what's not used. Replace what's unmaintained.


New dependency evaluation

Before adding a new dependency, answer:

  • What problem does this solve?
  • Could we solve it without a dependency? (Often yes for small problems.)
  • What alternatives exist?
  • Is the package actively maintained?
  • What's the install size and bundle impact?
  • What are the transitive dependencies? (Worth a quick scan.)
  • What's the license?
  • What's the security history?
  • How replaceable is it?

Default: don't add. Add only when the value clearly exceeds the cost. The cost includes ongoing maintenance, not just installation.


Dependency removal

When removing a dependency:

  • Identify all usages (search the codebase)
  • Replace each usage (with native code, another dependency, or a no-op)
  • Remove from package.json or equivalent
  • Update lockfile (run install)
  • Verify tests pass
  • Verify build size went down (or stayed the same)
  • Document the removal in the changelog

Removed dependencies sometimes leave config files, CI hooks, or imports behind. Search broadly.


Failure patterns

No update cadence. Dependencies drift. When you finally upgrade, it's painful. Set a cadence.

Audit disabled in CI. "Too noisy." Tune the audit, don't disable it. Whitelist known false positives explicitly.

Pinning everything to exact versions. Stops automatic patches. Misses security fixes. Use narrow ranges with a lockfile.

Unpinned floating versions. latest in production. Builds aren't reproducible. Lockfile required.

Adding dependencies without review. "I just needed a quick utility." Now there are 50 unused dependencies. Require review for new dependencies.

Ignoring transitive dependencies. A direct dependency pulls in 50 indirect ones. Each is supply chain surface. Audit the tree, not just the top level.

Patching with major version bumps. "Updating to fix a bug" but the update is a major version. Now you have unrelated breaking changes too. Be deliberate about the version of the fix.

Vendor-bundled libraries. Some dependencies vendor copies of other dependencies. They're not visible to the audit. Periodically check.

Build-time dependencies treated as zero-risk. Build tools have access to your code and credentials. Supply chain attacks target them. Treat with appropriate care.

Fork without rebase plan. Forking a dependency to fix something. Then you own it. Plan how to rebase or merge upstream changes, or commit to maintaining the fork.

No license audit. Project ships with a GPL dependency in a commercial product. Compliance issue. Audit licenses on add and quarterly.

Update PRs piling up. Dependabot PRs go unmerged for months. Either tune to fewer PRs or commit time to merging them.


Output format

A dependency policy document includes:

  • Inventory: current dependencies by category
  • Audit status: open advisories, severity, plan
  • Policies: cadence, SLA, pinning, approval
  • Tooling: what's automated (Renovate, Dependabot, audit in CI)
  • License audit: any concerns
  • Quarterly review schedule: when this gets revisited

Reference files

  • references/upgrade-checklist.md: Step-by-step checklist for performing a major version upgrade of a critical dependency, from changelog reading to staged rollout.

GitHub Repository

rampstackco/claude-skills
Pfad: skills/dependency-management
0
agent-skillsai-agentsanthropicclaudeclaude-aiclaude-code

Verwandte Skills

cost-optimization

Andere

Diese Fähigkeit unterstützt Entwickler dabei, Cloud- und SaaS-Kosten zu überprüfen und zu senken, indem ungenutzte Ressourcen identifiziert, Infrastrukturen richtig dimensioniert und Anbieterverträge optimiert werden. Sie wird während Budgetüberprüfungen, Vertragsverlängerungen oder wenn die Finanzabteilung steigende Ausgaben meldet, aktiviert. Das Ziel ist es, unnötige Kosten zu reduzieren, ohne die Systemzuverlässigkeit oder die Entwicklungsgeschwindigkeit zu beeinträchtigen.

Skill ansehen

internationalization

Andere

Diese Fähigkeit unterstützt Entwickler bei der Planung und Umsetzung mehrsprachiger oder multiregionaler Websites. Sie bietet Anleitung zu wichtigen technischen Entscheidungen wie URL-Strukturen, hreflang-Tags, Übersetzungs-Workflows und RTL-Design. Nutzen Sie sie beim Hinzufügen neuer Lokalisierungen, bei der Überprüfung einer bestehenden Implementierung oder bei der Optimierung für unterperformende internationale Zielgruppen.

Skill ansehen

content-migration

Andere

Diese Fähigkeit unterstützt beim Verschieben von Inhalten zwischen Plattformen oder Domains unter Erhalt des SEO-Werts und bestehender Integrationen. Sie ist konzipiert für CMS-Migrationen, Site-Konsolidierungen und URL-Restrukturierungsprojekte. Das Tool ist plattformunabhängig und hilft dabei, Benutzer-Lesezeichen zu bewahren und Traffic-Einbrüche nach der Migration zu verhindern.

Skill ansehen

form-strategy

Andere

Die `form-strategy`-Fähigkeit unterstützt Entwickler dabei, Formulare zu entwerfen, zu überprüfen und zu optimieren, um die Konversionsrate zu maximieren, robuste Validierung zu implementieren und Spam zu verhindern. Sie bietet Anleitung für jede Art von Formular, von der Registrierung bis zum Checkout, und wird durch Probleme wie niedrige Abschlussraten oder hohes Spam-Aufkommen ausgelöst. Ihre stack-agnostischen Ratschläge umfassen die Planungslogik, die Auswahl von Werkzeugen und die Sicherstellung einer sauberen Systemintegration.

Skill ansehen