<?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: Quincy Zhang</title>
    <description>The latest articles on DEV Community by Quincy Zhang (@joygqz).</description>
    <link>https://dev.to/joygqz</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%2F3941208%2Ffd143ff3-ad8f-49ed-bedf-634264c8ec81.png</url>
      <title>DEV Community: Quincy Zhang</title>
      <link>https://dev.to/joygqz</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/joygqz"/>
    <language>en</language>
    <item>
      <title>I Built an Open-Source SSH Workbench Because I Was Tired of Juggling 4 Tools to Manage My Servers</title>
      <dc:creator>Quincy Zhang</dc:creator>
      <pubDate>Sat, 04 Jul 2026 09:46:21 +0000</pubDate>
      <link>https://dev.to/joygqz/i-built-an-open-source-ssh-workbench-because-i-was-tired-of-juggling-4-tools-to-manage-my-servers-5cl7</link>
      <guid>https://dev.to/joygqz/i-built-an-open-source-ssh-workbench-because-i-was-tired-of-juggling-4-tools-to-manage-my-servers-5cl7</guid>
      <description>&lt;p&gt;Here's a familiar scene: you're debugging a production issue. You SSH in, tail the logs, spot an error. Now you need to upload a patched config file — so you open FileZilla, navigate six folders deep to find the right path. Then you want to ask AI what that cryptic error means — so you copy-paste terminal output into a browser tab. Meanwhile your SSH key passphrase is in yet another tool.&lt;/p&gt;

&lt;p&gt;Four windows. One task.&lt;/p&gt;

&lt;p&gt;That exact frustration is why I spent the last few months building &lt;a href="https://github.com/joygqz/sageport" rel="noopener noreferrer"&gt;&lt;strong&gt;Sageport&lt;/strong&gt;&lt;/a&gt; — an all-in-one SSH workbench that combines &lt;strong&gt;terminal + SFTP + credential manager + AI assistant&lt;/strong&gt; into a single desktop app. It's built with Tauri 2 and React, fully open source under GPL-3.0, and the binary is under 10MB.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F28hb1bmkldl3r2nnm99i.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F28hb1bmkldl3r2nnm99i.png" alt="Sageport workbench" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  The Pitch
&lt;/h2&gt;

&lt;p&gt;Instead of four tools that don't talk to each other, imagine this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Press ⌘ P, type a host name, hit Enter — you're connected&lt;/li&gt;
&lt;li&gt;Press ⌘ J — a dual-pane file browser slides up, one side local, one side remote. Drag files across&lt;/li&gt;
&lt;li&gt;Press ⌘ L — an AI panel opens. It can &lt;em&gt;see&lt;/em&gt; your terminal output and propose fixes&lt;/li&gt;
&lt;li&gt;Press ⌘ N — add a new host. Assign it any credential you've already saved. Done&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Everything lives in a local SQLite database. No cloud account required. No vendor lock-in. Your data stays on your machine.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Makes It Different
&lt;/h2&gt;

&lt;p&gt;There are plenty of SSH clients out there. Here's why I built another one:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. The AI Actually Has Access to Your Terminal
&lt;/h3&gt;

&lt;p&gt;This isn't a chat sidebar copy-pasted into your workflow. Sageport's AI assistant is wired into the app via a tool-calling loop — it can list your open SSH sessions, read what's on screen, and propose commands. The key design choice: &lt;strong&gt;every remote command requires your explicit approval before it runs.&lt;/strong&gt; No YOLO &lt;code&gt;rm -rf&lt;/code&gt; from a hallucinating model.&lt;/p&gt;

&lt;p&gt;You bring your own API key — Anthropic, OpenAI, or any compatible endpoint (Ollama, OpenRouter, etc.). Conversations are stored locally. No telemetry. We never see your data.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Five Sync Backends, All End-to-End Encrypted
&lt;/h3&gt;

