Settings

Theme

Show HN: Claudraband – Claude Code for the Power User

github.com

120 points by halfwhey 21 days ago · 47 comments · 1 min read

Reader

Hello everyone.

Claudraband wraps a Claude Code TUI in a controlled terminal to enable extended workflows. It uses tmux for visible controlled sessions or xterm.js for headless sessions (a little slower), but everything is mediated by an actual Claude Code TUI.

One example of a workflow I use now is having my current Claude Code interrogate older sessions for certain decisions it made: https://github.com/halfwhey/claudraband?tab=readme-ov-file#s...

This project provides:

- Resumable non-interactive workflows. Essentially `claude -p` with session support: `cband continue <session-id> 'what was the result of the research?'` - HTTP server to remotely control a Claude Code session: `cband serve --port 8123` - ACP server to use with alternative frontends such as Zed or Toad (https://github.com/batrachianai/toad): `cband acp --model haiku`. - TypeScript library so you can integrate these workflows into your own application.

This exists cause I was using `tmux send-keys` heavily in a lot of my Claude Code workflows, but I wanted to streamline it.

dragonfax 20 days ago

Using Claude Channels can make it easy to inject prompts and get just the response back without having to identify it in the terminal output or fight with the TUI.

But they're not well designed, and some things just have to go in through the terminal interface like slash commands (i.e. `/clear`)

colobas 21 days ago

Any idea of how this interacts with Anthropic's ToS for subscription-based use?

  • cortesoft 21 days ago

    It looks like it shouldn’t be an issue… it is just a wrapper around CLI calls to the official Claude code. It would be indistinguishable from the Anthropic side, and it isn’t even doing anything hacky or impersonating the official client.

    • halfwheyOP 21 days ago

      This is my interpretation as well, Anthropic wants to be in full control of the connection between the client and their servers, and that's compatible with what I'm trying to do.

    • j45 21 days ago

      Nor is it flooding servers with open claw type use.

lifis 21 days ago

That's cool but by only supporting Claude Code you are contributing to the Anthropic lock-in problem.

This needs to support at least Gemini CLI, Codex and OpenCode as well, preferably by being generic as much as possible.

  • obmelvin 21 days ago

    It isn't ones duty to develop for everybody. If someone makes something for their own use case and shares it, that's fine.

    • godelski 21 days ago

      And that's the beauty of open source and code. You can share it freely and easily. There's no thing that can be made for everyone.

      Maybe some irony is everyone tells me they "just care that it works". Yet it can work and you'll always have the comments like above because it works for the reason it was made but not for things it wasn't made for. But it's open, so modify the code and put in what you want ¯\_(ツ)_/¯

      I guess I should clarify its source available, not "Open Source". There's no license on the project so it's default theirs. But no harm if you're just editing it yourself. @OP should put up some license to let others know how what is allowed and what isn't

      • harthor 20 days ago

        Agree on the source-available clarification — this exact distinction matters on HN and I learned it the hard way recently.

        I just went through the licensing decision for my own project and landed on BSL 1.1 with a 4-year conversion to Apache 2.0. Framing it as "source-available, auto-converts to Apache 2.0 in 2030" reads as transparent intent rather than "fake open source."

        That said, BSL/FSL really only make sense if you plan to monetize a hosted version yourself. For wrapper tools like Claudraband that sit on top of an existing product ecosystem, MIT or Apache 2.0 might fit better — you're not protecting a competing SaaS, you're just sharing code.

      • halfwheyOP 21 days ago

        MIT License added

  • halfwheyOP 21 days ago

    Codex and Gemini have ACP servers already:

    https://github.com/zed-industries/codex-acp https://geminicli.com/docs/cli/acp-mode/

    In fact Codex, in OpenAI fashion, have their own protocol as well:

    https://developers.openai.com/codex/app-server

    Opencode too. These tools are already so programmable and embeddable, it's just Claude Code is a sticking point. But maybe it would be useful to provide a unified CLI and Daemon for all of them.

    • lifis 21 days ago

      They have ACP servers but they might apply different rate limits or policies if they notice ACP use, while a solution like yours would not trigger that unless it becomes popular enough to specifically detect. It also seems this provides more features them just an ACP server.

  • behrlich 20 days ago

    https://github.com/ehrlich-b/wingthing - Here's my version of this idea which is agent agnostic. Not exactly the same idea, "sandbox'ed persistent agent", in my case available over the web with xterm.js (though you can also just run locally).

    • snthpy 19 days ago

      This looks very cool! My concern is just that it's a lot of things bundled in one and I kind of have to trust you for all of them. I would prefer something that puts together a stack of better known components, like a docker compose of agent-sandbox and tailscale or something equivalent, etc ... ideally with each of those swappable.

    • snthpy 19 days ago

      Looks cool! What's a roost? Is that just a name for the server to go with the whole egg analogy some technology that I haven't heard of before?

  • d4v3 20 days ago

    Can't you just tell your AI tool of choice to just port it? One thing I like about AI is that now I can easily roll my own or take an open-source project and customize it really fast with very little commitment on my end. Instead of everyone having to use the exact same tools, now we can customize it to our liking--at least for now

  • ay 21 days ago

    I’ve made something very similar that is almost backend-agnostic: https://github.com/ayourtch-llm/tttt - and it does auto inject the MCP in case of Claude, but it is trivial to adapt to other backends.

  • sunir 20 days ago

    For someone paying nothing for something that costs nothing, you have way more than nothing to complain about. Not appropriate.

  • kordlessagain 20 days ago
  • keyle 20 days ago

    Opencode already supports continuing old sessions with ctrl-x, l.

alun 20 days ago

It's interesting how Anthropic haven't shipped their own IDE for more vertical integration.

All it would take is implementing their own forked version of VSCode (like Cursor did) and making Claude the default choice.

Obviously I'm simplifying here, but they definitely have the capability to do it.

  • SOLAR_FIELDS 20 days ago

    What cursor has learned, very painfully, is that making a complex gui, even with the help of ai, is a lot fucking harder than a cli tool. Anthropic is wisely staying out of that space and sticking to more basic ui’s like cowork.

    There is a LOT of work buried in your statement “all it would take”.

    All one has to do is look at the evolution of cursor to confirm my statement. Compare v1 of cursor to v3 and see how much more insanely simplified the ui has become in v3 - it’s essentially a glorified cowork interface now

  • pxc 20 days ago

    Is that something anyone wants? It seems like being able to plug into other editors works well. What are the experiences people are trying to get but currently can't build because ACP sucks or whatever?

  • braebo 20 days ago

    Claude Code Desktop is as close as I can see them getting as it seems the big bet is that the IDE is on its way out as models improve.

  • throwadobe 20 days ago

    > they definitely have the capability to do it.

    You'd think so, but I guess they don't.

pxc 20 days ago

If xterm.js is slower than tmux, why don't you just use tmux for the headless sessions as well? How is tmux not headless enough?

  • halfwheyOP 20 days ago

    Not everyone has tmux. I default to tmux if you have it and fallback to xterm.js

    • pxc 20 days ago

      Ah, ah, got it. So you get a kind of graceful degradation if the optional dependency is missing. Nice!

      And, I guess, it's headless in the sense that you can't attach to it even if you want to. I get what you meant now.

mikeroySoft 21 days ago

License? I see none listed in the repo.

SV_BubbleTime 20 days ago

I’m very dumb. How is this different than starting Claude Code in a tmux and then connecting to that?

  • halfwheyOP 20 days ago

    The extra stuff is that you can automate interactions with Claude Code sessions using a CLI (which just tmux send-keys under the hood), an HTTP server, and ACP server (so you can embed claude code in other IDEs), and typescript library. So it's meant to make CC more embeddable in your workflows.

beepbooptheory 20 days ago

Isn't "Claude Code power user" an oxymoron or am I confused?

  • sudb 20 days ago

    Are you asking if it is possible to be a power user of Claude Code? Because it very much is - what's the oxymoron?

    • ghiculescu 20 days ago

      I thought Claude Code _is_ for power users. How much more powerful do you need to be to use this?

  • halfwheyOP 20 days ago

    Some people open a claude code session and just talk with it. And some use hooks, custom commands, agent-teams..and so on. You can definitely be a power user. But I’m sure whether that translates to actual “power” is up for debate.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection