<?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: abduznik</title>
    <description>The latest articles on DEV Community by abduznik (@abduznik).</description>
    <link>https://dev.to/abduznik</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3753240%2F45abc8d7-f468-4a5e-8609-f0280a20bca5.png</url>
      <title>DEV Community: abduznik</title>
      <link>https://dev.to/abduznik</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abduznik"/>
    <language>en</language>
    <item>
      <title>Stop Manual Repo Maintenance: I built an AI Alchemist to automate my GitHub workflow</title>
      <dc:creator>abduznik</dc:creator>
      <pubDate>Fri, 06 Feb 2026 08:23:05 +0000</pubDate>
      <link>https://dev.to/abduznik/stop-manual-repo-maintenance-i-built-an-ai-alchemist-to-automate-my-github-workflow-38gp</link>
      <guid>https://dev.to/abduznik/stop-manual-repo-maintenance-i-built-an-ai-alchemist-to-automate-my-github-workflow-38gp</guid>
      <description>&lt;p&gt;The Problem: The "Maintenance Tax"&lt;br&gt;
We’ve all been there: you finish a great piece of code, but then comes the "boring" part. You need to write a descriptive README, tag the repository with the right topics so people can actually find it, draft issues for future features, and write semantic commit messages.&lt;/p&gt;

&lt;p&gt;Initially, I handled this with a scattered collection of PowerShell scripts (AI-Gen-Profile, Ai-Pro-Arch, etc.). It worked, but it was messy.&lt;/p&gt;

&lt;p&gt;The Solution: Git-Alchemist ⚗️&lt;br&gt;
I decided to transmute those "lead" scripts into "gold." Git-Alchemist is a unified AI stack powered by Gemma 3 and Gemini 3 that handles the entire lifecycle of a GitHub repository from a single CLI.&lt;/p&gt;

&lt;p&gt;Key "Transmutations"&lt;br&gt;
The Forge: It doesn't just commit; it analyzes your local diffs, creates a new branch, writes a technical PR description, and opens the Pull Request on GitHub for you.&lt;/p&gt;

&lt;p&gt;The Architect (Scaffold): Need a FastAPI backend with a Docker setup? The scaffold command generates the structure in a safe, temporary workspace first so you can inspect it before it touches your disk.&lt;/p&gt;

&lt;p&gt;The Sage &amp;amp; Smart Chunking: I implemented a Parallel Map-Reduce engine. If your codebase is huge, the tool automatically splits it into chunks, processes them in parallel, and synthesizes an answer. No more "Context Window exceeded" errors.&lt;/p&gt;

&lt;p&gt;Gold Score Audit: It gives your repo a "Transmutation Score" (0-100%) based on community standards like Licenses, CI/CD workflows, and metadata.&lt;/p&gt;

&lt;p&gt;The Tech Stack&lt;br&gt;
Language: Python 3.10+&lt;/p&gt;

&lt;p&gt;AI Models: Gemma 3 (for fast, local-style reasoning) and Gemini 3 Flash (for deep architectural analysis).&lt;/p&gt;

&lt;p&gt;UI: Built with rich for beautiful terminal output and progress bars.&lt;/p&gt;

&lt;p&gt;Integration: Deeply integrated with the gh (GitHub CLI) for seamless authentication.&lt;/p&gt;

&lt;p&gt;Check it out!&lt;br&gt;
I’ve open-sourced the project and would love to hear what the community thinks—especially regarding the Architect and Sage modules.&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/abduznik/Git-Alchemist" rel="noopener noreferrer"&gt;abduznik/Git-Alchemist&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Project Site: &lt;a href="https://abduznik.github.io/Git-Alchemist/" rel="noopener noreferrer"&gt;Official Documentation&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What parts of your Git workflow do you find the most tedious? Let's automate them!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I consolidated my Git automation scripts into a unified AI stack: Git-Alchemist</title>
      <dc:creator>abduznik</dc:creator>
      <pubDate>Wed, 04 Feb 2026 15:11:57 +0000</pubDate>
      <link>https://dev.to/abduznik/i-consolidated-my-git-automation-scripts-into-a-unified-ai-stack-git-alchemist-1dec</link>
      <guid>https://dev.to/abduznik/i-consolidated-my-git-automation-scripts-into-a-unified-ai-stack-git-alchemist-1dec</guid>
      <description>&lt;h1&gt;
  
  
  Git-Alchemist ⚗️
&lt;/h1&gt;

&lt;p&gt;I’ve been working on this tool for a couple of months now. It actually started as a &lt;br&gt;
collection of loose PowerShell scripts I wrote to handle my own GitHub maintenance &lt;br&gt;
(updating my profile, tagging repos, etc.). &lt;/p&gt;

&lt;p&gt;I finally decided to combine them all into a unified project. I ported everything to &lt;br&gt;
Python and built Git-Alchemist. It uses Gemini 3 and Gemma 3 to automate the boring &lt;br&gt;
parts of Git management—like writing descriptions, scaffolding project structures &lt;br&gt;
in safe workspaces, and now 'Forging' entire Pull Requests from local changes &lt;br&gt;
in a single command. I'm really happy with how the consolidation turned out &lt;br&gt;
and wanted to share it with the community.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Features:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Forge:&lt;/strong&gt; Automated PR creation from local changes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Architect:&lt;/strong&gt; Safe project scaffolding.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Sage:&lt;/strong&gt; Contextual codebase chat.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Check it out here: &lt;a href="https://github.com/abduznik/Git-Alchemist" rel="noopener noreferrer"&gt;https://github.com/abduznik/Git-Alchemist&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Landing Page: &lt;a href="https://abduznik.github.io/Git-Alchemist/" rel="noopener noreferrer"&gt;https://abduznik.github.io/Git-Alchemist/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>github</category>
      <category>ai</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
