Skip to content
C.W.K.
Stream
Lesson 02 of 04 · published

The Well Writes; It Never Excerpts

~10 min · original-composition, provenance, copyright, authorship

Level 0Dry Nib
0 XP0/36 lessons0/12 achievements
0/100 XP to next level100 XP to go0% complete
"The cleanest provenance is a passage that begins its life inside the well."

Start with the human act

A shortcut would fetch a famous paragraph, attach a name, and call it daily practice. That changes the product into a quotation corpus with licensing and attribution debt. Inkwell refuses the bundle: the concrete passage offered for handwriting is composed fresh for this draw.

Make data carry the promise

The durable source record can stay legible: keywords, origin language, routed brain, optional soul, and generated original. It does not need a hidden source URL or a brittle assertion that somebody else's five sentences were reproduced correctly.

Interrogate the failure path

Originality is not an excuse for mush. The passage still needs cadence and thought. The difference is that quality is judged inside the well's authorship flow instead of being borrowed from a famous name sitting above the page.

Absence is also design

Audit retrieval calls, quotation tables, fixtures, caches, and fallback snippets. If any can become the rendered main passage, the promise is false even when the happy path writes something new.

Working principle. Original describes the delivered passage and its explicit provenance; it is not a mystical claim that authors create without influence.

Follow the promise beyond success

A single happy screen cannot prove this boundary. Trace validation rejection, generation failure, repeated delivery, cancellation, and the next-day reload. List every fallback in a prompt system and prove that none can render stored or retrieved prose as the original. If the API response, stored row, and button copy tell different stories, the quietest mismatch eventually becomes the product's real behavior.

A question worth carrying

During review, ask less whether the feature exists and more whether any path steals the human role it was meant to protect. Inspect missing fields and absent pressure as deliberately as present code. A refusal lasts only when the system declines to implement the tempting opposite.

Code

Reject an excerpt-shaped source·python
GENERATION_SYSTEM = (
    "Compose an ORIGINAL passage for transcription. "
    "Never quote, paraphrase, or imitate an identifiable work or author."
)

def assert_original_only_contract(system_prompt, enabled_tools):
    lowered = system_prompt.lower()
    if "original" not in lowered or "never quote" not in lowered:
        raise ValueError("generation prompt lost the original-only rule")
    forbidden = {"web_search", "retrieval", "quotation_store"}
    if forbidden & set(enabled_tools):
        raise ValueError("the writing route must not retrieve source prose")
    return True

assert assert_original_only_contract(GENERATION_SYSTEM, enabled_tools=[])

External links

Exercise

List every fallback in a prompt system and prove that none can render stored or retrieved prose as the original.
Hint
The boundary must survive generation failure, not merely the demo.

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.