<?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: Abhishek Verma</title>
    <description>The latest articles on DEV Community by Abhishek Verma (@axvrma).</description>
    <link>https://dev.to/axvrma</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%2F3333448%2Fecff83c3-0b95-467f-96c7-3787c2f8796c.png</url>
      <title>DEV Community: Abhishek Verma</title>
      <link>https://dev.to/axvrma</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/axvrma"/>
    <language>en</language>
    <item>
      <title>🚀 Build &amp; Ship Faster with Azure DevOps PR Helper — A VS Code Extension for Seamless Pull Requests</title>
      <dc:creator>Abhishek Verma</dc:creator>
      <pubDate>Tue, 15 Jul 2025 01:39:40 +0000</pubDate>
      <link>https://dev.to/axvrma/build-ship-faster-with-azure-devops-pr-helper-a-vs-code-extension-for-seamless-pull-requests-2gi9</link>
      <guid>https://dev.to/axvrma/build-ship-faster-with-azure-devops-pr-helper-a-vs-code-extension-for-seamless-pull-requests-2gi9</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;Say goodbye to browser tabs, manual PRs, and context switching.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If you're a developer using &lt;strong&gt;Azure DevOps&lt;/strong&gt; and &lt;strong&gt;VS Code&lt;/strong&gt;, chances are you've wished there was a smoother way to raise pull requests without jumping into the Azure portal every time.&lt;/p&gt;

&lt;p&gt;Introducing &lt;strong&gt;Azure DevOps PR Helper&lt;/strong&gt; — a free and open-source &lt;strong&gt;VS Code extension&lt;/strong&gt; I created to automate and streamline PR creation &lt;em&gt;right inside your code editor&lt;/em&gt;. With just a few prompts, this tool helps you:&lt;/p&gt;

&lt;p&gt;✅ Raise PRs&lt;br&gt;
✅ Link Work Items&lt;br&gt;
✅ Copy the PR URL&lt;br&gt;
✅ And do it all without leaving VS Code.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔗 GitHub Repository
&lt;/h2&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/mrcreatist/azure-devops-pr-helper" rel="noopener noreferrer"&gt;https://github.com/mrcreatist/azure-devops-pr-helper&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  💡 Why I built this
&lt;/h2&gt;

&lt;p&gt;At work, I often found myself repeating the same steps for every PR:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Switch to browser&lt;/li&gt;
&lt;li&gt;Open Azure DevOps&lt;/li&gt;
&lt;li&gt;Navigate to the repo&lt;/li&gt;
&lt;li&gt;Find the right branch&lt;/li&gt;
&lt;li&gt;Fill in the details&lt;/li&gt;
&lt;li&gt;Link work items manually&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This was unnecessarily slow — and let’s be honest — &lt;strong&gt;breaks the developer flow&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I realized that VS Code already knows the repo, branch, and more. So I built this extension to &lt;strong&gt;automate the grunt work&lt;/strong&gt; and make the PR process frictionless.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔧 Key Features
&lt;/h2&gt;

&lt;h3&gt;
  
  
  🔐 Secure PAT Handling
&lt;/h3&gt;

&lt;p&gt;The extension securely stores your &lt;strong&gt;Azure DevOps Personal Access Token (PAT)&lt;/strong&gt; using &lt;code&gt;vscode.SecretStorage&lt;/code&gt;, so you only enter it once.&lt;/p&gt;

&lt;h3&gt;
  
  
  🌱 Auto-detects Repo &amp;amp; Branch
&lt;/h3&gt;

&lt;p&gt;It uses Git CLI to automatically detect your &lt;strong&gt;repository and current branch&lt;/strong&gt;, pre-filling the prompts to save time.&lt;/p&gt;

&lt;h3&gt;
  
  
  📤 Pull Request Creation
&lt;/h3&gt;

&lt;p&gt;Raises a new PR using Azure DevOps REST API, with options to enter:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Source branch&lt;/li&gt;
&lt;li&gt;Target branch&lt;/li&gt;
&lt;li&gt;PR title and description&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🔗 Work Item Linking
&lt;/h3&gt;

