Hacker News new | ask | show | jobs
by cloudkj 30 days ago
Heh, I just wrote something very similar - bash, curl, and jq scripts that wrap local Ollama calls to produce a REPL/agent: https://github.com/cloudkj/llayer

Seems like the core idea is the same, but I took it farther down the Unix philosophy line of thinking and tried to make the individual components small and composable.

Feel free to check it out and compare!

1 comments

Nice! your project use smaller components (do one thing and do it well), bash4llm is more monolithic because I focus Bash-only portability and security. different approach for similar ideas, I see your repo, thank you!