Showing 28 verified skills. 284 preview entries are hidden until we confirm a real source. Show preview skills · Why?
Generate verified code that passes tests before you even see it
codex exec --pattern verify-buildAutonomous verification loop for Codex: generate code, run the test suite, check build output, and iterate until green.
This is the actual SKILL.md file that powers this skill. Copy it to install.
---
name: codex-verify-build
description: |
Verify that code changes compile, pass tests, and build successfully.
Trigger after making changes in Codex. Phrases: "verify build",
"run tests", "check if it builds", "validate changes".
allowed-tools:
- Bash(npm run build *)
- Bash(npm test *)
- Bash(npm run lint *)
- Bash(npx tsc --noEmit *)
---
# Verify and Build
Post-change verification for Codex. After generating or modifying code,
run the full validation pipeline to ensure nothing is broken.
## Verification pipeline
1. **Type check** - `npx tsc --noEmit`
2. **Lint** - `npm run lint` (or project equivalent)
3. **Test** - `npm test` (run full test suite)
4. **Build** - `npm run build` (production build)
## Workflow
Run each step in order. If any step fails:
1. Read the error output carefully
2. Fix the issue
3. Re-run from the failing step
4. Continue through the pipeline
## Example usage
- "Verify that my changes build correctly"
- "Run the full test suite"
- "Check for type errors after my refactor"
## Auto-detect project type
- **package.json** present: use npm scripts
- **Cargo.toml** present: use cargo check/test/build
- **go.mod** present: use go build/test
- **pyproject.toml** present: use pytest, mypy
## Requirements
- Project dependencies installed
- Build scripts configured in package.json (or equivalent)
mkdir -p ~/.claude/skills/codex-verify-build~/.claude/skills/codex-verify-build/SKILL.mdResulting file structure:
~/.claude/
skills/
codex-verify-build/
SKILL.md <-- skill definitionSkills are loaded automatically by Claude Code when you start a new session. The skill name and description in the frontmatter determine when Claude triggers it.
Recommended from shared domain, career, and tool overlap with Verify & Build
Generate typed API clients and webhook handlers from specs
Both used by Software Engineer
Find performance bottlenecks and memory leaks with fix suggestions
Both used by Software Engineer
Measure code complexity and find the best refactoring targets
Both used by Software Engineer
Build RAG pipelines with embedding, retrieval, and cited generation
Both used by Software Engineer
Implement production auth with OAuth, JWT, RBAC, and MFA
Both used by Software Engineer
Test your app like a human QA tester - clicks, types, verifies
Both used by Software Engineer
Verify & Build