惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Jina AI
Jina AI
博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
美团技术团队
腾讯CDC
博客园 - Franky
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
博客园_首页
V
V2EX
Martin Fowler
Martin Fowler
T
The Blog of Author Tim Ferriss

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built an AI Agent that lives directly in your CLI and D...
Pheem49 · 2026-05-13 · via DEV Community

Pheem49

Let's be real: the current AI coding workflow is tedious.

You hit a bug. You copy your code. You tab out to ChatGPT/Claude. You paste it. You copy the fix. You paste it back. Oh wait, it broke something else? Repeat the cycle.

I got tired of being a middleman between my codebase and my AI. That's why I built Mint.

🌿 Mint Ai Agent

Mint is not just another API chat wrapper. It is a Unified AI Desktop Assistant & Agentic Coding CLI designed for speed, power, and local control.

Whether you want a floating assistant that can actually see your screen, or a headless CLI agent that can navigate your codebase and execute commands, Mint handles both seamlessly.

🚀 The CLI Agent: Your Autonomous Co-Developer

With the new Unified Agent Loop, you don't just chat with Mint. You give it a task, and it acts.

  • 🧠 Think & Plan: Before writing a single line of code, Mint goes into a reasoning phase. It plans out its steps and shows you exactly what it intends to do.
  • 🛠️ Autonomous Tools: Mint can independently search the web (web_search), read your files (read_file), search your codebase (search_code), and even write patches (apply_patch).
  • 🛡️ User-in-the-Loop (Safety First): I hate tools that break my system. Mint will always pause and ask for your explicit y/n approval before running any shell commands or modifying files. You are always in control.

Want to fix a bug? Just type:

mint code "find the memory leak in the auth module and patch it"

Enter fullscreen mode Exit fullscreen mode

The Desktop Assistant

Sometimes you need a visual helper. Mint's Electron-based desktop app sits quietly in your system tray and offers features that standard web UI's can't:

👁️ Screen Vision: Capture your screen instantly and ask Mint to explain a weird UI bug or read an error message directly from an image.

🌐 Real-time Translation: Instantly translate anything on your screen.

⚡ Proactive Engine: It monitors your system and offers suggestions before you even have to ask.

Enter fullscreen mode Exit fullscreen mode

Unlimited Power with MCP Support

Mint isn't locked into a single ecosystem. It supports Model Context Protocol (MCP) right out of the box!

You can easily extend Mint's capabilities via the CLI without touching a single config file:
Bash

Give Mint the ability to search Google autonomously

mint mcp add google-search npx --args -y @modelcontextprotocol/server-google-search --env GOOGLE_API_KEY=your_key

Let Mint manage your local filesystem

mint mcp add my-files npx --args -y @modelcontextprotocol/server-filesystem /path/to/folder

Choose Your Brain

Don't want to send your code to the cloud? No problem. Mint supports:

Cloud: Gemini 1.5/2.0 Pro & Flash, Claude 3.5, GPT-4o.

Local (Privacy First): Ollama, LM Studio, Hugging Face.

Enter fullscreen mode Exit fullscreen mode

Getting Started

You can install Mint globally via npm and start automating your workflow in seconds:
Bash

1. Install globally

npm install -g @pheem49/mint@latest

Enter fullscreen mode Exit fullscreen mode

2. Setup your providers (Cloud or Local)

mint onboard

Enter fullscreen mode Exit fullscreen mode

3. Start your unified agent!

mint

Enter fullscreen mode Exit fullscreen mode

If you want to run the Desktop GUI, you can clone the repo and run npm start.
🤝 Let's build the ultimate developer agent together

I'm actively developing Mint to be the ultimate daily driver for developers. If you are tired of the copy-paste AI routine, give Mint a spin.

Check out the source code, architecture, and leave a ⭐️ if you like it:
👉 GitHub: https://github.com/Pheem49/Mint

I'd love to hear your feedback in the comments! What local models are you currently using for coding?