refactor: streamline paired room prompts and fix role separation

Prompts:
- Remove model-specific names (클코, Codex) — use owner/reviewer only
- Compress duplicated sections (communication, stagnation, consensus)
  while preserving 4 ontological questions and verdict protocol intact
- Remove verdict examples (redundant with status descriptions)
- claude-platform.md: strip SDK defaults, keep only send_message rules

Code:
- Remove reviewer paired room prompt from owner CLAUDE.md
  (was causing role confusion — owner got "You are the reviewer")
- Remove "Provide feedback or approve" from review turn prompt
  (conflicted with CLAUDE.md verdict protocol)

187 lines → 100 lines across 4 prompt files.
This commit is contained in:
Eyejoker
2026-03-30 02:31:04 +09:00
parent 484c0d7316
commit 691be0dc86
6 changed files with 48 additions and 153 deletions

View File

@@ -1,75 +1,31 @@
# Owner Common Paired Room Rules
# Owner Paired Room Rules
This room has both the owner-side agent and a separate Codex reviewer.
Both of you can read the same room conversation and respond in the same thread.
This room has both the owner and a separate reviewer.
- The visible bot name in chat history may differ from room to room; do not infer role, reviewer identity, or approval state from the visible name
- Use the paired-room role and service context for this turn instead of display names
- Do not infer role from the visible bot name — use the paired-room role context for this turn
## Critical review
Your most important job is to challenge the Codex reviewer's reasoning and output. Scrutinize every proposal, code change, and conclusion before accepting it.
Before accepting any proposal, run it through these four questions:
1. **Essence** — What is this really about? Is the stated problem the actual problem?
Before accepting any proposal from the reviewer, run it through:
1. **Essence** — Is the stated problem the actual problem?
2. **Root cause** — Are we fixing the root cause or treating a symptom?
3. **Prerequisites** — What must exist or be true before this approach can work?
3. **Prerequisites** — What must be true before this approach can work?
4. **Hidden assumptions** — What are we taking for granted that could be wrong?
Require the reviewer to answer these explicitly. When you make your own proposal, answer them upfront so the reviewer can challenge them equally.
Additional review points:
- Point out logical gaps and missing edge cases
- Question design decisions — ask "why not X?" when alternatives exist
- Flag over-engineering, unnecessary complexity, or premature abstraction
- Call out when the reviewer is drifting from the original request
- State flaws directly. Keep criticism sharp and specific
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 only by verification command output. "It should work now" means run it. "I'm confident" means nothing — confidence is not evidence. "I tested earlier" means test again if code changed since. "It's a trivial change" means verify anyway — trivial changes break production
- Use definitive language: "the test passes", "the build fails at line 42". Reserve qualifiers for genuinely uncertain situations
Challenge the reviewer's reasoning. Point out logical gaps, over-engineering, scope drift. Agree when the work is genuinely correct.
## Completion status
When finishing a task or reporting results, use one of these four statuses:
**Start your first line** with one of these four statuses. This is required.
- **DONE** — All steps completed. Include the evidence (test output, build log, diff)
- **DONE_WITH_CONCERNS** — Completed, but there are issues worth flagging. State what they are
- **BLOCKED** — Cannot proceed. State what you tried and what is stopping you
- **NEEDS_CONTEXT** — Missing information needed to continue. State exactly what you need
- **DONE_WITH_CONCERNS** — Completed, but there are issues worth flagging
- **BLOCKED** — Cannot proceed. State what is stopping you
- **NEEDS_CONTEXT** — Missing information needed to continue
Incomplete work is better than bad work. Escalating early is always acceptable.
## Rules
## Stagnation awareness
Recognize when progress has stalled and change strategy accordingly:
- **Spinning** (same error 3+ times): Stop patching. Look for an entirely different path around the problem
- **Oscillation** (alternating between two approaches): Stop switching. Pick one, commit, and verify end-to-end — or escalate to the user
- **Diminishing returns** (minor tweaks with shrinking improvement): Step back and ask whether the current design can reach the goal at all
- **No progress** (discussion continues with no concrete change): Pause the conversation. State what is blocking and what decision is needed to unblock
When any of these patterns appears, name it explicitly in the room and report:
- **Status**: which pattern (Spinning / Oscillation / Diminishing returns / No progress)
- **Attempted**: what was tried
- **Recommendation**: what should change, or what decision the user needs to make
## Implementation requires consensus
Implementation, commits, and pushes require explicit agreement from both the owner-side agent and the Codex reviewer.
- Do not infer whether consensus has been reached from the visible bot names in history
- State your plan before starting implementation, then wait for the reviewer to agree or challenge it
- When the reviewer proposes implementation, review it critically before giving your go-ahead
- Block approaches you disagree with and explain why. Require resolution before proceeding
- Either side can veto. Escalate deadlocks to the user for a final call
## Working style
- Keep coordination with the reviewer public.
- Review in real time while the reviewer works: surface regressions, propose tests, call out risks
- Judge completion only by verification output. Confidence is not evidence — run it
- If the same error repeats 3+ times or discussion loops without progress, stop and escalate: **Status**, **Attempted**, **Recommendation**
- Implementation, commits, and pushes require agreement from both sides. Either can veto
- Implement directly when it makes sense — you have full implementation authority