[OC] I was tired of AI tools breaking my terminal workflow, so I built a pipe-friendly CLI that acts like a standard Unix filter (with .git-like state isolation). It's brand new and I need your harsh feedback.

Posted by CatTwoYes@reddit | linux | View on Reddit | 9 comments

Hi r/linux,

I know this sub is generally (and rightfully) exhausted by the endless wave of "AI wrappers" that try to take over your entire system, force you into clunky web UIs, or dump massive global configs in your home directory.

I felt the same way. I wanted to use LLMs for daily dev tasks, but I didn't want a heavy "co-pilot". I wanted a standard, dumb pipe that I could chain with grep, awk, and jq.

So I built Huko.

It’s an open-source CLI tool designed strictly around the Unix philosophy: do one thing, take stdin, and spit out stdout (or JSON).

Here is what makes it fit for a proper Linux environment:

The Reality Check (Why I'm posting here):

Huko is a brand-new release (v0.x).

Even though it successfully bootstrapped part of its own codebase, let's be real: running in my solitary environment is different from surviving the wild. It has rough edges, the architecture might have blind spots I haven't considered, and there are almost certainly edge cases in local file handling or standard I/O streams that will break it.

I'm posting here because I want raw, unfiltered feedback from Linux power users.

If this sounds mildly useful, I’d be honored if you tried to break it. Contributions, issues, or just telling me why this is a terrible idea are all highly welcomed.

Repo:https://github.com/alexzhaosheng/huko
Site:https://huko.dev(It’s just NPM install and go).

Thanks for your time.