diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-18 07:16:21 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-18 07:55:27 +0000 |
| commit | 86842903e4cae3a60b9732797cfc5dccddcc22e5 (patch) | |
| tree | ba6c8d83f588a41664ccbc845ce4f2b147bb60d1 /internal/task/task.go | |
| parent | 5814e7d6bdec659bb8ca10cc18447a821c59ad4c (diff) | |
fix: address round 2 review feedback for container execution
- Fix host/container path confusion for --env-file
- Fix --resume flag to only be used during resumptions
- Fix instruction passing to Claude CLI via shell-wrapped cat
- Restore streamErr return logic to detect task-level failures
- Improve success flag logic for workspace preservation
- Remove duplicate RepositoryURL from AgentConfig
- Fix app.js indentation and reformat DOMContentLoaded block
- Restore behavioral test coverage in container_test.go
Diffstat (limited to 'internal/task/task.go')
| -rw-r--r-- | internal/task/task.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/task/task.go b/internal/task/task.go index 40ab636..465de8b 100644 --- a/internal/task/task.go +++ b/internal/task/task.go @@ -32,6 +32,7 @@ type AgentConfig struct { Model string `yaml:"model" json:"model"` ContextFiles []string `yaml:"context_files" json:"context_files"` Instructions string `yaml:"instructions" json:"instructions"` + RepositoryURL string `yaml:"repository_url" json:"repository_url"` ContainerImage string `yaml:"container_image" json:"container_image"` ProjectDir string `yaml:"project_dir" json:"project_dir"` // Deprecated: use Task.RepositoryURL MaxBudgetUSD float64 `yaml:"max_budget_usd" json:"max_budget_usd"` |
