Versions in this module Expand all Collapse all v0 v0.0.1 Mar 24, 2026 Changes in this version + type AgentSpec struct + Name string + Prompt string + Role string + Tools []string + type Result struct + Outputs map[string]string + Plan []AgentSpec + Summary string + func Run(ctx context.Context, task, repoContext, sdkDocs string, runner Runner) (*Result, error) + type Runner interface + Run func(ctx context.Context, prompt string, tools []string) (string, error) + type RunnerFunc func(ctx context.Context, prompt string, tools []string) (string, error) + func (f RunnerFunc) Run(ctx context.Context, prompt string, tools []string) (string, error)