summaryrefslogtreecommitdiff
path: root/internal/executor/claude.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/executor/claude.go')
-rw-r--r--internal/executor/claude.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/executor/claude.go b/internal/executor/claude.go
index df81f76..6346aa8 100644
--- a/internal/executor/claude.go
+++ b/internal/executor/claude.go
@@ -25,6 +25,7 @@ type ClaudeRunner struct {
Logger *slog.Logger
LogDir string // base directory for execution logs
APIURL string // base URL of the Claudomator API, passed to subprocesses
+ DropsDir string // path to the drops directory, passed to subprocesses
}
// BlockedError is returned by Run when the agent wrote a question file and exited.
@@ -419,6 +420,7 @@ func (r *ClaudeRunner) execOnce(ctx context.Context, args []string, workingDir,
"CLAUDOMATOR_PROJECT_DIR="+projectDir,
"CLAUDOMATOR_QUESTION_FILE="+filepath.Join(e.ArtifactDir, "question.json"),
"CLAUDOMATOR_SUMMARY_FILE="+filepath.Join(e.ArtifactDir, "summary.txt"),
+ "CLAUDOMATOR_DROP_DIR="+r.DropsDir,
)
// Put the subprocess in its own process group so we can SIGKILL the entire
// group (MCP servers, bash children, etc.) on cancellation.