&lt;p&gt;You can directly link one or more Work Item IDs while raising the PR — no separate step needed!&lt;/p&gt;

&lt;h3&gt;
  
  
  📋 Copy PR URL Instantly
&lt;/h3&gt;

&lt;p&gt;After the PR is raised, you get an option to copy the &lt;strong&gt;PR URL to clipboard&lt;/strong&gt; for quick sharing.&lt;/p&gt;




&lt;h2&gt;
  
  
  🏁 Getting Started
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Clone the &lt;a href="https://github.com/mrcreatist/azure-devops-pr-helper" rel="noopener noreferrer"&gt;repo&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;npm install&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Create an &lt;code&gt;org-config.ts&lt;/code&gt; file like this:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;orgConfig&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="na"&gt;orgHost&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;https://YOUR_ORG.visualstudio.com&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="na"&gt;project&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;YOUR_PROJECT&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Open in VS Code and launch the extension host&lt;/li&gt;
&lt;li&gt;Use the command palette:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;Raise PR&lt;/code&gt; → to start&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;Copy Last PR URL&lt;/code&gt; → to retrieve the latest PR link&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧠 Behind the Scenes
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;VS Code Extension API&lt;/strong&gt;: For prompts, command registration, and secure storage&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Git CLI + child_process&lt;/strong&gt;: For branch and repo detection&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Axios + Azure DevOps REST API&lt;/strong&gt;: For PR creation and work item linking&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;TypeScript&lt;/strong&gt;: For type safety and readability&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  📈 SEO Tags
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;Azure DevOps&lt;/em&gt;, &lt;em&gt;VS Code Extension&lt;/em&gt;, &lt;em&gt;Raise PR from VS Code&lt;/em&gt;, &lt;em&gt;Automate Azure DevOps Pull Request&lt;/em&gt;, &lt;em&gt;Link Work Items DevOps&lt;/em&gt;, &lt;em&gt;DevOps Developer Productivity Tools&lt;/em&gt;, &lt;em&gt;Azure DevOps REST API PR&lt;/em&gt;, &lt;em&gt;Secure PAT VS Code&lt;/em&gt;, &lt;em&gt;GitHub Open Source Extensions&lt;/em&gt;, &lt;em&gt;DevOps Workflow Automation&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  📬 What’s next?
&lt;/h2&gt;

&lt;p&gt;I’m planning:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Reviewer assignment support&lt;/li&gt;
&lt;li&gt;Default PR templates&lt;/li&gt;
&lt;li&gt;Auto-close linked work items&lt;/li&gt;
&lt;li&gt;Publishing to the official &lt;strong&gt;VS Code Marketplace&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🙌 Contribute
&lt;/h2&gt;

&lt;p&gt;This project is &lt;strong&gt;open-source&lt;/strong&gt; and built for developers, by a developer.&lt;/p&gt;

&lt;p&gt;If you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use Azure DevOps&lt;/li&gt;
&lt;li&gt;Want to speed up your PR process&lt;/li&gt;
&lt;li&gt;Love clean VS Code integrations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then clone it, try it out, and feel free to fork, star ⭐️, or raise a PR:&lt;br&gt;
👉 &lt;a href="https://github.com/mrcreatist/azure-devops-pr-helper" rel="noopener noreferrer"&gt;https://github.com/mrcreatist/azure-devops-pr-helper&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  ✍️ Author
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Abhishek Verma&lt;/strong&gt;&lt;br&gt;
Software Developer | Builder of Useful Things | &lt;a href="https://github.com/mrcreatist" rel="noopener noreferrer"&gt;@axvrma&lt;/a&gt;&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>extensions</category>
      <category>azure</category>
      <category>devops</category>
    </item>
    <item>
      <title>🧠 How I Built My Own Claude-Powered Code Predictor for VS Code (Before GitHub Copilot Caught Up)</title>
      <dc:creator>Abhishek Verma</dc:creator>
      <pubDate>Thu, 10 Jul 2025 04:46:33 +0000</pubDate>
      <link>https://dev.to/axvrma/how-i-built-my-own-claude-powered-code-predictor-for-vs-code-before-github-copilot-caught-up-27nm</link>
      <guid>https://dev.to/axvrma/how-i-built-my-own-claude-powered-code-predictor-for-vs-code-before-github-copilot-caught-up-27nm</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;“I needed Claude in my IDE. GitHub Copilot didn’t support it. So I built my own tool.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;As developers, we’re constantly looking for ways to boost our productivity without compromising code quality. When GitHub Copilot first hit the scene, it felt magical. But for me, Claude AI by Anthropic stood out — especially in terms of logical reasoning and structured code generation.&lt;/p&gt;

