# `SquidMesh.Runtime.StepExecutor.PreparedStep`
[🔗](https://github.com/ccarvalho-eng/squid_mesh/blob/main/lib/squid_mesh/runtime/step_executor/prepared_step.ex#L1)

Immutable handoff from preparation into execution and apply.

The struct keeps the claimed step-run record, resolved workflow step
definition, normalized input snapshot, and current run context together so
later phases do not need to repeat preparation work.

# `t`

```elixir
@type t() :: %SquidMesh.Runtime.StepExecutor.PreparedStep{
  config: SquidMesh.Config.t(),
  definition: SquidMesh.Workflow.Definition.t(),
  input: map(),
  run: SquidMesh.Run.t(),
  step: SquidMesh.Workflow.Definition.step(),
  step_name: atom(),
  step_run: SquidMesh.Persistence.StepRun.t()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
