
Code Review Testing
- 1 installs
- Updated May 4, 2026
- manaflow-ai/codex
Reviews test coverage for agent changes, requiring integration tests under core/suite for logic changes and dedicated test files for unit tests.
About
A code-review checker enforcing test-authoring guidance for Codex agent changes. A developer uses it to ensure logic changes ship with integration tests and follow test-file conventions.
- Prefers integration tests under core/suite using test_codex
- Requires integration tests for agent-logic changes
Code Review Testing by the numbers
- 1 all-time installs (skills.sh)
- Ranked #981 of 1,354 Code Review & Quality skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/manaflow-ai/codex --skill code-review-testingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | May 4, 2026 |
| Repository | manaflow-ai/codex ↗ |
What it does
Reviews test coverage for agent changes, requiring integration tests under core/suite for logic changes and dedicated test files for unit tests.
Files
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.