&lt;p&gt;There was just one problem.&lt;/p&gt;

&lt;p&gt;❌ Claude wasn’t integrated into my coding workflow.&lt;br&gt;
❌ No VS Code extensions.&lt;br&gt;
❌ No Copilot-like suggestions.&lt;/p&gt;

&lt;p&gt;So, I took matters into my own hands.&lt;/p&gt;


&lt;h2&gt;
  
  
  🚀 Introducing Claude Code Predictor
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/mrcreatist/claude-code-predictor" rel="noopener noreferrer"&gt;Claude Code Predictor&lt;/a&gt; is a custom-built, open-source VS Code extension that brings the power of Claude’s code generation &lt;strong&gt;right into your editor&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Instead of switching between browser tabs and copying code from a chatbot, I now get &lt;strong&gt;real-time, in-editor predictions&lt;/strong&gt; powered by Claude.&lt;/p&gt;

&lt;p&gt;It’s fast.&lt;br&gt;
It’s contextual.&lt;br&gt;
It works with just a Claude API key.&lt;/p&gt;


&lt;h2&gt;
  
  
  🔧 Why I Built It
&lt;/h2&gt;

&lt;p&gt;At the time of building this tool, GitHub Copilot didn’t support Claude. And I had already noticed that Claude generated better-quality logic and clearer, production-grade code — especially for backend workflows and typed languages.&lt;/p&gt;

&lt;p&gt;But integrating Claude into my workflow wasn’t easy:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No VS Code plugins.&lt;/li&gt;
&lt;li&gt;No CLI support.&lt;/li&gt;
&lt;li&gt;No autocomplete in the editor.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All I wanted was something like:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;“Predict the next few lines of code based on my current file context — using Claude.”&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;So I rolled up my sleeves and made it happen.&lt;/p&gt;


&lt;h2&gt;
  
  
  💡 How It Works
&lt;/h2&gt;

&lt;p&gt;Here’s the breakdown:&lt;/p&gt;
&lt;h3&gt;
  
  
  🧠 Context Gathering
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Captures the last &lt;code&gt;n&lt;/code&gt; lines of code before your cursor (configurable).&lt;/li&gt;
&lt;li&gt;Automatically detects the language from the file extension.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  🤖 Claude Prompting
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Sends the context to Claude via the API (or CLI if configured).&lt;/li&gt;
&lt;li&gt;Uses a detailed prompt crafted for code prediction:&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;“Predict the next few lines of code. No explanation. No markdown. Just the code.”&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;
  
  
  ✍️ Inline Suggestions
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Displays Claude’s prediction inside VS Code as ghost text.&lt;/li&gt;
&lt;li&gt;You can enable/disable auto-suggest or manually trigger suggestions.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  🧱 Intelligent Formatting
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Preserves indentation.&lt;/li&gt;
&lt;li&gt;Formats multi-line output to fit right into your code seamlessly.&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  🛠️ Features at a Glance
&lt;/h2&gt;

&lt;p&gt;✅ Claude 3 support (via Anthropic API)&lt;br&gt;
✅ Automatic language detection&lt;br&gt;
✅ Inline or manual prediction mode&lt;br&gt;
✅ CLI fallback (for offline/local Claude workflows)&lt;br&gt;
✅ Configurable settings (tokens, debounce time, context lines)&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Think of it like your own Claude-powered Copilot — before Copilot got smarter.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;h2&gt;
  
  
  📂 Code &amp;amp; Setup
&lt;/h2&gt;

