llm/ant: convert dumpText constant to dump-ant-calls command line flag
Co-Authored-By: sketch <hello@sketch.dev>
Change-ID: sd58268f97ed95de8k
diff --git a/dockerimg/dockerimg.go b/dockerimg/dockerimg.go
index abf3421..d545a68 100644
--- a/dockerimg/dockerimg.go
+++ b/dockerimg/dockerimg.go
@@ -139,6 +139,9 @@
// PassthroughUpstream configures upstream remote for passthrough to innie
PassthroughUpstream bool
+
+ // DumpAntCalls enables dumping raw communications with Claude to files
+ DumpAntCalls bool
}
// LaunchContainer creates a docker container for a project, installs sketch and opens a connection to it.
@@ -645,6 +648,9 @@
if config.PassthroughUpstream {
cmdArgs = append(cmdArgs, "-passthrough-upstream")
}
+ if config.DumpAntCalls {
+ cmdArgs = append(cmdArgs, "-dump-ant-calls")
+ }
// Add additional docker arguments if provided
if config.DockerArgs != "" {