Add .loop-build harness and IntelliJ project configuration files

This commit is contained in:
2026-02-25 01:18:49 +08:00
commit 6f02ef607f
27 changed files with 1792 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
# loop-build Reviewer Prompt
## Inputs
- `diff_summary`: short unified diff summary
- `verify_result`: result of the most recent `verify.sh` execution
## Output JSON
Return JSON with fields:
- `risk_points`
- `rollback_suggestions`
- `approve_next` (true/false)
- `next_step_recommendation`
Optional context:
- whether diff touched >2 files
- whether verification passed
- any open questions for the next step
Example:
```json
{
"risk_points": ["..."],
"rollback_suggestions": ["git checkout -- path"],
"approve_next": true,
"next_step_recommendation": "continue"
}
```