&lt;p&gt;Most tools either force you into their cloud (Termius) or don't sync at all. Sageport encrypts everything with &lt;strong&gt;Argon2id + AES-256-GCM&lt;/strong&gt; and lets you pick where the ciphertext lives:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Provider&lt;/th&gt;
&lt;th&gt;Best for&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;strong&gt;GitHub Gist&lt;/strong&gt; (secret)&lt;/td&gt;
&lt;td&gt;Developers — free, no setup if you have GitHub&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Google Drive&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Anyone with a Google account&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;OneDrive&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Microsoft ecosystem&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;WebDAV&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Self-hosted (Nextcloud, Synology NAS)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;S3-compatible&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Enterprise (AWS, MinIO, Cloudflare R2)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Only encrypted blobs ever leave your device. The passphrase never touches the network. If you lose your passphrase, the data is gone — and that's the point.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Credentials Are First-Class Citizens
&lt;/h3&gt;

&lt;p&gt;In Sageport, credentials (called "identities") are separate from hosts. Create one SSH key, reuse it across 50 servers. The built-in key manager generates Ed25519, RSA, and ECDSA keys, imports existing keys in OpenSSH format, and supports passphrase protection. No more copy-pasting &lt;code&gt;~/.ssh/id_*&lt;/code&gt; files between machines.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. It's a Real Desktop App, Not a Web View in Disguise
&lt;/h3&gt;

&lt;p&gt;Built on &lt;strong&gt;Tauri 2&lt;/strong&gt; with a Rust backend. The SSH engine, SFTP handler, and crypto all run natively. The terminal uses xterm.js with GPU-accelerated WebGL rendering — smooth even under heavy output. Compare that to an Electron app eating 500MB of RAM just to hold an SSH session open.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Stack (For the Curious)
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Layer&lt;/th&gt;
&lt;th&gt;Choice&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Desktop shell&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Tauri 2&lt;/strong&gt; (Rust)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;UI&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;React 19&lt;/strong&gt; + TypeScript&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Styling&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Tailwind CSS 4&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Terminal&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;xterm.js 6&lt;/strong&gt; + WebGL&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SSH/SFTP&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;libssh2&lt;/strong&gt; (vendored OpenSSL)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Crypto&lt;/td&gt;
&lt;td&gt;Argon2id + AES-256-GCM (pure Rust)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;State&lt;/td&gt;
&lt;td&gt;Zustand 5 + TanStack Query 5&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Database&lt;/td&gt;
&lt;td&gt;SQLite (via SQLx + migrations)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Everything is typed end-to-end, including the IPC layer between React and Rust — ~60 typed Tauri commands with compile-time safety.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why GPL-3.0, Not MIT
&lt;/h2&gt;

&lt;p&gt;I chose GPL-3.0 intentionally. This is a tool for developers, and I want every improvement to flow back to the community. If a company wants to fork it and build something proprietary on top, they can reach out. Otherwise, the code is yours to use, modify, and contribute to — forever.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's on the Roadmap
&lt;/h2&gt;

&lt;p&gt;Sageport is at &lt;strong&gt;v0.3.0&lt;/strong&gt; and I use it daily. It's stable, but there's a lot I want to build:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Terminal session sharing&lt;/strong&gt; — share a read-only or interactive session via a link&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;RDP / VNC support&lt;/strong&gt; — because not everything is SSH&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mobile companion app&lt;/strong&gt; — view sessions and run snippets from your phone&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deeper AI context&lt;/strong&gt; — let the assistant correlate logs across multiple hosts&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try It Out
&lt;/h2&gt;

&lt;p&gt;Downloads for macOS, Windows, and Linux are on the &lt;a href="https://github.com/joygqz/sageport/releases/latest" rel="noopener noreferrer"&gt;releases page&lt;/a&gt;. The app auto-updates, so you'll always have the latest version.&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;# macOS: .dmg (Apple Silicon + Intel, universal)&lt;/span&gt;
&lt;span class="c"&gt;# Windows: .msi / .exe&lt;/span&gt;
&lt;span class="c"&gt;# Linux: .deb / .rpm / .AppImage&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Quick setup —&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
⌘ N to add a host&lt;/li&gt;
&lt;li&gt;
⌘ P to connect via command palette&lt;/li&gt;
&lt;li&gt;
⌘ , for settings (AI keys, sync, themes)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://github.com/joygqz/sageport" rel="noopener noreferrer"&gt;&lt;strong&gt;Star on GitHub →&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If you try Sageport and something breaks (or you have a feature idea), open an issue. I read every single one. This project exists because I scratched my own itch — odds are you have the same one.&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Stop Teaching Your AI the Same Rules Every Session — mirrorai Mirrors Your Codebase Automatically</title>
      <dc:creator>Quincy Zhang</dc:creator>
      <pubDate>Wed, 20 May 2026 02:25:41 +0000</pubDate>
      <link>https://dev.to/joygqz/stop-teaching-your-ai-the-same-rules-every-session-mirrorai-mirrors-your-codebase-automatically-5ae9</link>
      <guid>https://dev.to/joygqz/stop-teaching-your-ai-the-same-rules-every-session-mirrorai-mirrors-your-codebase-automatically-5ae9</guid>
      <description>&lt;p&gt;You spent six months building a Vue admin panel. You have a wrapped request layer, a shared component library, a consistent page structure. Every file follows the same pattern.&lt;/p&gt;

