You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add integral context to RLCR review prompts (PID complete)
Feed accumulated commit history and recent round summaries/reviews
to Codex during each review round, completing the PID feedback model:
- P (proportional): goal-tracker vs acceptance criteria
- I (integral): accumulated commits + last 3 rounds history
- D (derivative): current round summary vs prompt
Validate BASE_COMMIT with cat-file -e before git log to prevent
set -e crash on corrupted/stale state files.
Signed-off-by: Chao Liu <chao.liu.zevorn@gmail.com>
Copy file name to clipboardExpand all lines: .claude-plugin/marketplace.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
"name": "humanize",
9
9
"source": "./",
10
10
"description": "Humanize - An iterative development plugin that uses Codex to review Claude's work. Creates a feedback loop where Claude implements plans and Codex independently reviews progress, ensuring quality through continuous refinement.",
Copy file name to clipboardExpand all lines: .claude-plugin/plugin.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "humanize",
3
3
"description": "Humanize - An iterative development plugin that uses Codex to review Claude's work. Creates a feedback loop where Claude implements plans and Codex independently reviews progress, ensuring quality through continuous refinement.",
Accumulated commits since loop start (oldest first):
4
+
```
5
+
{{COMMIT_HISTORY}}
6
+
```
7
+
8
+
### Recent Round Files
9
+
Read these files before conducting your review to understand the trajectory of work:
10
+
{{RECENT_ROUND_FILES}}
11
+
12
+
Use this history to identify patterns across rounds: recurring issues, stalled progress, or drift from the mainline objective. Weight recent rounds more heavily but watch for systemic trends in the full commit log.
Copy file name to clipboardExpand all lines: prompt-template/codex/regular-review.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,8 @@ Below is Claude's summary of the work completed:
17
17
<!-- CLAUDE's WORK SUMMARY END -->
18
18
---
19
19
20
+
{{COMMIT_HISTORY_SECTION}}
21
+
20
22
## Part 1: Implementation Review
21
23
22
24
- Your task is to conduct a deep critical review, focusing on finding implementation issues and identifying gaps between "plan-design" and actual implementation.
0 commit comments