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

推荐订阅源

H
Help Net Security
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
博客园_首页
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
B
Blog
D
DataBreaches.Net
腾讯CDC
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
月光博客
月光博客
V
V2EX
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
The Cloudflare Blog
博客园 - 叶小钗
Y
Y Combinator 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
How I Make DeepSeek Work Closer to Claude Code in Practice
kunpeng-ai-l · 2026-05-18 · via DEV Community

kunpeng-ai-lab

People have been asking me how I make DeepSeek feel closer to Claude Code in real work.

My answer is not a magic prompt. It is a mentor model workflow.

I use a stronger model to plan, supervise, debug, and review. Then I let smaller or cheaper models handle bounded execution tasks in parallel.

Important caveat: I am not claiming DeepSeek is equivalent to Claude Code as a single model/tool. The comparison is about the practical workflow effect.

Multi-model mentor workflow

1. The mentor model creates the task boundary

Before assigning work, the stronger model defines:

  • the small task units
  • the files or outputs each executor may touch
  • the acceptance checks
  • the things that must not change

That alone makes weaker models much more reliable. They no longer have to infer the whole strategy.

Mentor model planning

2. Smaller models execute narrow tasks

DeepSeek becomes useful when I give it work like:

  • inspect this log and summarize the failure
  • draft this section using the existing outline
  • analyze this recording and list usable timestamps
  • convert this article into a platform version
  • modify this specific module without touching unrelated files

I avoid giving smaller models vague ownership of the whole project.

Parallel model execution

3. The mentor model reads the process, not only the result

This is the part that matters most.

The mentor checks command output, logs, stuck points, test failures, render errors, and mismatched assumptions. It does not just ask "did the file exist?"

For a video segment, it checks resolution, audio behavior, subtitles, and template consistency.

For article assets, it checks image template usage, manifest records, alt text, and platform rules.

Feedback loop

4. Failures become reusable skills

After a model gets stuck, I want the lesson saved:

  • what triggered the failure
  • which check should happen earlier next time
  • which platform rule matters
  • which command or template is reliable

Those lessons become project skills and handoff notes. This is how later runs get smoother.

The short version

DeepSeek works much better for me when it is not asked to be the entire coding agent.

It becomes much more useful when a stronger model acts as mentor:

  • plan the task
  • define the boundary
  • assign narrow execution
  • inspect logs and errors
  • correct the process
  • turn lessons into reusable memory

That is the real pattern. Not "DeepSeek replaces Claude Code", but "DeepSeek performs better inside a mentor-led agent workflow."