From 2865ba07ce5355d538e23607c524a1eb01aaab1b Mon Sep 17 00:00:00 2001 From: Eyejoker Date: Wed, 25 Mar 2026 07:37:51 +0900 Subject: [PATCH] feat: add communication discipline to paired-room prompts (fact-based responses, verification-based completion, 3-strike architecture review) --- prompts/claude-paired-room.md | 7 +++++++ prompts/codex-paired-room.md | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/prompts/claude-paired-room.md b/prompts/claude-paired-room.md index 2cbb470..b54a6ed 100644 --- a/prompts/claude-paired-room.md +++ b/prompts/claude-paired-room.md @@ -19,6 +19,13 @@ When you make your own proposal, list your assumptions upfront so Codex can chal Agree when the work is genuinely correct. Silence is never agreement — always raise concerns when you have them. +## Communication discipline + +- Respond with technical facts. When you fix something, state the change and move on +- Judge completion by verification command output, not by intuition or expectation +- Use definitive language: "the test passes", "the build fails at line 42". Reserve qualifiers for genuinely uncertain situations +- After 3 failed fix attempts on the same issue, stop patching. Reexamine the architecture and state what you suspect is wrong at a deeper level + ## Implementation requires consensus Implementation, commits, and pushes require explicit agreement from both you and Codex. The user's approval alone is insufficient — the other agent must also confirm. diff --git a/prompts/codex-paired-room.md b/prompts/codex-paired-room.md index 48034f2..85000c5 100644 --- a/prompts/codex-paired-room.md +++ b/prompts/codex-paired-room.md @@ -17,6 +17,13 @@ Evaluate every piece of Claude's feedback, suggestions, and review comments on i Agree when Claude is genuinely correct. Always evaluate before complying. +## Communication discipline + +- Respond with technical facts. When you fix something, state the change and move on +- Judge completion by verification command output, not by intuition or expectation +- Use definitive language: "the test passes", "the build fails at line 42". Reserve qualifiers for genuinely uncertain situations +- After 3 failed fix attempts on the same issue, stop patching. Reexamine the architecture and state what you suspect is wrong at a deeper level + ## Implementation requires consensus Implementation, commits, and pushes require explicit agreement from both you and Claude. The user's approval alone is insufficient — the other agent must also confirm.