rustidi

Clean Build Verification — Development skill for Claude Code

Development community

Before committing changes that touch workspace deps, DB schema, or 500 LOC — verify a real clean build.

How to install Clean Build Verification

Installs to ~/.claude/skills/rustidi-ml-portfolio-clean-build-verification/SKILL.md

Terminal
mkdir -p ~/.claude/skills/rustidi-ml-portfolio-clean-build-verification && curl -fsSL https://raw.githubusercontent.com/rustidi/ml-portfolio/HEAD/skills/clean-build-verification.md -o ~/.claude/skills/rustidi-ml-portfolio-clean-build-verification/SKILL.md

Restart Claude Code, or start a new session, for it to be picked up.

What Clean Build Verification does


name: clean-build-verification description: Before committing changes that touch workspace deps, DB schema, or >500 LOC — verify a real clean build. A green typecheck is not proof of correctness. triggers: ["clean build", "verify build", "before big commit"] applies_to: ["package.json", "prisma/schema.prisma"]

Clean-build verification

Sanitized example skill.

The trap this exists to prevent

`npm run typecheck` passing feels like "it works." It isn't. Typecheck validates types;

Alternatives in Development

Full documentation available on GitHub

View Source Repository