Launching today
Coderrr

Coderrr

Open source CLI-first AI coding companion

74 followers

A powerful CLI tool that writes, debugs, and ships code alongside you. Like Claude Code, but free and open source. AI-powered coding agent that analyzes tasks, creates actionable plans, and executes commands.
Coderrr gallery image
Coderrr gallery image
Coderrr gallery image
Coderrr gallery image
Free
Launch Team
Intercom
Intercom
Startups get 90% off Intercom + 1 year of Fin AI Agent free
Promoted

What do you think? …

Akash Nath

Hey Product Hunt 👋
I’m Akash, the maker of Coderrr.

Coderrr started as a side project because I loved tools like Claude Code and OpenAI Codex, but wanted a free, open-source, CLI-first alternative that developers could actually inspect, modify, and extend.

Coderrr runs directly in your terminal and acts like an AI coding partner — it can understand your codebase, help generate or refactor code, explain bugs, and automate common dev tasks without needing a heavy IDE setup.

What surprised me is that after submitting this to an open-source contribution event, it started getting real traction from the community — which pushed me to polish it and launch here.

This is still early, and I’d genuinely love your feedback:

  • What workflows should Coderrr support next?

  • What annoys you most about existing AI coding tools?

  • What would make this part of your daily dev setup?

If you like open-source, CLI tools, or AI for developers, I’d love for you to try it out.
Thanks for checking it out 🙌

— Akash

Samet Sezer

big fan of the CLI-first approach for those of us who live outside VS Code. since it's open source, does this support plugging in local models (like via Ollama) to keep the whole workflow offline and free, or is it tied to specific APIs?

Akash Nath

@samet_sezer 

Apart from default API, Coderrr supports different other providers (like openai, anthropic, Ollama, Openrouter) that user can configure based on their own need. You can have a local model serving in your system and use Ollama provider to keep everything offline and contained in your system.

Check https://coderrr.aksn.lol/docs/providers for more details about providers

Josef

@samet_sezer Nice — local/Ollama support is a strong differentiator here. The real test, though, will be how well Coderrr handles context drift in long-lived CLI sessions (monorepos, multi-branch work, partial diffs).

Do you persist session memory across terminals, or is everything purely per-run?

Akash Nath

@samet_sezer  @gnizdoapp Right now it doesn't handle session memory across terminals. But implementation of this feature is ongoing, and hopefully will be ready to ship within next week

Zeiki Yu

Huge congrats on the launch! 🎉 Coderrr looks like a super practical CLI‑first companion for real-world shipping, not just toy snippets—excited to see how it fits into devs’ daily workflows.​

Akash Nath

@zeiki_yu Thanks a lot! I really appreciate it!

Kindly share this with any tech enthusiast in your circle so they can try this out and give feedbacks 😊

Jan Schutte

How is this different from opencode for instance?

Josef

@janschutte Good question. From what I see, the key difference isn’t “better AI,” but CLI-first + fully inspectable stack. opencode leans more toward hosted/GUI workflows, while Coderrr feels built for engineers who want scripts, reproducibility, and local control.

Akash — what’s the single architectural choice that makes Coderrr fundamentally different under the hood?

Akash Nath

@janschutte  @gnizdoapp I'd say Josef, the single architectural choice that makes Coderrr different from others is the stateless CLI. It only handles fileops and local prompts, while the API handles all the heavy stuff.

Apart from Ollama, all other providers are embedded with the API, so you can configure your own provider as you like or use the default llm

Daniel Contreras

Congratulations on the launch, I guess the only question I have is how does it compare to OpenCode? which is the one I was initially thinking of using for local models now that my new Macbook is on its way. I'll test both once it arrives anyway but I want to know if there's already different workflows or features between the two

Akash Nath

@daniel_contreras1 Hey Daniel, to be very honest right now Coderrr isn't so different from Opencode except for a very minimal features. I made this project back in late October 2025, and left it as it is for a long time till I saw OpenCode launch.

Coderrr is open-source, and I invite all dev community members to contribute and solve all the problems people face during using Claude Code, Openai Codex or OpenCode

GitHub Link: https://github.com/Akash-nath29/...

jiawei liu

The CLI-first vibe is great for speed. I'm curious—how does Coderrr handle context retrieval for large codebases compared to heavier IDE plugins?

Akash Nath

@jiawei_liu6 Right now Coderrr doesn't support context retrieval and local context storage for large codebases. But this feature is under development right now, and will be ready to ship within next week!

Ryan Thill

CLI-first + pluggable providers (Ollama/OpenRouter/etc.) is a solid “inspectable agent” direction 🔥

The scale pain is monorepos/long sessions → context drift; best practice is incremental repo indexing (tree-sitter + ripgrep) + lightweight embeddings + persisted session state keyed by git SHAs.

How are you planning retrieval + cross-terminal memory (local store like sqlite/duckdb + pgvector, or pure filesystem cache)?