&lt;p&gt;Then you opened Cursor and asked it to add a new list page.&lt;/p&gt;

&lt;p&gt;It imported &lt;code&gt;axios&lt;/code&gt; directly. It wrote inline fetch logic. It named the component wrong. It ignored your entire architecture.&lt;/p&gt;

&lt;p&gt;Sound familiar?&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Problem with AI Coding Assistants
&lt;/h2&gt;

&lt;p&gt;The problem isn't that AI tools are bad — it's that &lt;strong&gt;every session starts from zero&lt;/strong&gt;. The AI doesn't know your conventions. It doesn't know your wrappers. It invents its own style on the spot.&lt;/p&gt;

&lt;p&gt;You end up spending more time correcting AI output than you saved generating it.&lt;/p&gt;

&lt;p&gt;The fix isn't to write better prompts. The fix is to give the AI a permanent memory of how &lt;em&gt;your&lt;/em&gt; project works.&lt;/p&gt;

&lt;h2&gt;
  
  
  Introducing mirrorai
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/joygqz/mirrorai" rel="noopener noreferrer"&gt;&lt;strong&gt;mirrorai&lt;/strong&gt;&lt;/a&gt; is a codebase-aware AI rules generator. It analyzes your existing code and produces rule files for the AI tools you actually use:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Output file&lt;/th&gt;
&lt;th&gt;Tool&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;CLAUDE.md&lt;/code&gt; + &lt;code&gt;.claude/commands/&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Claude Code&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;.cursorrules&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Cursor&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;.windsurfrules&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Windsurf&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;.github/copilot-instructions.md&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;GitHub Copilot&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;.clinerules&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Cline&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;One command to install. One &lt;code&gt;/mirror-init&lt;/code&gt; to run. Your AI assistant finally understands your project.&lt;/p&gt;

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



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx mirrorai &lt;span class="nb"&gt;install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This drops a single &lt;code&gt;mirror-init.md&lt;/code&gt; into &lt;code&gt;.claude/commands/&lt;/code&gt;. Then you run &lt;code&gt;/mirror-init&lt;/code&gt; in your AI tool.&lt;/p&gt;

&lt;p&gt;The AI does the real work — analyzing &lt;em&gt;your&lt;/em&gt; project, not filling in some generic template:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Your project
   ↓
Detect language, framework, and stack from manifest files
   ↓
Scan business code and cluster files by unit type
   ↓
Score patterns: appears ≥ 3 times, ≥ 50 lines per file, ≥ 80% similarity
   ↓
Generate rule files + slash commands + scaffolding templates
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The entire analysis runs inside your AI tool on your existing subscription. &lt;strong&gt;No API key. No cloud service. No data leaves your machine.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What Gets Generated
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Rule files built from your real code
&lt;/h3&gt;

&lt;p&gt;Not a generic "write clean code" checklist. The generated &lt;code&gt;CLAUDE.md&lt;/code&gt; contains:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your actual stack — exact frameworks, libraries, versions&lt;/li&gt;
&lt;li&gt;Your directory layout and what each folder is for&lt;/li&gt;
&lt;li&gt;Your core abstractions, and which layers must never be bypassed&lt;/li&gt;
&lt;li&gt;Your infrastructure wrappers (HTTP client, auth, logging) with real usage examples&lt;/li&gt;
&lt;li&gt;Your naming conventions, import order, and typing requirements&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;reference file per pattern&lt;/strong&gt;: "Before writing a new CRUD endpoint, read &lt;code&gt;internal/handler/user.go&lt;/code&gt;"&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Auto-execute rules that fire without a prompt
&lt;/h3&gt;

