Skip to main content
Jeden Skill in Manus ausführen
mit einem Klick

verifier-rederive-from-raw-not-the-checked-artifact

Sterne1
Forks0
Aktualisiert8. Juli 2026 um 12:14

Use when DESIGNING or building a conformance judge / verifier / linter / LLM-as-judge / golden-render check / "does the output honestly reflect the input" gate — anything that validates a DERIVED or RENDERED artifact (HTML, report, serialized payload, dashboard, doc) against the source it was produced from. The trap: the verifier reads its "expected" values from the SAME intermediate artifact the producer already emitted (the serialized framing dict the template consumed, the metadata the renderer wrote, the cached classification) — so the check compares a value to itself and PASSES tautologically on the exact dishonesty it exists to catch (e.g. a "green badge on a negative result" passes because the badge token and the expected token came from the same already-computed dict). Fix + design rule: the verifier must RE-DERIVE its expectations from the RAW inputs by calling the producer logic ITSELF (classify/compute from the source bundle), never trust the intermediate artifact under test. Use when: (1) writing

Installation

Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.

SKILL.md
readonly