ccline: AI at the zsh prompt level — different approach to the same LLM dev problem #2362
Closed
jianshuo
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hey rtk community! 👋
I'm a fan of what rtk does — optimizing the LLM interaction layer for dev workflows is exactly the right problem to work on.
I built something that tackles the adjacent problem: when you don't know what command to run at all.
It's called ccline.
What it does
ccline hijacks zsh's
command_not_found_handler. If you type something that isn't a real command — plain English, a question, an intention — it sends it to Claude AI and renders Markdown in your terminal. Press Enter to run suggested commands.No prefix, no wrapper command. Just type your intent.
Relationship to rtk's approach
They're complementary — one optimizes the pipe, one adds a new tap.
Install
curl -fsSL https://raw.githubusercontent.com/jianshuo/ccline/main/install.sh | bashRequires
ANTHROPIC_API_KEY.→ https://github.com/jianshuo/ccline
All reactions