Comment by westurner
3 months ago
From https://news.ycombinator.com/item?id=45516584#45517613 re: LTM and STM and LLMs:
> jj autocommits when the working copy changes, and you can manually stage against @-: https://github.com/Cretezy/lazyjj
Would a live log follow mode for lazyjj solve?
diffwatch is kinda general purpoure, besides the agent work you could watch different processes doing stuff in your homedir, for example
Cool tool! Is the inotify directory/file watch count the limit?
I can't seem to remember the name of the pre-containers tool that creates a virtual build root and traps all the file syscalls. It's not strace.
Easier to trace everything an AI runs by running the agent in a container with limited access to specific filesystem volumes.
eBPF is the fastest way to instrument in Linux AFAIU:
Traceleft: https://github.com/ShiftLeftSecurity/traceleft
Tracee: https://github.com/aquasecurity/tracee
Falco docs > Supported events: https://falco.org/docs/reference/rules/supported-events/
Tetragon: https://github.com/cilium/tetragon
strace could have a --diff-fs-syscall-files option:
it uses the os independant fsnotify lib, it surely has its limits. eBPF is great, but linux only, yeah
6 replies →