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 prompt.ex
Raw

lib/prompt_runner/prompt.ex

defmodule PromptRunner.Prompt do
@moduledoc false
@type t :: %__MODULE__{
num: String.t(),
phase: integer(),
sp: integer(),
name: String.t(),
file: String.t(),
target_repos: [String.t()] | nil
}
defstruct [:num, :phase, :sp, :name, :file, :target_repos]
end