<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Arya Mehta</title>
    <description>The latest articles on DEV Community by Arya Mehta (@arya_mehta_26).</description>
    <link>https://dev.to/arya_mehta_26</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3913616%2F7ea55c83-1954-415a-89cc-743815a652e3.gif</url>
      <title>DEV Community: Arya Mehta</title>
      <link>https://dev.to/arya_mehta_26</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/arya_mehta_26"/>
    <language>en</language>
    <item>
      <title>Building a multi-step AI pipeline workspace + 2 OSS fixes to RocketRide server</title>
      <dc:creator>Arya Mehta</dc:creator>
      <pubDate>Tue, 05 May 2026 09:30:15 +0000</pubDate>
      <link>https://dev.to/arya_mehta_26/building-a-multi-step-ai-pipeline-workspace-2-oss-fixes-to-rocketride-server-mho</link>
      <guid>https://dev.to/arya_mehta_26/building-a-multi-step-ai-pipeline-workspace-2-oss-fixes-to-rocketride-server-mho</guid>
      <description>&lt;p&gt;I’ve been learning RocketRide (open-source AI pipeline platform + VS Code extension) by building a small project and contributing fixes upstream.&lt;/p&gt;

&lt;h2&gt;
  
  
  What RocketRide is (quick)
&lt;/h2&gt;

&lt;p&gt;RocketRide lets you build AI workflows as &lt;strong&gt;&lt;code&gt;.pipe&lt;/code&gt;&lt;/strong&gt; graphs inside VS Code (visual canvas), run them against a local/hosted engine (default settings often point to &lt;code&gt;http://127.0.0.1:5565&lt;/code&gt;), and inspect step-level execution/traces.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I built: a pipeline workspace (Next.js)
&lt;/h2&gt;

&lt;p&gt;I shipped a product-shaped demo that mirrors the “runs → steps → traces → artifact” experience:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;/&lt;/code&gt;&lt;/strong&gt;: landing page + quick explanation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;/app&lt;/code&gt;&lt;/strong&gt;: enter a goal/prompt → run a multi-step pipeline → see:

&lt;ul&gt;
&lt;li&gt;step-by-step execution trace (detail + timing)&lt;/li&gt;
&lt;li&gt;a final &lt;strong&gt;markdown artifact&lt;/strong&gt; (structured handoff doc)&lt;/li&gt;
&lt;li&gt;recent runs + seeded demo rows (useful in fresh Docker/CI environments)&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Repo: &lt;a href="https://github.com/aryaMehta26/multi-step-ai-pipelines" rel="noopener noreferrer"&gt;https://github.com/aryaMehta26/multi-step-ai-pipelines&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Reproducibility (important for reviewers)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Docker&lt;/strong&gt;: &lt;code&gt;docker compose up --build&lt;/code&gt; → &lt;a href="http://localhost:3000" rel="noopener noreferrer"&gt;http://localhost:3000&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CI&lt;/strong&gt;: GitHub Actions runs &lt;code&gt;npm ci → lint → build&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  “Built on RocketRide” evidence
&lt;/h2&gt;

&lt;p&gt;Alongside the web app, I included an actual RocketRide pipeline file + setup guide:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;.pipe&lt;/code&gt;: &lt;code&gt;pipelines/goal-planning-agent.pipe&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;docs: &lt;code&gt;docs/ROCKETRIDE.md&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So the submission shows both:&lt;br&gt;
1) RocketRide-native &lt;code&gt;.pipe&lt;/code&gt; workflow in the extension&lt;br&gt;
2) a web UI showing how I’d present pipeline execution/traces outside the IDE&lt;/p&gt;

&lt;h2&gt;
  
  
  OSS contributions (2 upstream PRs)
&lt;/h2&gt;

&lt;p&gt;While building, I fixed a couple small-but-real edge cases upstream:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;PR #754 (test mocks): fixes Python truthiness traps (&lt;code&gt;bool&lt;/code&gt; treated as &lt;code&gt;int&lt;/code&gt;, &lt;code&gt;limit=0&lt;/code&gt;, &lt;code&gt;0.0&lt;/code&gt; sorting)&lt;br&gt;
&lt;a href="https://github.com/rocketride-org/rocketride-server/pull/754" rel="noopener noreferrer"&gt;https://github.com/rocketride-org/rocketride-server/pull/754&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;PR #755 (Python SDK): fixes websocket URI normalization so it doesn’t create &lt;code&gt;//task/service&lt;/code&gt; or duplicate &lt;code&gt;/task/service&lt;/code&gt;&lt;br&gt;
&lt;a href="https://github.com/rocketride-org/rocketride-server/pull/755" rel="noopener noreferrer"&gt;https://github.com/rocketride-org/rocketride-server/pull/755&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Fork: &lt;a href="https://github.com/aryaMehta26/rocketride-server" rel="noopener noreferrer"&gt;https://github.com/aryaMehta26/rocketride-server&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Feedback welcome
&lt;/h2&gt;

&lt;p&gt;If you’ve built workflow UIs / agentic pipelines before, I’d love feedback on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;what makes traces actually useful (beyond “logs everywhere”)&lt;/li&gt;
&lt;li&gt;what you’d want in a pipeline runner UI for non-IDE users&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks for reading!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>nextjs</category>
      <category>opensource</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
