Convert quality criteria from questions to statements#214
Merged
Conversation
…load - Raise compute_timeout base from 120s to 240s (4 minutes) so the Claude quality reviewer has enough time to complete reviews. - Pass agent notes into _build_payload so they appear in the user prompt alongside file contents during external (Claude CLI) reviews. Self-review mode already handles notes separately, so it is unchanged. https://claude.ai/code/session_01Jn2nuSQ3rUdhcr29s13K9T
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR converts all quality criteria throughout the codebase from question format to statement format, describing the expected state after a step completes rather than asking whether that state was achieved.
Key Changes
Documentation and Examples
Updated
job.ymlfiles and templates to use statements instead of questions inquality_criteriaUpdated instructional documentation in
define.md,implement.md,iterate.md,learn.md, andfix_jobs.mdto reflect the new statement-based format with examplesUpdated best practices documentation in
research_report_job_best_practices.mdwith statement-based criteriaCode Changes
quality_gate.py:notesparameter to_build_payload()method to support author notes in review payloadsbuild_review_instructions_file()to handle author notes separately from outputstest_quality_gate.py:Templates
job.yml.templateto clarify that quality criteria should be statements of expected state, not questionsImplementation Details
https://claude.ai/code/session_01Jn2nuSQ3rUdhcr29s13K9T