| name | code-quality-review-all |
| description | Review all evaluations in the repository against a single code quality standard. Checks ALL evals against ONE standard for periodic quality reviews. Use when user asks to review/audit/check all evaluations for a specific topic or standard. Do NOT use for reviewing a single eval (use eval-quality-workflow instead) or for test coverage (use ensure-test-coverage instead). |
Review All Evaluations
Review all evaluations in the repository against a single code quality standard or topic. This workflow is useful for systematic code quality improvements and ensuring consistency across all evaluations.
Workflow
Setup
If not already provided, ask user for the topic from the CONTRIBUTING.md or BEST_PRACTICES.md that this review should be focused on. If not provided, come up with a short topic identifier in a file-safe format (e.g., pytest_marks, import_patterns, test_coverage).
Create or read existing directory structure:
<repo root>/agent_artefacts/code_quality/<topic_id>/ - Directory for this review topic
<repo root>/agent_artefacts/code_quality/<topic_id>/README.md - Documentation for this specific topic
<repo root>/agent_artefacts/code_quality/<topic_id>/results.json - Results of the review
<repo root>/agent_artefacts/code_quality/<topic_id>/SUMMARY.md - Summary of the review
README.md Structure
The README.md file should contain topic-specific information:
- Topic Description: What this review checks for and why it matters
- Requirements: Specific requirements from CONTRIBUTING.md or BEST_PRACTICES.md
- Detection Strategy: How to identify issues (patterns to look for, tools to use)