Code review testing
Skill danielvogler/ai-skills-library/.agents/skills/code-review-testing
Centralized manifest for AI agent skills. Synced via ai-agent-skills.
npx -y skills add danielvogler/ai-skills-library --skill code-review-testingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Test authoring guidance
SKILL.md
0.6 KB, 108 tokens by cl100k_base, as published. Nobody here has run it
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.