Skip to content
C.W.K.
Stream
Lesson 03 of 05 · published

The Reviewer Holds No Pen

~12 min · review-notes, role-boundary, revision, feedback

Level 0Dry Nib
0 XP0/36 lessons0/12 achievements
0/100 XP to next level100 XP to go0% complete
"A reviewer may point; only the authoring role may write the replacement."

Separate the powers

Diagnosis and authorship are different powers. A reviewer can notice stiff cadence, borrowed syntax, or an odd idiom. It may explain the problem and point to a locus, but it does not silently replace the translation.

Let state name the role

Persist the reviewer's diagnosis in translations.review_notes while leaving translations.revised_text untouched. A later authoring route may read those notes and choose revised wording.

Inkwell Today view showing a Chinese translation followed by an expanded Reviewer Notes panel in Korean.
Reviewer notes remain evidence; replacement wording lives in the separate author's revision.

The convenient overreach

A convenient reviewer rewrite collapses accountability. When wording changes, nobody can tell whether the translator chose it or the critic installed it. The same model may perform both roles at different times, but the job boundary must remain.

Authorship invariant. A reviewer may point; only the authoring role may write the replacement.

Follow one sentence through four acts

Test “The Reviewer Holds No Pen” by tracing original authorship, translation authorship, blind review, and author revision. For each act list inputs, outputs, visible evidence, writable fields, and the proof handed forward. One brain may perform two roles at different times; the job and authority must still remain distinct.

Make the judgment

Define a review-note schema that can be actionable without containing replacement prose. If you cannot answer who chose the final wording in one sentence, provenance is too thin. A note that silently edits text or a stet whose reason disappears changes who holds the pen.

Narrow roles sharpen quality

Giving a reviewer every truth is not always an improvement. Restricting evidence and action makes the naturalness question answerable. The author uses that answer as material while retaining responsibility for the final choice.

Prove authority in the write set

The current translation row gives the reviewer one writable field, review_notes, and reserves revised_text for the authoring role. Role prompts explain the boundary; the store-level allowlist enforces it.

The same model may return later as author, but that later job carries different authority and provenance.

Code

Keep review output penless·python
WRITABLE_BY_ROLE = {
    "reviewer": {"review_notes"},
    "author": {"revised_text"},
}

def authorize_patch(role, patch):
    unexpected = set(patch) - WRITABLE_BY_ROLE[role]
    if unexpected:
        raise ValueError(f"{role} cannot write {sorted(unexpected)}")
    return patch

authorize_patch("reviewer", {
    "review_notes": "Paragraph 2 follows the source cadence too closely."
})

External links

Exercise

Define a review-note schema that can be actionable without containing replacement prose.
Hint
Put visible evidence and writable fields in the same table.

Progress

Progress is local-only — sign in to sync across devices.
Spotted a bug or have feedback on this page?Report an Issue

Comments 0

🔔 Reply notifications (sign in)
Sign inPlease sign in to comment.

No comments yet — be the first.