31 comments

  • divan 15 hours ago

    One of the main reasons for me for sticking with Claude Code (also for non-coding tasks, I think the name is a misnomer) is the fixed price plan. Pretty much any other open-source alternative requires API key, which means that as soon as I start using it _for real_, I'll start overpaying and/or hitting limits too fast. At least that was my initial experience with API from OpenAI/Claude/Gemini.

    Am I biased/wrong here?

    • jonathanleane 3 hours ago

      What non coding tasks do you use Claude Code for? Genuinely curious.

      • world2vec 2 hours ago

        It can also take notes, write down plans and TODO lists, update on gym records, etc, etc.

        • Tusharmagar 2 hours ago

          Curious how you're handling notes and TODO lists. Do you give Claude Code access to a local markdown file, or is it working some other way?

    • segmenta 15 hours ago

      Yep, this is a fair take. Token usage shoots up fast when you do agentic stuff for coding. I too end up doing the same thing.

      But for most background automations your might actually run, the token usage is way lower and probably an order of magnitude cheaper than agentic coding. And a lot of these tasks run well on cheaper models or even open-source ones.

      So I don't think you are wrong at all. It is just that I believe the expensive token pattern mostly comes from coding-style workloads.

      • kej 14 hours ago

        I don't doubt you, but it would be interesting to see some token usage measurements for various tasks like you describe.

        • segmenta 14 hours ago

          For example, the NotebookLM-style podcast generator workflow in our demo uses around 3k tokens end to end. Using Claude Sonnet 4.5’s blended rate (about $4.5 per million tokens for typical input/output mix), you can run this every day for roughly eight months for a bit over three dollars. Most non-coding automations end up in this same low range.

    • giancarlostoro 11 hours ago

      You're not wrong, though I suspect the AI "bubble burst" begins to happen when companies like Anthropic stop giving us so much compute for 'free' the only hope is that as things get better their cheaper models get as good as their best models today and so it costs drastically less to use them.

      • aitchnyu 28 minutes ago

        Sonnet is 3$ per million tokens, Grok Code Fast is 0.2$. IME the latter is better for me. Wish everybody treats AI as a pay-as-you-go commodity instead of getting dependant on rugpulls. My stack is Openrouter (model marketplace) and Aider (Kilocode and Cline for user friendly alternatives).

        • segmenta 13 minutes ago

          Will check out Grok Code Fast - thanks for the pointer. In my experience, coding agents can swing a lot in quality depending on the model’s reasoning power. When the model starts making small but avoidable mistakes, the overhead tends to cancel out the benefit. Curious to see how Grok performs on multi-step coding tasks.

      • segmenta 9 hours ago

        Yeah, I think when they made the bet it genuinely made sense. But in coding workflows, once models got cheaper, people did not spend less. They just started packing way more LLM calls into a single turn to handle complex agentic coding steps. That is probably where the math started to break down.

  • _ink_ an hour ago

    > E.g. "Generate a NotebookLM-style podcast from my saved articles every morning"

    How does it do that? Does it require a tool for that? Or a special model?

    • segmenta an hour ago

      In the demo - for the voice and music, it uses the ElevenLabs MCP server for TTS, and ffmpeg locally to stitch the audio together. In the demo we pull content from Tweets via an MCP tool, but you can swap that step for anything — for example, fetching your saved articles with curl. There’s no special model required; any LLM that can call tools will work.

      • segmenta 38 minutes ago

        We’ve included the exact agents used in the demo here for reference: https://github.com/rowboatlabs/rowboat/blob/cli/apps/cli/exa....

        We’re adding an easier way to run examples soon. In the meantime, if you’d like to try this one locally: (1) Copy the agent file into ~/.rowboat/agents/ (2) Add the MCP server (and your keys) to ~/.rowboat/config/mcp.json (3) Run: 'rowboatx --agent=tweet-podcast --input=go'

  • nl 15 hours ago

    I'm increasingly seeing code-adjacent people who are using coding agents for non-coding things because the tooling support it better, and the agents work really well.

    It's an interesting area, and glad to see someone working on this.

    The other program in the space that I'm aware of is Block's Goose.

    • segmenta 14 hours ago

      Yep, totally agree. We actually had an earlier web version, and the big learning was that without access to code-related tools the agent feels pretty limited. That pushed us toward a CLI where it can use the full shell and behave more like a real worker.

      Really appreciate the support and the Goose pointer. Would love to hear what you think of RowboatX once you try it.

  • RamblingCTO 5 hours ago

    Pretty cool! A bit of an upgrade of just letting claude write pocketflow agents for stuff. That's what I'm doing now.

    • segmenta 5 hours ago

      Thanks! Curious what kinds of workflows you are automating right now and any pain points you’ve run into.

      • RamblingCTO 3 hours ago

        I automated a bunch of business workflows like sorting documents for accounting in my cloud storage, tagging emails that are invoices, stuff like that. I do this for a living though, so I also use these as casestudies and rowboat is a hard sell for end users I guess.

        • segmenta 3 hours ago

          Thanks, that makes sense. I assume the CLI approach might be the main hurdle for end users?

          • RamblingCTO 3 hours ago

            Exactly. They want something that just works and runs somewhere. I'm talking about SME owners.

  • crimsoneer an hour ago

    I wonder how this compares with the CLine CLI?

    • segmenta 44 minutes ago

      Cline is great, but it’s primarily focused on coding workflows, similar to Claude Code. RowboatX is aimed at a different category: background agents for non-coding automations (e.g. meeting prep, daily briefings, etc).

      The big difference from Claude Code (and Cline) is that RowboatX can spin up persistent background agents that run on schedules, use the system shell, and call MCP tools to automate tasks outside of coding.

  • jckahn 18 hours ago

    Can this use local LLMs?

  • lrvick 11 hours ago

    Open source... "enter OpenAI API key"... closes tab

    • lrvick 11 hours ago

      Saw comment about local LLM support that I somehow totally missed. Re-opening tab. Should have led with that!

      • segmenta 10 hours ago

        Ah did not realize this - good to know!

        • segmenta 9 hours ago

          Fixed the quick start instructions to not start with OpenAI.