Zerostack – A Unix-inspired coding agent written in pure Rust
51–60 of 334 posts
Re: Zerostack – A Unix-inspired coding agent written in pure Rust
#52The smarter the models get the less the harnesses matter (outside of devx).
Maybe one day I'll run it through swebech.
Re: Zerostack – A Unix-inspired coding agent written in pure Rust
#53Re: Zerostack – A Unix-inspired coding agent written in pure Rust
#54Re: Zerostack – A Unix-inspired coding agent written in pure Rust
#55Earlier quoted context omitted.
I've been trying to use `Deno` underneath `Rust` so that the tools can still be written in Typescript and thus self-mutated without the compilation step (but I can still try to do clever things with V8 Isolates or similar). It's been an ugly experiment so far; I'm vaguely thinking a simpler model would be to just define a binary "API" and run tools by exec-ing binaries.
Why not WASM?
Re: Zerostack – A Unix-inspired coding agent written in pure Rust
#56Re: Zerostack – A Unix-inspired coding agent written in pure Rust
#57I (somewhat jokingly) wrote one recently too... https://github.com/pnegahdar/nano in under 200 lines. Repl, sessions, non-interactive, approvals, etc The smarter the models get the less the harnesses matter (outside of devx). Maybe one day I'll run it through swebech.
Re: Zerostack – A Unix-inspired coding agent written in pure Rust
#58Earlier quoted context omitted.
I've been trying to use `Deno` underneath `Rust` so that the tools can still be written in Typescript and thus self-mutated without the compilation step (but I can still try to do clever things with V8 Isolates or similar). It's been an ugly experiment so far; I'm vaguely thinking a simpler model would be to just define a binary "API" and run tools by exec-ing binaries.
I have to be honest and tell you that try to load such an heavy runtime as a scripting layer is not a great idea; at the same time I can tell you that I am working on another Rust project where I also needed scripting, and after three attempts I landed on rhai ( https://rhai.rs/ ) ( https://rhai.rs/book ). You might find it nice for pretty much all use cases except for high-performance scripting (so, if you are not t…
Re: Zerostack – A Unix-inspired coding agent written in pure Rust
#59I (somewhat jokingly) wrote one recently too... https://github.com/pnegahdar/nano in under 200 lines. Repl, sessions, non-interactive, approvals, etc The smarter the models get the less the harnesses matter (outside of devx). Maybe one day I'll run it through swebech.
I also wrote one by myself last week (just for fun and learning). It works, including integration with configured mcpServers (like you do in most coding agents). Wrote about the whole step-by-step process and what is needed at what step and why: https://nb1t.sh/building-a-real-agent-step-by-step/
Re: Zerostack – A Unix-inspired coding agent written in pure Rust
#60Is there any API like Pi so that I can create extensions.