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 mix tasks prompt_runner.ex
Raw

lib/mix/tasks/prompt_runner.ex

defmodule Mix.Tasks.PromptRunner do
@moduledoc """
Mix task wrapper for the `PromptRunner` CLI.
"""
@shortdoc "Run PromptRunner commands from Mix"
use Mix.Task
@impl true
def run(args) do
Mix.Task.run("app.start")
PromptRunner.CLI.main(args)
end
end