Buy vs build audit
Skill stdin/buy-vs-build/plugins/buy-vs-build/skills/buy-vs-build-audit
Stop AI coding agents from adding dependency and build ownership without a decision note.
npx -y skills add stdin/buy-vs-build --skill buy-vs-build-auditAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when auditing a repository or subsystem for avoidable in-house implementations, unnecessary dependencies, duplicated platform features, vendor lock-in, maintenance burden, or unclear buy-vs-build ownership decisions.
SKILL.md
1.5 KB, as published. Nobody here has run it
Buy vs Build Audit
Audit the repository for ownership choices that deserve a second look. This is broader than a diff review: scan dependencies, common utilities, integration code, and high-maintenance subsystems.
Workflow
- Inspect dependency manifests and major source directories.
- Find custom implementations in standardized domains: dates, parsing, auth, crypto, queues, retries, validation, file formats, email, payments, observability, and search.
- Find dependencies that duplicate built-ins, native platform features, installed packages, or small clear code.
- Separate "fix now" from "watch later"; churn without payoff is not an improvement.
- Preserve safety boundaries: validation, security, privacy, accessibility, observability, and explicit requirements.
Output
Group results by action:
- Replace with reuse: custom code that should move to a built-in, platform feature, library, or service.
- Keep in-house: code that is core, small, constrained, or safer to own.
- Remove dependency: dependency that does not earn its ownership cost.
- Needs decision note: unclear tradeoffs requiring maintainer input.
For each item, include the likely rung, owner impact, and migration risk.