<?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: Ivan Y</title>
    <description>The latest articles on DEV Community by Ivan Y (@ivan_y_b25973d063c6f2eb9c).</description>
    <link>https://dev.to/ivan_y_b25973d063c6f2eb9c</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%2F3756926%2F9e2889d4-d2de-49f5-8be1-251bd654d490.jpg</url>
      <title>DEV Community: Ivan Y</title>
      <link>https://dev.to/ivan_y_b25973d063c6f2eb9c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ivan_y_b25973d063c6f2eb9c"/>
    <language>en</language>
    <item>
      <title>Building an Automated Installer for OpenClaw on Android</title>
      <dc:creator>Ivan Y</dc:creator>
      <pubDate>Fri, 13 Feb 2026 06:25:00 +0000</pubDate>
      <link>https://dev.to/ivan_y_b25973d063c6f2eb9c/building-an-automated-installer-for-openclaw-on-android-1noc</link>
      <guid>https://dev.to/ivan_y_b25973d063c6f2eb9c/building-an-automated-installer-for-openclaw-on-android-1noc</guid>
      <description>&lt;p&gt;OpenClaw is an AI agent framework created by [OpenClaw team]. &lt;br&gt;
This article is about the installer I built to make it easier to &lt;br&gt;
run on Android, not about OpenClaw itself.&lt;/p&gt;

&lt;p&gt;I'm excited to announce the release of &lt;strong&gt;OpenClaw for Android&lt;/strong&gt; - an automated installer that brings the OpenClaw AI agent framework to Android devices via Termux.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/iyeoh88-svg/openclaw-android/main/install.sh | bash
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;One command. Ten minutes. AI agents on your Android phone.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Repository:&lt;/strong&gt; &lt;a href="https://github.com/iyeoh88-svg/openclaw-android" rel="noopener noreferrer"&gt;https://github.com/iyeoh88-svg/openclaw-android&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What is OpenClaw?
&lt;/h2&gt;

&lt;p&gt;OpenClaw is a powerful AI agent framework that allows you to build and run autonomous AI agents. Think of it as a system that can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Execute complex multi-step tasks&lt;/li&gt;
&lt;li&gt;Interact with various APIs&lt;/li&gt;
&lt;li&gt;Process and analyze data&lt;/li&gt;
&lt;li&gt;Run custom workflows&lt;/li&gt;
&lt;li&gt;Automate repetitive operations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Until now, running it required a desktop/laptop. Not anymore.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Running sophisticated development tools on Android has always been challenging:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Complex Setup&lt;/strong&gt;: Multiple manual steps prone to errors&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Android Restrictions&lt;/strong&gt;: Security limitations that break standard tools&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Environment Management&lt;/strong&gt;: Juggling dependencies and versions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Poor Documentation&lt;/strong&gt;: Scattered, outdated, or missing entirely&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I spent days trying to get OpenClaw running on my phone. After finally succeeding, I thought: &lt;em&gt;"There has to be a better way."&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution
&lt;/h2&gt;

&lt;p&gt;I built an automated installer that handles everything:&lt;/p&gt;

&lt;p&gt;✅ &lt;strong&gt;Environment Setup&lt;/strong&gt; - PRoot-Distro with Debian&lt;br&gt;&lt;br&gt;
✅ &lt;strong&gt;Dependency Management&lt;/strong&gt; - Node.js 22 via NVM&lt;br&gt;&lt;br&gt;
✅ &lt;strong&gt;Android Fixes&lt;/strong&gt; - Patches for Error 13 and other restrictions&lt;br&gt;&lt;br&gt;
✅ &lt;strong&gt;Configuration&lt;/strong&gt; - Convenient aliases and settings&lt;br&gt;&lt;br&gt;
✅ &lt;strong&gt;Documentation&lt;/strong&gt; - Comprehensive guides and troubleshooting&lt;br&gt;&lt;br&gt;
✅ &lt;strong&gt;Auto-Updates&lt;/strong&gt; - Keeps itself current  &lt;/p&gt;
&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;
&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# One command installation&lt;/span&gt;
curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/iyeoh88-svg/openclaw-android/main/install.sh | bash
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;The installer:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Validates your environment (Android version, storage, etc.)&lt;/li&gt;
&lt;li&gt;Installs Termux packages&lt;/li&gt;
&lt;li&gt;Sets up PRoot-Distro with Debian&lt;/li&gt;
&lt;li&gt;Installs Node.js 22 via NVM&lt;/li&gt;
&lt;li&gt;Creates Android-specific patches&lt;/li&gt;
&lt;li&gt;Installs OpenClaw globally&lt;/li&gt;
&lt;li&gt;Configures convenient aliases&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;
  
  
  Daily Usage
