Packages

Prompt Runner SDK - packet-first prompt execution for Elixir and CLI workflows with verifier-owned completion, retry, repair, and git-aware repository orchestration.

Current section

Files

Jump to
prompt_runner_sdk lib prompt_runner run.ex
Raw

lib/prompt_runner/run.ex

defmodule PromptRunner.Run do
@moduledoc """
Result returned from `PromptRunner.run/2` and `PromptRunner.run_prompt/2`.
"""
alias PromptRunner.Plan
@type t :: %__MODULE__{
plan: Plan.t(),
status: :ok | :error,
result: term()
}
defstruct [:plan, :status, :result]
end