&lt;p&gt;The project is fully open-source. Here's how to get started:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/mrcreatist/claude-code-predictor
&lt;span class="nb"&gt;cd &lt;/span&gt;claude-code-predictor
npm &lt;span class="nb"&gt;install
&lt;/span&gt;code &lt;span class="nb"&gt;.&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Make sure you enter your Claude API key in VS Code when prompted.&lt;/p&gt;

&lt;p&gt;You can even map a shortcut or add a command to the Command Palette like &lt;code&gt;Claude: Get Suggestion&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;👉 Full setup guide and contribution instructions available in the &lt;a href="https://github.com/mrcreatist/claude-code-predictor" rel="noopener noreferrer"&gt;GitHub repo&lt;/a&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  🚧 What’s Next?
&lt;/h2&gt;

&lt;p&gt;Here’s what I’m planning to add soon:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Support for multiple Claude models (e.g., Claude Haiku for speed, Opus for depth)&lt;/li&gt;
&lt;li&gt;Feedback loop training using local usage logs (privacy-respecting)&lt;/li&gt;
&lt;li&gt;Model comparison: Claude vs GPT vs Copilot&lt;/li&gt;
&lt;li&gt;Prompt tuning and temperature customization per project&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔄 Final Thoughts
&lt;/h2&gt;

&lt;p&gt;When tools don’t yet exist — that’s often your biggest opportunity.&lt;br&gt;
This project started as a simple productivity hack for myself, but it’s now something I use daily.&lt;/p&gt;

&lt;p&gt;If you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Prefer Claude over Copilot&lt;/li&gt;
&lt;li&gt;Want more control over your code suggestions&lt;/li&gt;
&lt;li&gt;Love building things with AI in your own dev setup&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then &lt;strong&gt;Claude Code Predictor&lt;/strong&gt; is for you.&lt;/p&gt;

&lt;p&gt;🧠 Try it. Fork it. Hack it.&lt;br&gt;
Let’s make our editors smarter — our way.&lt;/p&gt;




&lt;h3&gt;
  
  
  🔗 Try it now → &lt;a href="https://github.com/mrcreatist/claude-code-predictor" rel="noopener noreferrer"&gt;GitHub: mrcreatist/claude-code-predictor&lt;/a&gt;
&lt;/h3&gt;




&lt;h2&gt;
  
  
  🏷 SEO Tags
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;#ClaudeAI #VSCode #CodePrediction #CodeCompletion #DeveloperProductivity #OpenSourceAI #AIInCoding #AnthropicClaude #GPTvsClaude #PromptEngineering #CopilotAlternative #AItoolsForDevelopers&lt;/code&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>🧪 From Frustration to Flow: I Built a 1-Click Unsecured Browser Launcher for Developers</title>
      <dc:creator>Abhishek Verma</dc:creator>
      <pubDate>Tue, 08 Jul 2025 02:14:08 +0000</pubDate>
      <link>https://dev.to/axvrma/from-frustration-to-flow-i-built-a-1-click-unsecured-browser-launcher-for-developers-1567</link>
      <guid>https://dev.to/axvrma/from-frustration-to-flow-i-built-a-1-click-unsecured-browser-launcher-for-developers-1567</guid>
      <description>&lt;h3&gt;
  
  
  Tired of Chrome blocking your &lt;code&gt;localhost&lt;/code&gt;? You're not alone. Here's how I built a simple Mac utility to save time and frustration.
&lt;/h3&gt;




&lt;h2&gt;
  
  
  🚨 The Problem: Chrome Makes Local Dev Harder Than It Should Be
&lt;/h2&gt;

&lt;p&gt;If you’re a developer working on web apps, especially during the UAT or testing phase, this scenario will feel painfully familiar:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You run your app on &lt;code&gt;http://localhost&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Chrome or Brave &lt;strong&gt;blocks it&lt;/strong&gt; due to security policies&lt;/li&gt;
&lt;li&gt;You scramble for flags like &lt;code&gt;--disable-web-security&lt;/code&gt;, or worse…&lt;/li&gt;
&lt;li&gt;You open terminal, copy-paste some arcane command from StackOverflow, and pray it works&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;💡 &lt;strong&gt;It’s a hassle&lt;/strong&gt;—especially when you have to do it &lt;em&gt;multiple times a day&lt;/em&gt; across different test scenarios.&lt;/p&gt;




