Vet a new or changed third-party dependency for license, provenance, and supply-chain risk before any install runs.
npx skills add https://github.com/arbiterForge/codeArbiter --skill ca-add-dep
Gate a new or changed third-party dependency through review before it lands. When you route through
this command, the orchestrator runs no install until the dependency-reviewer agent clears the
package. Specify the exact version if you have one; without one, the reviewer evaluates the latest
available version.
The dependency-reviewer agent (<plugin-root>/agents/dependency-reviewer.md). The agent
reads <project-root>/.codearbiter/security-controls.md (allowed/denied licenses, provenance
and supply-chain policy) and <project-root>/.codearbiter/tech-stack.md (stack fit, dependency
manager) to judge the package.
After the agent clears it, the orchestrator surfaces the install command for confirmation. The lock
file change is committed alongside the manifest change — never one without the other.
/ca-fix or /ca-feature with the change described./ca-feature / /ca-fix; manifestchanges route to review at /ca-pr.
/ca-btw.A one-time developer tool is not a dependency, and reviewing it as one is what
issue #346 records going wrong: a duplicate-code investigation was interrupted
and pushed toward project-dependency review for jscpd, which the operator had
explicitly said must never be listed as a dependency. The redirect loop then
reached for /ca-override, a bypass invented to cover missing coverage. This
section is that coverage.
The distinction is the dependency GRAPH, not the download. Adopting or
changing anything that enters package.json, a lockfile, or a base image is the
review above, unchanged. Running a pinned tool once, against the repository,
adopting nothing, is this.
Route here when ALL of these hold. If any is unclear, it is a dependency and
takes the full review:
hook, or CI.
Then:
npx [email protected] ., never bare npx jscpd — anunpinned invocation resolves to whatever was published this morning, which is
the supply-chain exposure the review exists for and the one part of it that
still applies at full strength.
https://registry.npmjs.org is the only one(security-controls.md); no git+, no file:, no non-TLS source.
review — the operator has already made the adoption decision, which is "no".
over the project tree, and write any report there too, so the run leaves no
residue a later commit could pick up.
Hard gate: MUST NOT modify a manifest or a lockfile. If the tool writes one,
that is adoption, and it stops here and routes to the review above. Verify
rather than trust: git status --porcelain over the manifest and lockfile paths
must be unchanged after the run. A tool that requires adoption to run at all is
a dependency, and saying so is the correct answer.
This is a bounded carve-out inside this command, not a command of its own
(ADR-0023). A new command would add a public surface — the catalog, the Pi
command catalog, the README counts, the site sidebar — to govern an action whose
whole definition is that it changes nothing.
MUST NOT install before dependency-reviewer clears the package. BLOCK on a denied license or any
unresolved supply-chain or provenance concern.
This gate is orchestrator-enforced, not hook-enforced: unlike the crypto/secret gate
(pre-bash.py H-09b/H-10b), there is no pre-bash rule that blocks a bare npm/pip/yarn/`pnpm
install typed outside this command. The discipline depends on routing installs through /ca-add-dep`.
A hook-level install block (parallel to the security-gate marker) would be a stronger posture, but is a
deliberate behavior change — a possible future enhancement, not the current contract.
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling
Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification
Take arbiterforge/codearbiter-ca-add-dep 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.