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

推荐订阅源

J
Java Code Geeks
G
Google Developers Blog
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
博客园 - 聂微东
V
Visual Studio Blog
博客园_首页
D
DataBreaches.Net
腾讯CDC
I
InfoQ
F
Fortinet All Blogs
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
云风的 BLOG
云风的 BLOG
月光博客
月光博客
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
C
Check Point Blog

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
DeepSeek TUI on Windows: A Practical Look at a Terminal-N...
member_0af64 · 2026-05-11 · via DEV Community

DeepSeek TUI is an open-source terminal-native coding agent for DeepSeek models.

Project:

https://github.com/Hmbown/DeepSeek-TUI

At first glance, it is tempting to describe it as "DeepSeek's Claude Code-like tool." That comparison is useful, but only up to a point.

The more interesting point is this: DeepSeek TUI is not just a terminal chat interface. It is trying to bring the model closer to the actual engineering workspace, where files, shell commands, Git diffs, diagnostics, tool calls, and recovery workflows all matter.

I tested it on Windows and ran into one practical issue: the tool installed correctly, but the traditional PowerShell window flickered when launching the TUI. Switching to Windows Terminal fixed the problem.

The Short Version

DeepSeek TUI is worth watching because it combines several capabilities that a serious coding agent needs:

  • file reading, search, and editing;
  • shell command execution;
  • Git context and diffs;
  • MCP integration;
  • LSP diagnostics;
  • session resume;
  • workspace snapshots and rollback;
  • sub-agent workflows;
  • token, cache, and cost visibility.

That makes it closer to an engineering tool than a simple Q&A interface.

The Windows caveat is also straightforward: if the TUI flickers or fails to render correctly in a legacy console, try Windows Terminal before assuming the install or API key is broken.

What DeepSeek TUI Is

The official quickstart is:

npm install -g deepseek-tui
deepseek --version
deepseek --model auto

Enter fullscreen mode Exit fullscreen mode

On first launch, DeepSeek TUI prompts for a DeepSeek API key. You can also configure it ahead of time:

deepseek auth set --provider deepseek
deepseek auth status

Enter fullscreen mode Exit fullscreen mode

The project also documents other installation paths, including Scoop on Windows, Cargo, GitHub releases, and Docker images.

My Windows Test: Installed, Then Flickered

The installation itself was uneventful:

  1. Install the package globally.
  2. Run deepseek.
  3. Configure the API key.
  4. Launch the TUI again.

The problem appeared after that. In the traditional PowerShell window, the interface kept flickering and did not enter a stable usable state.

This is the kind of issue that is easy to misdiagnose. The first instinct is to reinstall the package, rotate the API key, or assume the npm package is broken.

In this case, the more likely cause was terminal rendering compatibility.

Modern TUI tools depend on terminal behavior such as ANSI control sequences, cursor refresh, keyboard events, pane rendering, clipboard handling, and sometimes mouse interaction. Legacy console environments can be less reliable here than Windows Terminal.

After switching to Windows Terminal, DeepSeek TUI launched normally.

Why This Category Matters

It moves the model into the workspace

In a web chat workflow, the model is far away from the project.

You copy code into the chat. You paste errors back. You run commands manually. You summarize diffs. You decide which files matter.

A terminal-native coding agent changes that boundary. It can inspect the workspace, read files, run commands, review diffs, and continue from real project state.

Code generation is not enough

A coding agent should not only write code. It should help answer operational engineering questions:

  • Which files are involved?
  • What changed?
  • Did tests or checks run?
  • What does the Git diff show?
  • Can the workspace be recovered if the change is wrong?
  • Are diagnostics fed back into the next repair step?

DeepSeek TUI's file operations, shell tools, Git context, session recovery, workspace snapshots, and LSP diagnostics all point in that direction.

MCP expands the tool boundary

DeepSeek TUI supports MCP. Its documentation describes both directions: it can load MCP servers from ~/.deepseek/mcp.json, and it can also run as an MCP server.

That matters because real engineering work is not limited to local files. Teams often need databases, browsers, internal docs, issue trackers, deployment systems, or private utilities.

LSP diagnostics help close the loop

Generating code is only the first step.

A developer still needs type errors, lint results, compiler output, and test failures to flow back into the next edit.

DeepSeek TUI's LSP diagnostic support is important because it helps the agent enter a repair loop: edit, inspect diagnostics, fix, and verify again.

Practical Windows Recommendations

If you are testing DeepSeek TUI on Windows, I would start with this sequence:

  1. Install Node.js.
  2. Install Windows Terminal.
  3. Run npm install -g deepseek-tui inside Windows Terminal.
  4. Check the install with deepseek --version.
  5. Launch with deepseek --model auto.
  6. Configure the API key when prompted.
  7. If the interface flickers, switch terminals before reinstalling.
  8. Start in a disposable test project.
  9. Review Git diff and command output after each task.

Final Take

DeepSeek TUI is not just a chat wrapper. It is an open-source attempt to make DeepSeek useful inside a terminal-native engineering workflow.

Its combination of files, shell, Git, MCP, LSP diagnostics, session recovery, snapshots, sub-agents, and operating modes gives it the shape of a real coding agent.

The project is still moving quickly, so the experience will vary by platform and terminal. My Windows issue was real, but not severe: Windows Terminal solved it.

For developers watching the open-source coding-agent space, DeepSeek TUI is worth testing.

Original version:

https://kunpeng-ai.com/en/blog/deepseek-tui-windows-terminal-coding-agent/

Project:

https://github.com/Hmbown/DeepSeek-TUI

Related workflow thinking:

https://github.com/kunpeng-ai-lab/agent-collaboration-sop