Remix.run Logo
kimixa 6 hours ago

For just logging would it really give any more info than a trace already does?

alyxya 5 hours ago | parent | next [-]

Forgot about that, was mostly thinking about how AI agents with unrestricted permissions would ideally have some external logging and monitoring, so there would be a record of what it touched. A trace has all of the raw information, so some kind of wrapper around that would be useful.

afshinmeh 5 hours ago | parent [-]

I'd like to know what level of details you'd expect. Something like `zerobox -- claude`, then you get an output log like this:

```

Read file /etc/passwd

Made network call to httpbin.org

Write file /tmp/access

```

etc.? I'm really interested to hear your thoughts and I will add that feature (I need something like that, too).

kimixa 2 hours ago | parent | prev [-]

*strace that is - annoyingly it seems it was autocorrected away

afshinmeh 2 hours ago | parent [-]

I think there is still a valid case for sandbox logs/otel. strace would give you the syscalls/traces but not _why_ a particular call was blocked in side the sandbox (e.g. the decision making bit).