<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Developer Workflow on AI VOID</title><link>https://ai-blog.noorshomelab.dev/tags/developer-workflow/</link><description>Recent content in Developer Workflow on AI VOID</description><generator>Hugo</generator><language>en</language><lastBuildDate>Tue, 19 May 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://ai-blog.noorshomelab.dev/tags/developer-workflow/index.xml" rel="self" type="application/rss+xml"/><item><title>Welcome to Jujutsu: A New VCS Paradigm</title><link>https://ai-blog.noorshomelab.dev/jujutsu-vcs-guide-2026/welcome-to-jujutsu/</link><pubDate>Tue, 19 May 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/jujutsu-vcs-guide-2026/welcome-to-jujutsu/</guid><description>&lt;p&gt;Are you a developer who&amp;rsquo;s ever felt bogged down by the complexities of Git? Do you wish for a version control system that makes iterative development, refactoring, and collaboration feel more natural and less error-prone? You&amp;rsquo;re in the right place!&lt;/p&gt;
&lt;p&gt;Welcome to Jujutsu, often abbreviated as &lt;code&gt;jj&lt;/code&gt;, a modern, Git-compatible version control system designed to streamline your development workflow. In this guide, we&amp;rsquo;ll embark on a journey to master &lt;code&gt;jj&lt;/code&gt;, starting with its fundamental concepts and practical applications. This first chapter introduces you to the core philosophy of Jujutsu, guides you through its installation, and helps you take your very first steps.&lt;/p&gt;</description></item><item><title>Unlocking Your Terminal: An Introduction to CLI-First AI Agents</title><link>https://ai-blog.noorshomelab.dev/cli-first-ai-systems-guide-2026/introduction-to-cli-first-ai-agents/</link><pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/cli-first-ai-systems-guide-2026/introduction-to-cli-first-ai-agents/</guid><description>&lt;p&gt;Welcome to an exciting journey into the world of &lt;strong&gt;CLI-first AI systems&lt;/strong&gt;! Imagine your terminal, not just as a place to type commands, but as a smart, active partner that can understand your goals, generate solutions, and even execute them for you. That&amp;rsquo;s the powerful promise of integrating AI agents directly into your command-line interface (CLI).&lt;/p&gt;
&lt;p&gt;In this chapter, we&amp;rsquo;ll lay the groundwork for understanding this transformative paradigm. We&amp;rsquo;ll explore what AI agents are, what &amp;ldquo;CLI-first&amp;rdquo; truly means in this context, and how these intelligent entities can revolutionize your command automation, scripting, and overall developer workflows. By the end, you&amp;rsquo;ll have a clear picture of the potential and even get your hands dirty with a practical example to kickstart your CLI AI adventure.&lt;/p&gt;</description></item><item><title>Your First Jujutsu Repository: The Working Copy as a Commit</title><link>https://ai-blog.noorshomelab.dev/jujutsu-vcs-guide-2026/first-jujutsu-repository/</link><pubDate>Tue, 19 May 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/jujutsu-vcs-guide-2026/first-jujutsu-repository/</guid><description>&lt;p&gt;Welcome back, future Jujutsu wizard! In the previous chapter, we successfully installed &lt;code&gt;jj&lt;/code&gt; and confirmed it was ready for action. Now, it&amp;rsquo;s time to create our very first Jujutsu repository and dive into a concept that fundamentally differentiates &lt;code&gt;jj&lt;/code&gt; from traditional Version Control Systems (VCS) like Git: the &amp;ldquo;working copy as a commit&amp;rdquo; model.&lt;/p&gt;
&lt;p&gt;This chapter is a cornerstone of your &lt;code&gt;jj&lt;/code&gt; journey. Understanding this core principle is crucial because it&amp;rsquo;s the foundation for &lt;code&gt;jj&lt;/code&gt;&amp;rsquo;s powerful mutable history, streamlined workflows, and branchless development style. By the end, you&amp;rsquo;ll not only have a functioning &lt;code&gt;jj&lt;/code&gt; repository but also a deep intuition for how &lt;code&gt;jj&lt;/code&gt; perceives your code, preparing you for advanced techniques like stacked changes and effortless rebasing. Let&amp;rsquo;s make that paradigm shift together!&lt;/p&gt;</description></item><item><title>Practical Application: Developing a Feature with Stacked Branches</title><link>https://ai-blog.noorshomelab.dev/gitbutler-workflow-guide-2026/practical-application-stacked-feature/</link><pubDate>Fri, 10 Apr 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/gitbutler-workflow-guide-2026/practical-application-stacked-feature/</guid><description>&lt;h2 id="introduction-building-features-layer-by-layer"&gt;Introduction: Building Features, Layer by Layer&lt;/h2&gt;
&lt;p&gt;Welcome back, fellow developer! In our previous chapters, we laid the groundwork by understanding GitButler&amp;rsquo;s core concepts like virtual branches and its local-first approach. Now, it&amp;rsquo;s time to put that knowledge into action and tackle a common development challenge: building a significant feature that naturally breaks down into smaller, dependent steps.&lt;/p&gt;
&lt;p&gt;Imagine you&amp;rsquo;re tasked with adding a new &amp;ldquo;User Profile&amp;rdquo; section to an application. This isn&amp;rsquo;t a single change; it often involves updating the database, modifying API endpoints, and finally, updating the user interface. Traditionally, managing these interdependent changes with Git can become a tangle of &lt;code&gt;git rebase -i&lt;/code&gt; commands, temporary branches, and constant fear of breaking something.&lt;/p&gt;</description></item><item><title>Coding Smarter: AI Agents for Development, Debugging, and Dynamic Scripts</title><link>https://ai-blog.noorshomelab.dev/cli-first-ai-systems-guide-2026/ai-enhanced-developer-workflows-scripting/</link><pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/cli-first-ai-systems-guide-2026/ai-enhanced-developer-workflows-scripting/</guid><description>&lt;h2 id="coding-smarter-ai-agents-for-development-debugging-and-dynamic-scripts"&gt;Coding Smarter: AI Agents for Development, Debugging, and Dynamic Scripts&lt;/h2&gt;
&lt;p&gt;Welcome back, fellow command-line enthusiasts! In our previous chapters, we&amp;rsquo;ve explored the foundations of CLI-first AI systems, understanding what AI agents are and how they can operate within your terminal environment. Now, it&amp;rsquo;s time to put that knowledge into action and see how these intelligent agents can fundamentally change your daily development, debugging, and scripting workflows.&lt;/p&gt;
&lt;p&gt;This chapter is all about empowering you to code smarter, not harder. We&amp;rsquo;ll dive into the practical applications of integrating AI agents directly into your development cycle, from automating repetitive commands and generating dynamic scripts to assisting with debugging. By the end of this chapter, you&amp;rsquo;ll understand how to build and leverage AI agents that speak the language of your shell, making your terminal a significantly more powerful and intuitive workspace.&lt;/p&gt;</description></item><item><title>CLI-First AI Systems: A Developer&amp;#39;s Guide</title><link>https://ai-blog.noorshomelab.dev/cli-first-ai-systems-guide-2026/</link><pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/cli-first-ai-systems-guide-2026/</guid><description>&lt;p&gt;This comprehensive guide delves into CLI-first AI systems, demonstrating how AI agents operate seamlessly within terminal environments. You&amp;rsquo;ll learn to leverage command automation, scripting, and shell tool integrations to optimize developer workflows. Explore real-world examples and practical tools to master terminal-based AI.&lt;/p&gt;</description></item></channel></rss>