PulseAugur
EN
LIVE 21:35:53

Claude Code and Cowork plugin fixes installation bug with dynamic dependency provisioning

A Claude Code and Cowork plugin called Bob's Big Brain encountered installation issues due to a discrepancy between copying files and running `npm install`. The plugin has two modes: a pure JavaScript team mode and a local mode that relies on native Node.js modules like `better-sqlite3` and `fs-extra`. Marketplace installations only copy files, omitting the necessary `node_modules` directory, which caused the local mode to fail on startup for users. The solution involved implementing a bootstrap launcher that dynamically provisions native dependencies on first use, ensuring a seamless experience for all users regardless of their installation method. AI

IMPACT Ensures smoother plugin installation for AI-powered tools, reducing user friction.

RANK_REASON This is a technical post about a specific plugin's installation issue and its resolution, not a new model release or significant industry event.

Read on dev.to — MCP tag →

AI-generated summary · Google Gemini · from 1 sources. How we write summaries →

Claude Code and Cowork plugin fixes installation bug with dynamic dependency provisioning

How we ranked this

Signal score
0 / 100
Composite score across the factors below. Higher = stronger signal that this story matters right now.
Newsworthiness bucket
Tool
This is a technical post about a specific plugin's installation issue and its resolution, not a new model release or significant industry event.
Source corroboration
Single-source cluster
Only one publisher covered this so far. Single-source stories can still rank when the publisher is high-authority, but they lack cross-source corroboration.
Topics
product, infra
Editorial topic classification. Feeds into how the story surfaces on /topic/<slug> hub pages and into the per-entity coverage mix.
AI-industry relevance
High
Clearly on-topic for AI-industry coverage.
Story freshness
70 days old
Aged out of breaking-news scoring windows; ranking reflects the durable signal from the full source set.

Full methodology in our editorial standards.

COVERAGE [1]

  1. dev.to — MCP tag TIER_1 English(EN) · Jeremy Longshore ·

    Copying Files Is Not Installing

    <p>A marketplace install copies your plugin's files into place. It does not run <code>npm install</code> in them. Those are two different operations, and the gap between them is where "works on my machine" lives.</p> <p>We hit that gap shipping Bob's Big Brain, a Claude Code and …