Documentation / Workflows

Clone

How cloning works in TrialStack when teams need to reuse a governed record as a starting point without losing control of the new copy.

Why it matters

flowchart LR
    Existing[Existing record] --> Clone[Clone]
    Clone --> Faster[Faster setup]

Clone explains how TrialStack lets teams reuse an existing governed record as a starting point instead of rebuilding the same structure from scratch.

How it works

flowchart LR
    Source[Source record] --> Clone[New copy]
    Clone --> Validate[Validate and own]

Cloning creates a new working record from an existing one. It accelerates setup while preserving the fact that the new record still needs its own validation, ownership, and change history.

When to use it

flowchart TD
    Similar[Next record is similar] --> Clone[Clone]
    Different[Work is different] --> Fresh[Start fresh]

This concept matters when a team has a record that is structurally close to the next one they need to create and wants to move faster without dropping governance.

What to watch for

flowchart LR
    Clone[Cloned record] --> Review[Review]
    Review --> Ready[Ready to trust]

Clone is an accelerator, not proof that the copied record is correct. Teams still need to review the result carefully before relying on it.