Versions in this module Expand all Collapse all v0 v0.1.5 Mar 23, 2026 Changes in this version + func RunDirName(recipeName, reportID string) string + func Save(dir string, report *RunReport) (string, error) + func SaveMetadata(dir string, report *MetadataReport) (string, error) + type MetaModelResult struct + CostUSD float64 + Error string + FilesChangedCount int + InputTokens int64 + LatencyMS int64 + ModelID string + OutputTokens int64 + ReasoningTokens int64 + Steps int + StopReason string + ToolCalls map[string]int + type MetaRecipeSnapshot struct + Models []string + Name string + SuccessCriteria []string + Tasks []string + Version int + type MetaTaskResult struct + CriteriaResults map[string][]criteria.Result + Index int + Models []MetaModelResult + PromptHash string + SelectedModel string + type MetadataReport struct + ID string + Recipe MetaRecipeSnapshot + SessionID string + Summary Summary + TaskMode string + Tasks []MetaTaskResult + Timestamp time.Time + func BuildMetadataReport(full *RunReport) *MetadataReport + func LoadMetadata(path string) (*MetadataReport, error) + type ModelSummary struct + AvgLatencyMS float64 + CriteriaPassed int + CriteriaTotal int + TasksSucceeded int + TotalCostUSD float64 + type Options struct + Adapters []models.ModelAdapter + Cfg config.Config + CheckpointPath string + DebugLog bool + JSON bool + MCPDefs []tools.ToolDef + MCPDispatchers map[string]tools.MCPDispatcher + OutputDir string + Recipe *recipe.Recipe + SessionID string + Stderr io.Writer + Verbose bool + type RecipeSnapshot struct + Models []string + Name string + SuccessCriteria []string + SystemPrompt string + Tasks []string + Version int + type RunReport struct + ID string + Recipe RecipeSnapshot + SessionID string + Setup SetupInfo + Summary Summary + TaskMode string + Tasks []TaskResult + Timestamp time.Time + func Load(path string) (*RunReport, error) + func Run(ctx context.Context, opts *Options) (*RunReport, error) + func (r *RunReport) Filename() string + type SetupInfo struct + GitMode bool + ModelDirs map[string]string + SetupMS int64 + WorktreeBase string + type Summary struct + CompletedTasks int + PerModel map[string]ModelSummary + TotalCostUSD float64 + TotalTasks int + type TaskResult struct + CriteriaResults map[string][]criteria.Result + Index int + Prompt string + Report *output.Report + SelectedModel string v0.1.0 Mar 14, 2026