&lt;p&gt;The real magic is the &lt;em&gt;Auto-Execute Rules&lt;/em&gt; section in each generated file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;## Auto-Execute Rules&lt;/span&gt;

When the current task matches any of the patterns below,
immediately apply the corresponding rule without asking.

&lt;span class="gu"&gt;### New list page&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Trigger: "add a list page", "create a list view", "build a table page"
&lt;span class="p"&gt;-&lt;/span&gt; Rule: use src/views/UserList.vue as reference; wrap requests with useRequest()
&lt;span class="p"&gt;-&lt;/span&gt; Side effects: register the route in src/router/index.ts
&lt;span class="p"&gt;-&lt;/span&gt; Scaffold first: npx mirrorai new new-list &lt;span class="nt"&gt;&amp;lt;name&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You describe the requirement in plain English. The AI recognizes the pattern and applies the right conventions — automatically, every single time, without you repeating yourself.&lt;/p&gt;

&lt;h3&gt;
  
  
  Zero-token scaffolding (opt-in)
&lt;/h3&gt;

&lt;p&gt;If you opt in, mirrorai also generates a &lt;code&gt;plopfile.js&lt;/code&gt; and Handlebars templates extracted from your actual code. Scaffold locally without spending a single token, then let the AI fill in only the business logic:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx mirrorai new new-list LeaveApproval
&lt;span class="c"&gt;# → generates the skeleton from your real project pattern&lt;/span&gt;
&lt;span class="c"&gt;# → AI writes only the business logic on top&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Works With Any Stack
&lt;/h2&gt;

&lt;p&gt;mirrorai is fully language-agnostic. It adapts to whatever it finds:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Vue / React / Svelte / Angular frontends&lt;/li&gt;
&lt;li&gt;Go / Rust / Python / Node.js backends&lt;/li&gt;
&lt;li&gt;FastAPI, Django, NestJS, Spring Boot, Rails&lt;/li&gt;
&lt;li&gt;Flutter mobile apps&lt;/li&gt;
&lt;li&gt;CLI tools, data pipelines, GraphQL services&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Re-running Is Safe
&lt;/h2&gt;

&lt;p&gt;Run &lt;code&gt;/mirror-init&lt;/code&gt; again after a major refactor. It detects existing files and asks what to do:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Regenerate everything&lt;/li&gt;
&lt;li&gt;Refresh only existing files&lt;/li&gt;
&lt;li&gt;Choose file by file&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Files you wrote yourself — detected by the absence of a &lt;code&gt;&amp;lt;!-- mirrorai:generated --&amp;gt;&lt;/code&gt; marker — get a per-file prompt: merge, overwrite, or skip. &lt;strong&gt;Your content is never silently clobbered.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Before / After
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Before mirrorai:&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;You: Add a leave-of-absence approval flow.
AI:  *imports axios directly*
     *creates a new custom fetch utility*
     *names the component inconsistently*
     *forgets to register the route*
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;After mirrorai:&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;You: Add a leave-of-absence approval flow.
AI:  (recognizes the approval pattern from CLAUDE.md)
     → reads src/views/ApprovalList.vue as reference
     → uses useRequest() for all data fetching
     → names and structures the component correctly
     → registers the route in src/router/index.ts
     → suggests: npx mirrorai new new-approval LeaveApproval
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Get Started in 30 Seconds
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Step 1: install the command into your project&lt;/span&gt;
npx mirrorai &lt;span class="nb"&gt;install&lt;/span&gt;

&lt;span class="c"&gt;# Step 2: run this inside Claude Code, Cursor, Windsurf, or Cline&lt;/span&gt;
/mirror-init
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Answer two questions — which AI tools to target, and whether to generate scaffolding — and mirrorai does the rest.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;GitHub → &lt;a href="https://github.com/joygqz/mirrorai" rel="noopener noreferrer"&gt;github.com/joygqz/mirrorai&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;npm → &lt;a href="https://www.npmjs.com/package/mirrorai" rel="noopener noreferrer"&gt;npmjs.com/package/mirrorai&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If this saves you from re-explaining your architecture one more time, a ⭐ on GitHub goes a long way. Issues and PRs are very welcome.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>devtools</category>
      <category>claudecode</category>
    </item>
  </channel>
</rss>
