Switch a monorepo extension/skill package between its published npm source and its local working-tree source, guaranteeing exactly one source per package. Use when "my edits don't take effect", "load local extension", "test the published npm build", or reconciling dev vs distribution package sources.
npx skills add https://github.com/BlackBeltTechnology/pi-agent-dashboard --skill switch-extension-source
Toggle a monorepo extension between npm (published) and local (working tree) source.
> GUI equivalent: Settings → Packages exposes a per-row Reset to published version action
> (change: reset-override-to-npm) that resets a local/git-installed row back to its canonical
> npm:<name> — install-first / remove-second, confirm-gated. It is the one-click UI analog of
> switch <pkg> npm here; keep the two semantically aligned (both drop the local packages[]
> registration only, never the working-tree files).
On a dev machine you want extensions to load your live working tree so edits take effect.
Distribution users consume the published npm package. Both can be wired at once across two
config layers, and whichever pi resolves last wins — non-deterministic ("I edited it but nothing
changed"). This skill enforces exactly one source per package.
GLOBAL ~/.pi/agent/settings.json "packages": [...]
npm -> "npm:<npmName>"
local -> "<repoRoot>/packages/<dir>" (dir path; pi resolves package.json "pi")
PROJECT <repo>/.pi/settings.json "packages":[{ source, extensions:["+packages/<dir>/<entry>"] }]
local overlay -> only with --overlay; loads ONLY inside this repo; needs pi.extensions
local (default) = global dir path → loads in every session everywhere.
local --overlay = project overlay → loads only when running pi inside this repo.
npx tsx ./scripts/switch-source.ts status # where each installed pkg loads from
npx tsx ./scripts/switch-source.ts local <pkg> # -> local working tree (global path)
npx tsx ./scripts/switch-source.ts local <pkg> --overlay# -> local, this-repo-only (extensions only)
npx tsx ./scripts/switch-source.ts npm <pkg> # -> published npm build
<pkg> = monorepo dir name (kb-extension) OR npm name (@blackbelt-technology/pi-dashboard-kb-extension).
Each switch removes all other representations of that package, timestamped-backs-up every file it
edits (*.bak-switch-*), and re-validates JSON before writing.
status — see current source per package.local <pkg> or npm <pkg> — flip it. Script guarantees single-source.packages[] is read at session init, so the change takes effect on thenext session start. Respawn sessions or npm run reload (reload alone may not re-resolve
the package list in an already-running process — fresh session is the guaranteed path).
dashboardPluginBridges /_dashboardManagedPackages. This skill does NOT toggle those — leave them to the dashboard UI.
npm mode yourworking-tree edits do NOT load until you local again.
--overlay needs pi.extensions — skill-only packages (pi.skills, no extensions) can't usethe overlay form; use plain local (global dir path).
status showingone source.
npx tsx ./scripts/switch-source.ts status shows the target package at exactly one source.python3 -c "import json; json.load(open('<file>'))" confirms both settings files are valid JSON.Take blackbelttechnology/switch-extension-source from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npx.
Without those the skill loads but fails at the first command.