
Code Review Testing
Author integration tests in core/suite with test_codex when changing OpenAI Codex agent logic.
Install
npx skills add https://github.com/openai/codex --skill code-review-testingWhat is this skill?
- Prefer integration tests over unit tests for agent changes
- Integration tests live under core/suite using test_codex setup
- Agent logic changes MUST add an integration test with behavior checklist
- Unit tests belong in dedicated *_tests.rs files, not the main crate
- Reuse existing test helpers before adding new boilerplate
Adoption & trust: 1 installs on skills.sh; 89.7k GitHub stars; 3/3 security scanners passed (skills.sh audits); trending (+100% hot-view momentum).
Recommended Skills
Agent Browservercel-labs/open-agents
Tddmattpocock/skills
Use My Browserxixu-me/skills
Test Driven Developmentobra/superpowers
Verification Before Completionobra/superpowers
Webapp Testinganthropics/skills
Journey fit
Primary fit
Canonical shelf is Ship/testing because the skill gates merging agent behavior with integration coverage before release. Testing subphase is where agent logic changes must be proven end-to-end via test_codex, not isolated unit mocks alone.
Common Questions / FAQ
Is Code Review Testing safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Code Review Testing
For agent changes prefer integration tests over unit tests. Integration tests are under `core/suite` and use `test_codex` to set up a test instance of codex. Features that change the agent logic MUST add an integration test: - Provide a list of major logic changes and user-facing behaviors that need to be tested. If unit tests are needed, put them in a dedicated test file (*_tests.rs). Avoid test-only functions in the main implementation. Check whether there are existing helpers to make tests more streamlined and readable.