&lt;h2&gt;
  
  
  💡 The Solution: &lt;code&gt;command-browser&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;To scratch my own itch, I built &lt;a href="https://github.com/mrcreatist/command-browser" rel="noopener noreferrer"&gt;&lt;code&gt;command-browser&lt;/code&gt;&lt;/a&gt;, a pseudo app for macOS that opens an &lt;strong&gt;unsecured Chrome or Brave window with a double-click&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;No terminals.&lt;br&gt;
No flags.&lt;br&gt;
No Google search history saying “chrome allow insecure localhost”.&lt;/p&gt;

&lt;p&gt;Just click → test → done.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔧 How It Works
&lt;/h2&gt;

&lt;p&gt;The concept is intentionally simple:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;I wrote &lt;code&gt;.command&lt;/code&gt; files that launch Chrome/Brave with the right flags:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;--disable-web-security&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;--user-data-dir&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Then wrapped them using &lt;code&gt;Platypus&lt;/code&gt; into lightweight macOS apps&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;So now, clicking the app icon does the work for you&lt;/p&gt;&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;That’s it. It lives on your desktop like a native utility. And yes, &lt;strong&gt;you can run both Chrome and Brave versions independently&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  ✨ Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;✅ &lt;strong&gt;1-Click unsecured Chrome or Brave browser&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;✅ &lt;strong&gt;No terminal commands&lt;/strong&gt; – fully GUI-based&lt;/li&gt;
&lt;li&gt;✅ &lt;strong&gt;Super lightweight&lt;/strong&gt; – no daemon, no background processes&lt;/li&gt;
&lt;li&gt;✅ Perfect for &lt;strong&gt;frontend/backend testing&lt;/strong&gt; of local/insecure APIs&lt;/li&gt;
&lt;li&gt;✅ Fully &lt;strong&gt;open-source&lt;/strong&gt; and customizable&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  ⏱ Why This Matters
&lt;/h2&gt;

&lt;p&gt;As developers, we talk a lot about productivity.&lt;br&gt;
But we ignore the 30 seconds here and 1 minute there we lose to &lt;em&gt;friction&lt;/em&gt; — especially for tasks we repeat &lt;strong&gt;daily&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I built &lt;code&gt;command-browser&lt;/code&gt; to cut that friction. And honestly?&lt;br&gt;
It’s been a quiet little &lt;strong&gt;superpower&lt;/strong&gt; in my dev workflow.&lt;/p&gt;




&lt;h2&gt;
  
  
  📦 Get Started in 2 Minutes
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://github.com/mrcreatist/command-browser" rel="noopener noreferrer"&gt;GitHub Repo&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Just clone it, give executable permissions to the &lt;code&gt;.command&lt;/code&gt; file, or use the prebuilt &lt;code&gt;.app&lt;/code&gt; versions — and you’re good to go.&lt;/p&gt;




&lt;h2&gt;
  
  
  🙌 Let’s Improve It Together
&lt;/h2&gt;

&lt;p&gt;This project is open source, intentionally minimal, and built for the community.&lt;br&gt;
Got ideas for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Security sandboxing?&lt;/li&gt;
&lt;li&gt;Electron wrapper?&lt;/li&gt;
&lt;li&gt;Auto-detection of browser paths?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;💬 Drop a PR or an issue — I’m all ears.&lt;/p&gt;




&lt;h2&gt;
  
  
  👨‍💻 TL;DR
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;If you’re a developer who’s tired of Chrome/Brave blocking your local testing flow, &lt;code&gt;command-browser&lt;/code&gt; is for you.&lt;/strong&gt;&lt;br&gt;
Save time, avoid terminal fatigue, and ship faster.&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/mrcreatist/command-browser" rel="noopener noreferrer"&gt;Check it out on GitHub&lt;/a&gt;&lt;br&gt;
⭐ Star it if you find it helpful&lt;br&gt;
💬 Comment if you have feedback&lt;br&gt;
🔁 Share it with that teammate who &lt;em&gt;still types the flag every time&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
