Prevalidated Transformation Template¶
Codified template — instantiates Catalytic Pathway Enablement
Codifies an already-validated pathway as a reusable template so each new case fills it in instead of reconstructing and re-proving the transformation from scratch.
When a transformation recurs, the expensive part is often not doing it but re-establishing that this way is valid — re-running the search, re-assembling the evidence, re-negotiating the terms, re-deriving the format every single time. Prevalidated Transformation Template lowers that barrier by carrying the validation forward: someone proves the pathway sound once, and the proof is frozen into a reusable template that every later case inherits by filling in the blanks. Its defining move is what it lowers — the cost of re-proof and re-derivation, not the cost of execution. A template is only worth trusting because a real validation stands behind it, so the mechanism couples an encoded specification with an explicit feasibility check and a refresh rule that keeps the frozen proof from going stale as the world moves under it.
Example¶
A startup and an angel investor want to do a simple early-stage financing. Drafting a bespoke convertible note would mean lawyers reconstructing standard terms, re-negotiating boilerplate, and re-proving that the structure is sound — weeks of cost on a small deal. Instead they use a SAFE (Simple Agreement for Future Equity), the standard-form template published by Y Combinator: the transformation — money now in exchange for a future equity claim — has been validated once by counsel, and each new round just fills in the two variables that actually differ, the valuation cap and the discount. The deal that would have taken weeks closes in days, and both sides trust it because the pathway itself was pre-proven, not improvised.
The template's discipline shows in its upkeep. When the market and tax treatment shifted, the original pre-money SAFE was reissued as a post-money version — the frozen proof had gone partly stale, and the refresh rule is what kept later users from inheriting an outdated one. A template with no such refresh becomes a liability precisely because everyone keeps trusting a validation that no longer holds.
How it works¶
- Freeze a validated pathway. A transformation is proven sound once — feasible, legitimate, acceptable — and that proof is encoded as a reusable specification rather than re-derived per case.
- Expose fill-in points, lock the rest. The template separates the few variables a case may set from the validated structure it must not, so reuse cannot silently break the proof.
- Refresh on drift. A versioning rule re-checks and reissues the template when the law, market, or underlying feasibility it assumed has moved.
Tuning parameters¶
- Scope / generality — how broad a class the template covers. Wide templates serve more cases but fit none perfectly; narrow ones fit tightly but multiply the set you must maintain.
- Locked vs. fill-in fields — how much a case may customize. More open fields add flexibility but reopen the re-validation cost the template was meant to close.
- Refresh cadence & version control — how often the frozen proof is re-checked and how strictly versions are tracked. Slack here is how stale templates keep circulating.
- Escape hatch — whether edge cases that do not fit are routed to full bespoke handling rather than forced into the template's shape.
When it helps, and when it misleads¶
Its strength is closing the re-proof cost on a stable, recurring pathway: the hundredth case inherits the first case's validation for almost nothing, and everyone converges on one trusted structure instead of a hundred idiosyncratic ones.
It misleads when the frozen proof quietly stops holding. Template drift is the core failure — the world changes, the template does not, and users keep trusting a validation that has expired; over time the edge cases that no longer fit get forced into the template's shape and their misfit stops being noticed, a slow normalization of deviance.[1] The classic misuse is reaching for a template past its validity precisely to avoid the work of re-validating. The discipline is version control with an explicit refresh trigger and a real escape hatch, so the template stays a carried-forward proof rather than a fossil.
How it implements the components¶
Prevalidated Transformation Template fills the codified-and-validated-pathway side of the archetype — encoding the transformation and vouching for it — not its execution or routing:
target_transformation_specification— the template is the specification: it encodes the initial and final states, the substrate class, and the acceptance standard the pathway guarantees.equilibrium_neutrality_check— the "prevalidated" claim rests on having confirmed the endpoint is genuinely feasible and legitimate; the template accelerates an already-valid transformation, it does not manufacture feasibility.replacement_or_refresh_rule— the versioning and reissue rule that keeps the frozen proof current, so reuse tracks the world rather than an expired assumption.
It specifies and vouches for the pathway but does not execute it (that is Workflow Automation or Macro), define the machine-readable interface for using it (that is Interface Contract Design), or decide which cases are eligible to use it (that is Fast Track with Eligibility Rules).
Related¶
- Instantiates: Catalytic Pathway Enablement — the template is the reusable, pre-proven pathway that spares each case the re-derivation barrier.
- Consumes: Small Safe-to-Fail Probe — the validation a template freezes is produced by first probing or piloting the pathway.
- Sibling mechanisms: Workflow Automation or Macro · Fast Track with Eligibility Rules · Interface Contract Design · Small Safe-to-Fail Probe
Notes¶
A template pre-validates a pathway; it does not run it — automation does that, and often runs a template's steps. Its refresh rule is template-versioning (reissuing an encoded proof), which is distinct from Catalyst Regeneration Protocol's restoring of a spent facilitator: one keeps a specification current, the other restores a facilitator's activity.
References¶
[1] Normalization of deviance — Diane Vaughan's term for how a group gradually comes to accept drift from a standard until the drift feels normal. Applied to a template, it is the slow acceptance of edge cases that no longer really fit the frozen proof but are pushed through anyway. ↩