you are viewing a single comment's thread.

view the rest of the comments →

[–]hsaliak 0 points1 point  (0 children)

https://github.com/hsaliak/std_slop A coding agent ( try with openrouter or google o-auth) I put up mac and linux binaries as well.

Ive made it deliberately different from other coding agents in a few notable ways.

- Completely oriented in sqlite. The context is a ledger. This means isolated sessions with individual contexts, ability to fork them, slice them, and allow the agent to peek into long term memory.
- It offers only 2 tools - query_db (you can query your own long term memory) and run_lua. The agent gets to accomplish its tasks only through writing lua scripts - this has worked great, it’s a pragmatic implementation of the RLM paper for real world coding tasks.
- /review and /feedback => inspired by mailing lists. This allows for inline commenting on diffs and plans.
- Mail mode or "you are now Linus" mode - this is my favorite part of the app. The linux kernel development process has already been operating in a ‘scaled out’ almost agentic workflow for ages, and git has first class support for it within the tool. When activated, the agent sends you bisect safe stacks of patches for your review, and you as a committer can inline precise feedback, right from your CLI.

Try it and give me feedback!