<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: akhisud</title><link>https://news.ycombinator.com/user?id=akhisud</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 15 Sep 2026 12:55:41 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=akhisud" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by akhisud in "Launch HN: Rowboat (YC S24) – Open-source IDE for multi-agent systems"]]></title><description><![CDATA[
<p>Our ideal users are developers and product teams who want to automate everyday workflows for themselves and their users. Examples include meeting prep, daily/weekly reporting, project management, GitHub repo management, and customer support.<p>Power users treat Rowboat as their daily go-to assistant for a range of different tasks, customizing assistants for themselves and expanding to cover more use cases.<p>Regarding pricing: If usage exceeds beyond the $20 (starter) plan, we have a $200 (pro) plan that users can upgrade to. Additionally, we will soon be launching pay-as-you-go pricing as well.</p>
]]></description><pubDate>Tue, 16 Sep 2025 18:07:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=45265677</link><dc:creator>akhisud</dc:creator><comments>https://news.ycombinator.com/item?id=45265677</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45265677</guid></item><item><title><![CDATA[New comment by akhisud in "Launch HN: Rowboat (YC S24) – Open-source IDE for multi-agent systems"]]></title><description><![CDATA[
<p>From our experience, n8n is great for linear workflows and connecting APIs through flowcharts. Rowboat is aimed at building agentic systems (multiple orchestration patterns, autonomous agents coordinating, non-linear decision making).<p>Those are much harder and time-taking to express and maintain in a flowchart model. Our goal with Rowboat was to make it simple and quick to build and maintain multi-agent assistants. Hence, the copilot is equipped with tools and state-of-art orchestration patterns [1], which allow it to build ready-to-go assistants in minutes from high-level requirements.<p>[1] <a href="https://cdn.openai.com/business-guides-and-resources/a-practical-guide-to-building-agents.pdf" rel="nofollow">https://cdn.openai.com/business-guides-and-resources/a-pract...</a></p>
]]></description><pubDate>Tue, 16 Sep 2025 17:50:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=45265470</link><dc:creator>akhisud</dc:creator><comments>https://news.ycombinator.com/item?id=45265470</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45265470</guid></item><item><title><![CDATA[New comment by akhisud in "Launch HN: Rowboat (YC S24) – Open-source IDE for multi-agent systems"]]></title><description><![CDATA[
<p>Thanks for the pointer! We briefly checked them out. Looks like they use a flowchart-style canvas - that’s great for certain types of automations.<p>Rowboat is especially designed for agentic patterns (e.g. manager-worker) which lend more autonomy to agents. Rowboat's copilot is empowered to organize and orchestrate agents flexibly, based on the nature of the assistant.</p>
]]></description><pubDate>Tue, 16 Sep 2025 17:36:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=45265291</link><dc:creator>akhisud</dc:creator><comments>https://news.ycombinator.com/item?id=45265291</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45265291</guid></item><item><title><![CDATA[New comment by akhisud in "Show HN: Rowboat – Open-source IDE for multi-agent systems"]]></title><description><![CDATA[
<p>Haha not yet, but we're planning to make the copilot a Rowboat multi-agent system!</p>
]]></description><pubDate>Wed, 23 Apr 2025 07:01:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=43769385</link><dc:creator>akhisud</dc:creator><comments>https://news.ycombinator.com/item?id=43769385</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43769385</guid></item><item><title><![CDATA[New comment by akhisud in "Show HN: Rowboat – Open-source IDE for multi-agent systems"]]></title><description><![CDATA[
<p>Thanks!<p>1. That's right - Rowboat's agent instructions are currently written in structured prompt blocks, and a lot of logic does live there (with @mentions for tools, other agents, and reusable prompts). We support oAI GPTs at the moment (we chose to start with the oAI Agents SDK), but we're actively working on expanding to other LLMs as well. One of our community contributors just created a fork for Rowboat + OpenRouter. Re: performance, we expect other closed LLMs to perform comparably, and (with good prompt hygiene + role instructions) open LLMs as well, if individual agent scope is kept precise.<p>2. We've been discussing both A2A and pydantic! Right now, Rowboat is designed to be prompt-first, but we’re integrating more typed interfaces. Design-wise, its likely that prompts might stay central - encoding part of the logic and also acting as the glue layer between more code-based components. Similar to how code has comments, config, and DSLs, agent systems could benefit from human-readable intent even when the core logic is more structured.<p>Does that make sense?</p>
]]></description><pubDate>Wed, 23 Apr 2025 07:00:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=43769378</link><dc:creator>akhisud</dc:creator><comments>https://news.ycombinator.com/item?id=43769378</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43769378</guid></item><item><title><![CDATA[New comment by akhisud in "Show HN: Rowboat – Open-source IDE for multi-agent systems"]]></title><description><![CDATA[
<p>1. A2A is on our roadmap (still exploring), for agents built on Rowboat to communicate with external agents. I assume that's what you mean as well.<p>2. Rowboat agents are technically stateless in that they do not store any messages and state between turns. Our HTTP API [0] requires previous messages and state to be explicitly passed from the previous turn to the next turn. For now, the state is pretty simple - just the name of the last agent that responded to the user. This allows the system to start off directly from where the previous agent left off. The Python SDK [1] manages the state for you. Does that make sense?<p>[0] API docs - <a href="https://docs.rowboatlabs.com/using_the_api/">https://docs.rowboatlabs.com/using_the_api/</a><p>[1] SDK docs - <a href="https://docs.rowboatlabs.com/using_the_sdk/">https://docs.rowboatlabs.com/using_the_sdk/</a></p>
]]></description><pubDate>Tue, 22 Apr 2025 21:11:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=43766344</link><dc:creator>akhisud</dc:creator><comments>https://news.ycombinator.com/item?id=43766344</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43766344</guid></item></channel></rss>