openai/code-change-verification
Run the mandatory verification stack when changes affect runtime code, tests, or build/test behavior in the OpenAI Agents JS monorepo.
npx skills add https://github.com/openai/openai-agents-python --skill code-change-verification
Ensure work is only marked complete after installing dependencies, building, linting, type checking (including generated declarations), and tests pass. Use this skill when changes affect runtime code, tests, or build/test configuration.
./.agents/skills/code-change-verification so it loads automatically for the repository.bash .agents/skills/code-change-verification/scripts/run.sh.powershell -ExecutionPolicy Bypass -File .agents/skills/code-change-verification/scripts/run.ps1.pnpm i --frozen-lockfile, pnpm build, then pnpm -r build-check, pnpm -r -F "@openai/*" dist:check, pnpm lint, pnpm test, and pnpm format:check:changed.node_modules, stop and diagnose the configuration mismatch instead of silently recreating dependencies.pnpm i --frozen-lockfile and pnpm build as barriers, then delegates independent validation steps to concurrently.Take openai/code-change-verification 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 npm.
Without those the skill loads but fails at the first command.