code-change-verification
par openai
Exécute la pile de vérification obligatoire lorsque des modifications affectent le code d'exécution, les tests ou le comportement de construction/test dans le monorepo OpenAI Agents JS.
npx skills add https://github.com/openai/openai-agents-js --skill code-change-verificationCode Change Verification
Overview
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. This is a post-review final gate: when $implementation-final-review applies, do not invoke the broad stack until its clean-review condition applies to the stable task diff.
Quick start
- Keep this skill at
./.agents/skills/code-change-verificationso it loads automatically for the repository. - Run the skill in the user's selected checkout without changing worktrees or branches.
- macOS/Linux:
bash .agents/skills/code-change-verification/scripts/run.sh. - Windows:
powershell -ExecutionPolicy Bypass -File .agents/skills/code-change-verification/scripts/run.ps1. - If any command fails, fix the issue, rerun the script, and report the failing output.
- Confirm completion only when all commands succeed with no remaining issues.
Start condition and host capacity
- During iterative review, use only focused tests and a narrowly targeted static check when the changed typing boundary requires one. Defer repository-wide
pnpm -r build-checkand the rest of this complete stack until review is clean. - Immediately before starting the complete stack, use available read-only task or process evidence to check whether another repository-wide test, typecheck, build, examples runner, or integration command is already active on the same host.
- When concrete contention is visible, continue useful non-heavy work such as review, remediation, evidence preparation, or focused checks, then check again later. Do not create or wait on a repository lock, host-wide mutex, or sentinel file.
- Start automatically once review is clean, the diff is stable, and observable host capacity is available. Do not require a user-triggered
finalizemessage. If host telemetry is unavailable, do not block solely because capacity cannot be measured.
Manual workflow
- Run from the repository root in these phases:
pnpm i --frozen-lockfile,pnpm build, thenpnpm -r build-check,pnpm -r -F "@openai/*" dist:check,pnpm lint,pnpm test, andpnpm format:check:changed. - The skill may execute the final validation phase in parallel, but every step above must still pass.
- Do not skip steps; stop and fix issues immediately when any step fails.
- Re-run the full stack after applying fixes so the commands execute with the same barriers and coverage.
- The install intentionally runs without forcing CI or prompt-confirmation settings. If pnpm reports incompatible
node_modules, stop and diagnose the configuration mismatch instead of silently recreating dependencies.
Resources
scripts/run.sh
- Executes the full verification sequence (including declaration checks) with fail-fast semantics.
- Keeps
pnpm i --frozen-lockfileandpnpm buildas barriers, then delegates independent validation steps toconcurrently. - Prefer this entry point to ensure the commands always run from the repo root with the expected fail-fast behavior.
scripts/run.ps1
- Windows-friendly wrapper that runs the same verification sequence with fail-fast semantics.
- Use from PowerShell with execution policy bypass if required by your environment.