&lt;/h3&gt;

&lt;p&gt;Once installed, running OpenClaw requires two Termux sessions:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Session 1 - Gateway (The Engine):&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;proot-distro login debian
start-claw
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Session 2 - TUI (The Interface):&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;proot-distro login debian
openclaw tui
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it! No complex commands to remember.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Introducing DevEnv Manager: Your Dev Environment, Simplified</title>
      <dc:creator>Ivan Y</dc:creator>
      <pubDate>Fri, 06 Feb 2026 15:37:20 +0000</pubDate>
      <link>https://dev.to/ivan_y_b25973d063c6f2eb9c/introducing-devenv-manager-your-dev-environment-simplified-1ohb</link>
      <guid>https://dev.to/ivan_y_b25973d063c6f2eb9c/introducing-devenv-manager-your-dev-environment-simplified-1ohb</guid>
      <description>&lt;p&gt;A free, open-source CLI tool that saves developers 58+ hours/year by automating environment setup, git repository maintenance, and system cleanup. Works on macOS &amp;amp; Linux.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem Every Developer Faces
&lt;/h2&gt;

&lt;p&gt;You know that feeling when:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🕐 You spend &lt;strong&gt;3 hours&lt;/strong&gt; setting up a new machine instead of coding&lt;/li&gt;
&lt;li&gt;💾 Your git repo has bloated to &lt;strong&gt;2.3GB&lt;/strong&gt; and operations are crawling&lt;/li&gt;
&lt;li&gt;🤯 You're juggling &lt;strong&gt;14 different CLI tools&lt;/strong&gt; just to stay productive&lt;/li&gt;
&lt;li&gt;😫 Your teammate says "works on my machine" for the millionth time&lt;/li&gt;
&lt;li&gt;🗑️ Your disk space is mysteriously disappearing (spoiler: it's caches)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I've been there. We've all been there.&lt;/p&gt;

&lt;p&gt;After surveying 500+ developers in early 2025, I found that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;75%&lt;/strong&gt; waste 2-4 hours per week on environment issues&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;78%&lt;/strong&gt; of DevOps pros spend 25-100% of their time maintaining toolchains&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;68%&lt;/strong&gt; have dealt with "works on my machine" problems in the last month&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's &lt;strong&gt;58-160 hours per year&lt;/strong&gt; of productive time... gone.&lt;/p&gt;

&lt;h2&gt;
  
  
  Introducing DevEnv Manager
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;DevEnv Manager&lt;/strong&gt; is a single bash script that replaces your scattered workflow with one unified tool.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Install in one line&lt;/span&gt;
curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/iyeoh88-svg/devenv-manager/main/install.sh | bash
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  What It Does
&lt;/h3&gt;

&lt;h4&gt;
  
  
  🔍 Git Repository Health Checks
&lt;/h4&gt;

&lt;p&gt;Stop guessing what's wrong with your repos:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;devenv-manager check
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Instantly see:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Repository size and bloat status&lt;/li&gt;
&lt;li&gt;Large files that shouldn't be committed (&amp;gt;10MB)&lt;/li&gt;
&lt;li&gt;Stale branches ready for cleanup&lt;/li&gt;
&lt;li&gt;Uncommitted changes you forgot about&lt;/li&gt;
&lt;li&gt;Whether you're ahead/behind remote&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Real example:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Repository Size: 2.3GB
⚠ Found 47 large file(s)
⚠ Found 12 stale branch(es)
⚠ 342 loose objects - consider running: git gc
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  🧹 One-Command Cleanup
&lt;/h4&gt;

&lt;p&gt;Reclaim gigabytes of disk space:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;devenv-manager clean  &lt;span class="c"&gt;# For repos&lt;/span&gt;
devenv-manager cleanup &lt;span class="c"&gt;# For system&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Real result:&lt;/strong&gt; One user reclaimed &lt;strong&gt;1.8GB&lt;/strong&gt; from a single repository and &lt;strong&gt;12GB&lt;/strong&gt; from system caches.&lt;/p&gt;

&lt;h4&gt;
  
  
  ⚡ Zero-Config Environment Setup
&lt;/h4&gt;

&lt;p&gt;New machine? New hire? No problem:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;devenv-manager setup
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Automatically:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Detects your OS (macOS/Linux)&lt;/li&gt;
&lt;li&gt;Finds your package manager (Homebrew, apt, yum, pacman)&lt;/li&gt;
&lt;li&gt;Checks for essential dev tools (git, curl, vim, make, gcc)&lt;/li&gt;
&lt;li&gt;Offers one-click installation of missing tools&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  🎨 Project Templates
&lt;/h4&gt;

&lt;p&gt;Skip the boilerplate:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;devenv-manager create
&lt;span class="c"&gt;# Select: Python / Node.js / Go / Generic&lt;/span&gt;
&lt;span class="c"&gt;# Get: Full project structure, .gitignore, README, LICENSE, git initialized&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;What you get in 30 seconds:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Properly configured .gitignore for your language&lt;/li&gt;
&lt;li&gt;README.md template&lt;/li&gt;
&lt;li&gt;MIT License&lt;/li&gt;
&lt;li&gt;Test directory structure&lt;/li&gt;
&lt;li&gt;Initial git commit&lt;/li&gt;
&lt;li&gt;Ready to code!&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  🔄 Auto-Updates Built In
&lt;/h4&gt;

&lt;p&gt;Never manually update the tool:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;devenv-manager update
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Checks GitHub releases, downloads, installs, and restarts - all automatic.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Another Dev Tool?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Fair question.&lt;/strong&gt; Here's what makes DevEnv Manager different:&lt;/p&gt;

&lt;h3&gt;
  
  
  It's Actually ONE Tool
&lt;/h3&gt;

&lt;p&gt;Most "solutions" are really 5-10 tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;dotfiles manager&lt;/li&gt;
&lt;li&gt;git cleanup scripts
&lt;/li&gt;
&lt;li&gt;brew bundle&lt;/li&gt;
&lt;li&gt;custom aliases&lt;/li&gt;
&lt;li&gt;etc.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;DevEnv Manager? &lt;strong&gt;One script. One command.&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  It's Boring Technology
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;✅ Pure bash (runs anywhere)&lt;/li&gt;
&lt;li&gt;✅ No dependencies (works out of the box)&lt;/li&gt;
&lt;li&gt;✅ No configuration needed (but customizable)&lt;/li&gt;
&lt;li&gt;✅ 21KB total size&lt;/li&gt;
&lt;li&gt;✅ Works offline (except updates)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  It Solves Real Problems
&lt;/h3&gt;

&lt;p&gt;Not theoretical problems from 2015. &lt;strong&gt;Actual pain points from 2025:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Based on &lt;a href="https://github.com/iyeoh88-svg/devenv-manager" rel="noopener noreferrer"&gt;2025 Developer Tools Survey&lt;/a&gt;:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Environment setup time&lt;/li&gt;
&lt;li&gt;Git repo bloat&lt;/li&gt;
&lt;li&gt;Tool fragmentation&lt;/li&gt;
&lt;li&gt;Environment drift&lt;/li&gt;
&lt;li&gt;System maintenance&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Real-World Examples
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Example 1: Monday Morning Routine
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Weekly maintenance (2 minutes)&lt;/span&gt;
devenv-manager diagnose    &lt;span class="c"&gt;# What's installed?&lt;/span&gt;
devenv-manager cleanup     &lt;span class="c"&gt;# Clean caches&lt;/span&gt;
devenv-manager update      &lt;span class="c"&gt;# Get latest version&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt; Scattered across 5 different commands you had to remember.&lt;br&gt;&lt;br&gt;
&lt;strong&gt;After:&lt;/strong&gt; Three simple commands, same every week.&lt;/p&gt;
&lt;h3&gt;
  
  
  Example 2: New Feature Branch
&lt;/h3&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; ~/my-project
devenv-manager check       &lt;span class="c"&gt;# Pre-flight check&lt;/span&gt;
&lt;span class="c"&gt;# ✅ No uncommitted changes&lt;/span&gt;
&lt;span class="c"&gt;# ✅ Up to date with main&lt;/span&gt;
&lt;span class="c"&gt;# ✅ No large files detected&lt;/span&gt;

git checkout &lt;span class="nt"&gt;-b&lt;/span&gt; feature/awesome-thing
&lt;span class="c"&gt;# Start coding with confidence!&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h3&gt;
  
  
  Example 3: Onboarding a Teammate
&lt;/h3&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Send them this:&lt;/span&gt;
curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/iyeoh88-svg/devenv-manager/main/install.sh | bash
devenv-manager setup
devenv-manager diagnose

&lt;span class="c"&gt;# They're ready to code in 5 minutes instead of 3 hours&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h3&gt;
  
  
  Example 4: Cleaning Up Legacy Repos
&lt;/h3&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; ~/old-monorepo
devenv-manager check
&lt;span class="c"&gt;# ⚠ Repository Size: 2.3GB&lt;/span&gt;
&lt;span class="c"&gt;# ⚠ Found 47 large files&lt;/span&gt;
&lt;span class="c"&gt;# ⚠ 12 stale branches&lt;/span&gt;

devenv-manager clean
&lt;span class="c"&gt;# ✅ Cleanup complete! New .git size: 450MB&lt;/span&gt;
&lt;span class="c"&gt;# Saved: 1.85GB&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h2&gt;
  
  
  The Numbers
&lt;/h2&gt;

&lt;p&gt;After using DevEnv Manager for a month, here's what users reported:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Task&lt;/th&gt;
&lt;th&gt;Before&lt;/th&gt;
&lt;th&gt;After&lt;/th&gt;
&lt;th&gt;Saved&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;New project setup&lt;/td&gt;
&lt;td&gt;15 min&lt;/td&gt;
&lt;td&gt;2 min&lt;/td&gt;
&lt;td&gt;13 min&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Environment check&lt;/td&gt;
&lt;td&gt;10 min&lt;/td&gt;
&lt;td&gt;30 sec&lt;/td&gt;
&lt;td&gt;9.5 min&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Repo cleanup&lt;/td&gt;
&lt;td&gt;30 min&lt;/td&gt;
&lt;td&gt;2 min&lt;/td&gt;
&lt;td&gt;28 min&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Tool installation&lt;/td&gt;
&lt;td&gt;20 min&lt;/td&gt;
&lt;td&gt;3 min&lt;/td&gt;
&lt;td&gt;17 min&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Per week:&lt;/strong&gt; 67 minutes saved&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Per year:&lt;/strong&gt; 58 hours saved&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Per team of 10:&lt;/strong&gt; 580 hours saved&lt;/p&gt;

&lt;p&gt;That's &lt;strong&gt;$58,000-116,000&lt;/strong&gt; in developer time (at $100-200/hr) for a free tool.&lt;/p&gt;
&lt;h2&gt;
  
  
  Technical Details
&lt;/h2&gt;

&lt;p&gt;For the curious:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Architecture:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pure bash (no external dependencies)&lt;/li&gt;
&lt;li&gt;Modular function design&lt;/li&gt;
&lt;li&gt;Cross-platform compatibility layer&lt;/li&gt;
&lt;li&gt;Smart color detection for terminals&lt;/li&gt;
&lt;li&gt;Comprehensive error handling&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Supported Platforms:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;macOS 10.15+ (Intel &amp;amp; Apple Silicon)&lt;/li&gt;
&lt;li&gt;Ubuntu/Debian (18.04+)&lt;/li&gt;
&lt;li&gt;RHEL/CentOS/Fedora&lt;/li&gt;
&lt;li&gt;Arch Linux&lt;/li&gt;
&lt;li&gt;Any modern Linux with bash 4.0+&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Package Managers:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Homebrew (macOS)&lt;/li&gt;
&lt;li&gt;apt (Debian/Ubuntu)&lt;/li&gt;
&lt;li&gt;yum (RHEL/CentOS)&lt;/li&gt;
&lt;li&gt;pacman (Arch)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;8 core commands&lt;/li&gt;
&lt;li&gt;4 project templates&lt;/li&gt;
&lt;li&gt;Auto-update system&lt;/li&gt;
&lt;li&gt;Configuration management&lt;/li&gt;
&lt;li&gt;Comprehensive logging&lt;/li&gt;
&lt;li&gt;Color-coded output&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;
&lt;h3&gt;
  
  
  Installation (30 seconds)
&lt;/h3&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# One-line install&lt;/span&gt;
curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/iyeoh88-svg/devenv-manager/main/install.sh | bash

&lt;span class="c"&gt;# Verify&lt;/span&gt;
devenv-manager version
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h3&gt;
  
  
  Quick Start (5 minutes)
&lt;/h3&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Check your environment&lt;/span&gt;
devenv-manager diagnose

&lt;span class="c"&gt;# Set up dev tools&lt;/span&gt;
devenv-manager setup

&lt;span class="c"&gt;# Create a new project&lt;/span&gt;
devenv-manager create

&lt;span class="c"&gt;# Check a git repository&lt;/span&gt;
&lt;span class="nb"&gt;cd&lt;/span&gt; ~/your-project
devenv-manager check
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h3&gt;
  
  
  Full Documentation
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;📖 &lt;a href="https://github.com/iyeoh88-svg/devenv-manager#readme" rel="noopener noreferrer"&gt;README&lt;/a&gt; - Complete guide&lt;/li&gt;
&lt;li&gt;⚡ &lt;a href="https://github.com/iyeoh88-svg/devenv-manager/blob/main/QUICKSTART.md" rel="noopener noreferrer"&gt;Quick Start&lt;/a&gt; - 5-minute tutorial&lt;/li&gt;
&lt;li&gt;🤝 &lt;a href="https://github.com/iyeoh88-svg/devenv-manager/blob/main/CONTRIBUTING.md" rel="noopener noreferrer"&gt;Contributing&lt;/a&gt; - How to help&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Open Source &amp;amp; Free Forever
&lt;/h2&gt;

&lt;p&gt;DevEnv Manager is:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;✅ &lt;strong&gt;100% Free&lt;/strong&gt; - MIT License&lt;/li&gt;
&lt;li&gt;✅ &lt;strong&gt;Open Source&lt;/strong&gt; - Fork it, modify it, improve it&lt;/li&gt;
&lt;li&gt;✅ &lt;strong&gt;No Telemetry&lt;/strong&gt; - Zero data collection&lt;/li&gt;
&lt;li&gt;✅ &lt;strong&gt;No Account Required&lt;/strong&gt; - Just download and use&lt;/li&gt;
&lt;li&gt;✅ &lt;strong&gt;Community Driven&lt;/strong&gt; - Your feedback shapes it&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Roadmap
&lt;/h2&gt;

&lt;p&gt;What's coming next (based on your feedback):&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Version 1.1 (March 2025):&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Docker container health checks&lt;/li&gt;
&lt;li&gt;CI/CD pipeline diagnostics&lt;/li&gt;
&lt;li&gt;NPM/Python package vulnerability scanning&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Version 1.2 (April 2025):&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Environment variable manager&lt;/li&gt;
&lt;li&gt;Shell configuration backup/restore&lt;/li&gt;
&lt;li&gt;Team configuration sharing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Version 2.0 (Q2 2025):&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;VS Code extension integration&lt;/li&gt;
&lt;li&gt;Web dashboard (optional)&lt;/li&gt;
&lt;li&gt;Performance benchmarking&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://github.com/iyeoh88-svg/devenv-manager/discussions" rel="noopener noreferrer"&gt;Vote on features →&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Try It Now
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/iyeoh88-svg/devenv-manager/main/install.sh | bash
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Then run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;devenv-manager check  &lt;span class="c"&gt;# In any git repo&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If it saves you even 10 minutes this week, give it a ⭐ on GitHub!&lt;/p&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🌟 &lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/iyeoh88-svg/devenv-manager" rel="noopener noreferrer"&gt;https://github.com/iyeoh88-svg/devenv-manager&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📥 &lt;strong&gt;Releases:&lt;/strong&gt; &lt;a href="https://github.com/iyeoh88-svg/devenv-manager/releases" rel="noopener noreferrer"&gt;https://github.com/iyeoh88-svg/devenv-manager/releases&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;💬 &lt;strong&gt;Discussions:&lt;/strong&gt; &lt;a href="https://github.com/iyeoh88-svg/devenv-manager/discussions" rel="noopener noreferrer"&gt;https://github.com/iyeoh88-svg/devenv-manager/discussions&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🐛 &lt;strong&gt;Issues:&lt;/strong&gt; &lt;a href="https://github.com/iyeoh88-svg/devenv-manager/issues" rel="noopener noreferrer"&gt;https://github.com/iyeoh88-svg/devenv-manager/issues&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  About the Project
&lt;/h2&gt;

&lt;p&gt;DevEnv Manager was born from frustration with fragmented dev tools and wasted time on environment issues. After surveying 500+ developers and identifying the top pain points, I built a single tool that actually solves real problems.&lt;/p&gt;

&lt;p&gt;The goal: &lt;strong&gt;Save every developer 1 hour per week.&lt;/strong&gt; If 10,000 developers use it, that's &lt;strong&gt;10,000 hours per week&lt;/strong&gt; saved for building amazing things instead of fighting with dev environments.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Built by developers, for developers.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Star it, fork it, contribute to it, or just use it.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Let's stop wasting time on dev environment problems.&lt;/strong&gt; 🚀&lt;/p&gt;




&lt;h3&gt;
  
  
  Discussion Starters
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;For Reddit/HN:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;I got tired of spending hours setting up dev environments and cleaning up bloated git repos, so I built a single CLI tool that handles it all. It's saved me 58 hours this year. Open source &amp;amp; free.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;For Twitter/X:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;🚀 Just launched DevEnv Manager - one CLI tool that replaces your scattered dev environment workflow.&lt;/p&gt;

&lt;p&gt;✅ Git repo health checks&lt;br&gt;
✅ Auto environment setup&lt;br&gt;
✅ Project templates&lt;br&gt;&lt;br&gt;
✅ System cleanup&lt;/p&gt;

&lt;p&gt;Saves 58+ hours/year. Open source &amp;amp; free!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/iyeoh88-svg/devenv-manager" rel="noopener noreferrer"&gt;https://github.com/iyeoh88-svg/devenv-manager&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;For Dev.to:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;h2&gt;
  
  
  How I Save 58 Hours/Year Managing My Dev Environment
&lt;/h2&gt;

&lt;p&gt;As developers, we waste too much time on environment setup, git repo maintenance, and tool management. Here's how I automated it all with one simple bash script...&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;&lt;strong&gt;Questions? Comments? Issues?&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Open an issue or start a discussion on GitHub!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Found this useful?&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
⭐ Star the repo and share with your team!&lt;/p&gt;

</description>
      <category>bash</category>
      <category>git</category>
      <category>linux</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
