I'm experimenting with having claude help debug some heavy simulations of mine.
These simulations can take 5-10 minutes to set up (initialize all the relevant arrays), then 5 mins to many hours to run.
One thing I've found Claude not particularly good with, is pinging kaimon if the latest ex completed. If I don't watch closely, it may "forget" to do it altogether if the first N pings didn't return.
Questions:
- Is there a way for Kaimon to send a ping to the agent?
- Is there a way for Kaimon to send a message ("as if it's me") to the agent?
- by this I mean having Kaimon do the equivalent of writing a message to the LM interface to say that it should check the eval.
- Is there a way to inspect
stdout as messages are printed? During a simulation run, I have regular @info statements with progress information. I see this in REPL, but it seems like the agent can't see the output to stdout until ex completed.
Some alternative workarounds, where these tools seems to have better support, include:
- checking if a file is updated
- I could get Kaimon to write to a file when the previous command finishes?
Any thoughts on this?
I'm experimenting with having claude help debug some heavy simulations of mine.
These simulations can take 5-10 minutes to set up (initialize all the relevant arrays), then 5 mins to many hours to run.
One thing I've found Claude not particularly good with, is pinging kaimon if the latest
excompleted. If I don't watch closely, it may "forget" to do it altogether if the first N pings didn't return.Questions:
stdoutas messages are printed? During a simulation run, I have regular@infostatements with progress information. I see this in REPL, but it seems like the agent can't see the output tostdoutuntilexcompleted.Some alternative workarounds, where these tools seems to have better support, include:
Any thoughts on this?