DeepSeek has released a major update to its open-source DeepSeek Harness agent development platform, adding multimodal capabilities just days after the project’s public beta launch.

The new DeepSeek Harness v0.1.0-rc.8 release arrived on August 20, 2026, with 14 updates focused on improving how AI agents interact with images, files, subagents and development workflows.
The biggest change is the addition of native multimodal input, allowing compatible model adapters to process images alongside text.
The update could make DeepSeek Harness significantly more useful for developers building AI coding agents and autonomous workflows.
What Is DeepSeek Harness?
DeepSeek Harness, also known as DSH, is an open-source agent harness developed by DeepSeek AI.
Instead of being a conventional AI chatbot, a harness provides the infrastructure surrounding an AI model that allows an agent to interact with tools, files, software environments and other resources.
DeepSeek describes its approach as “Everything is a Plugin.”
Models, tools, skills, sessions, sandboxes, storage, loops, scheduling and the user interface can all be provided through plugins and composed according to a developer’s needs.
The project is currently available as a developer preview and is licensed under the MIT license.
DeepSeek Harness Gets Its First Major Update
The latest release, v0.1.0-rc.8, is the first major update since DeepSeek Harness entered public beta.
The public beta launched on August 13, making the speed of the new release notable.
In less than a week, DeepSeek has already added multimodal capabilities and several improvements to the agent runtime.
The release contains 14 updates, with multimodal input emerging as the headline feature.
Multimodal Support Is the Biggest Upgrade
The most important change is the ability for DeepSeek Harness to work with text and images together.
Previously, coding agents were primarily text-driven.
A developer could ask an agent to inspect source code, run commands or modify files through textual instructions.
With multimodal support, an agent can also receive visual information as part of its context.
This opens the door to workflows involving:
- Screenshots
- UI designs
- Diagrams
- Charts
- Visual bugs
- Documents
- Images
- Visual references
The updated model adapter can be configured to enable native image requests, according to reports on the rc.8 release.
Images Can Be Used With Agent Commands
The multimodal functionality is not limited to a standalone image-analysis feature.
Commands such as /goal and /plan can now work with mixed text-and-image input.
This means a developer could potentially provide an image together with a natural-language instruction and ask the agent to use both pieces of information when planning a task.
For example, a developer could provide a screenshot of a website and ask the agent to identify a UI problem and create a plan for fixing it.
The agent can then use the image as part of its task context.
The @ Menu Gets File and Session References
The update also expands how developers can reference information inside the agent environment.
The @ menu now includes references for files and sessions.
This can make it easier to bring existing project context into an agent workflow without repeatedly describing everything manually.
For coding agents, this type of contextual access is particularly important because software projects often contain large numbers of files and previous execution sessions.
Subagent Capabilities Are Also Improving
Another important part of the update involves subagents.
Modern AI coding systems increasingly use multiple agents or subagents to divide complex tasks.
One agent can handle planning while another works on implementation, testing or research.
DeepSeek Harness is designed to support this type of agent orchestration, and the latest release includes additional improvements related to subagent capabilities.
This could make the platform more competitive with agent-development environments such as Claude Code and Codex.
DeepSeek Harness Is Designed for Agent Developers
DeepSeek is positioning Harness as infrastructure for developers who want to build their own agent workflows.
The company describes the basic relationship as:
Agent = Model + Harness
The model provides the intelligence, while the harness gives the model the ability to understand its environment, use tools and continue working on real-world tasks.
This distinction is important.
DeepSeek Harness is not simply another chatbot interface.
It is designed to provide the runtime environment around AI agents.
Everything Is a Plugin
One of the most unusual aspects of DeepSeek Harness is its plugin-first architecture.
DeepSeek says that capabilities including models, tools, skills, sessions, sandboxes, storage, loops, scheduling and UI can all be represented as plugins.
Developers can then select, replace or extend these capabilities through configuration instead of modifying the core Harness source code.
This architecture could make the system highly customizable.
A developer could theoretically replace individual components without rebuilding the entire agent framework.
Multiple Runtime Modes
DeepSeek Harness currently provides several runtime modes.
Standard Mode
Standard Mode provides a full coding-agent environment with tools for file editing, shell access, file and web search, skills, planning, goals, subagents and workflows.
Code Mode
Code Mode allows the model to use the Code Mode SDK to orchestrate multiple tool operations through a TypeScript program.
This can make complex multi-step tasks more efficient.
Minimal Mode
Minimal Mode provides a much smaller environment with only a persistent Bash tool and a file editor.
DeepSeek says this mode can be useful for benchmarking models in a minimal environment.
Creator Mode
Creator Mode is designed for developers building custom agent presets.
It provides runtime inspection and the ability to experiment with plugins and create customized modes.
Why Multimodal Agents Matter
Adding image understanding changes the types of problems an AI coding agent can solve.
Software development is not purely textual.
Developers frequently work with:
- Screenshots
- Design mockups
- Error messages
- Architecture diagrams
- Browser interfaces
- Charts
- PDFs
- Visual test results
An agent that can understand these inputs can potentially work with a much richer representation of a project.
For example, instead of describing a visual bug in text, a developer could provide a screenshot and ask the agent to investigate it.
DeepSeek Could Be Moving Toward Visual Agents
The addition of native image requests has also sparked speculation about DeepSeek’s future multimodal models.
Some reports have linked the new functionality to expectations around a future visual version of DeepSeek’s models.
However, the current Harness update itself should not be interpreted as confirmation that a new DeepSeek visual model has officially launched.
What is confirmed is that the Harness infrastructure now has stronger support for multimodal workflows.
The Update Makes Coding Agents More Flexible
A major advantage of a multimodal coding agent is flexibility.
Consider a typical website-development workflow.
A developer might provide:
Text: “Fix the spacing problem in this header.”
Image: Screenshot showing the incorrect header.
The agent can use both the instruction and the screenshot to understand the desired task.
This can reduce the amount of manual explanation required from the developer.
The same concept can apply to application interfaces, dashboards, mobile apps and other visual software.
DeepSeek Harness Can Run Locally
DeepSeek describes Harness as a local-first agent environment.
Once installed, user inputs, model outputs, session context, tool-call records, attachments, file paths and runtime logs are stored locally by default and are not uploaded to DeepSeek’s servers without user consent.
This architecture could be attractive to developers working with sensitive code or private projects.
However, when users configure external models, web tools, MCP services or other plugins, those external services may process the relevant data according to their own policies.
Every Agent Run Is Traceable
DeepSeek also emphasizes traceability.
The Harness records what the model sees and what happens during an agent run in an append-only session log.
This can include:
- System prompts
- Model reasoning
- Tool calls
- Tool results
- Subagent scheduling
- Context injection
The Trajectory view allows developers to inspect these events.
DeepSeek says features such as resume, fork, search and replay operate on the same event stream.
This could be particularly useful when debugging complex autonomous workflows.
DeepSeek Harness Is Open Source
DeepSeek Harness is available as an open-source project under the MIT license.
Developers can run the Web UI through npm or install the project from source.
The official quick-start command is:
npx @deepseek-ai/dsh web
Developers can also clone the GitHub repository and build the project locally.
Why Developers Are Paying Attention
The AI coding-agent market has become increasingly competitive.
Developers can now choose from agentic coding tools connected to models from companies such as Anthropic, OpenAI, Google and DeepSeek.
DeepSeek’s approach is different in that it is making the agent harness itself open and composable.
Instead of locking developers into a single interface, DeepSeek is providing infrastructure that can be customized.
The new multimodal capabilities make that infrastructure more powerful.
DeepSeek Harness vs Traditional AI Chatbots
Traditional AI chatbots primarily operate through a conversation interface.
A user asks a question, the model generates a response and the conversation continues.
An agent harness works differently.
It can give a model:
- Tools
- Files
- Shell access
- Web search
- Skills
- Persistent sessions
- Sandboxes
- Subagents
- Workflows
This allows the model to perform multi-step tasks rather than simply answer questions.
DeepSeek Harness is designed specifically around this agentic workflow.
What the Multimodal Update Could Enable
The combination of agent tools and visual input creates several interesting possibilities.
Visual Debugging
Developers can provide screenshots of broken interfaces and ask the agent to investigate.
UI Development
Agents can use design references to help implement interfaces.
Document Analysis
Images and visual documents can become part of an agent’s working context.
Data Visualization
Agents can potentially inspect charts and visual outputs while performing analysis.
Software Testing
Screenshots of failed test states can be provided alongside textual instructions.
Design-to-Code Workflows
Visual references can become inputs for implementation tasks.
The Security Side of Agentic AI
The rapid development of agent frameworks also raises security concerns.
A recent independent research paper evaluated DeepSeek Harness against indirect prompt-injection attacks using controlled tests.
The researchers found that certain attack methods could influence agent behavior under their experimental conditions and highlighted the importance of controls between untrusted content and sensitive actions.
This is an important consideration for any agent framework that can access files, tools, shell commands or external services.
More capability also means more potential attack surface.
DeepSeek Harness Is Still in Developer Preview
Despite the rapid progress, DeepSeek Harness is not yet a mature, finalized product.
DeepSeek explicitly labels it a developer preview and warns that compatibility-breaking changes may occur as development continues.
The company also says its core plugins and APIs will continue to evolve.
Developers experimenting with the platform should therefore expect changes between releases.
Why the RC.8 Release Matters
The importance of the new release is not simply the number of features added.
It demonstrates how quickly DeepSeek is iterating on its agent infrastructure.
The project went public on August 13 and received a substantial update by August 20.
That pace suggests DeepSeek is actively responding to developer feedback and experimenting with the architecture.
The Bigger Picture
The latest DeepSeek Harness update reflects a broader shift in AI development.
AI agents are moving beyond text-only interactions.
They increasingly need to understand:
- Images
- Files
- Software environments
- Web content
- Tool outputs
- Previous sessions
- Other agents
A multimodal agent harness provides the infrastructure needed to combine these inputs.
DeepSeek’s plugin-based architecture takes this idea even further by allowing developers to customize individual components.
Final Verdict
DeepSeek Harness v0.1.0-rc.8 is a significant step forward for DeepSeek’s open-source agent ecosystem.
The addition of native multimodal input means developers can now build workflows that combine text and images, while improvements to file references, sessions and subagents make the agent environment more capable.
The project remains a developer preview, so it is too early to know how deeply these capabilities will compete with established AI coding-agent platforms.
But the direction is clear.
DeepSeek is not simply building another AI chatbot.
It is building an open, modular infrastructure layer for AI agents — and the addition of multimodal capabilities brings that vision closer to real-world software development.
As DeepSeek continues updating Harness, the platform could become an increasingly important open-source alternative for developers building autonomous and multimodal AI agents.
Read More:- Uber Launches Fully Driverless Baidu Robotaxis in Dubai in Global Autonomous Driving Push
FAQ
What is DeepSeek Harness?
DeepSeek Harness is an open-source AI agent development framework designed to give AI models access to tools, files, sessions, sandboxes and other capabilities needed to perform complex tasks.
What is the latest DeepSeek Harness update?
The latest release discussed here is DeepSeek Harness v0.1.0-rc.8, which introduces several improvements, including native multimodal input support.
What does multimodal support mean in DeepSeek Harness?
Multimodal support allows an AI agent to work with different types of information, including text and images. This can help agents understand screenshots, diagrams, visual bugs and other image-based information alongside written instructions.
Can DeepSeek Harness understand screenshots?
With the new multimodal capabilities, compatible model adapters can process images as part of an agent’s context. This can make screenshot-based debugging and visual software-development workflows possible.
Can developers use images with DeepSeek Harness commands?
Yes. The updated system supports mixed text-and-image input for workflows involving commands such as /goal and /plan, allowing visual information to be included alongside instructions.
Is DeepSeek Harness open source?
Yes. DeepSeek Harness is available as an open-source project under the MIT license.
Is DeepSeek Harness free to use?
The Harness software itself is open source, but the cost of using particular AI models, APIs, external services or other connected tools can vary depending on the configuration.
What can DeepSeek Harness be used for?
DeepSeek Harness can be used for AI coding agents, software development, file manipulation, tool calling, web research, planning, subagents and customized agent workflows.
What is the plugin architecture in DeepSeek Harness?
DeepSeek describes its architecture as “Everything is a Plugin.” Models, tools, skills, sessions, sandboxes, storage, scheduling and other components can be provided through plugins.
Can DeepSeek Harness use subagents?
Yes. The platform supports subagent workflows, allowing complex tasks to be divided among multiple AI agents or specialized processes.
Can DeepSeek Harness run locally?
Yes. DeepSeek positions Harness as a local-first agent environment. Developers can install and run it locally, although external models and connected services may process data according to their own policies.
Is DeepSeek Harness production-ready?
Not yet. DeepSeek currently describes Harness as a developer preview, meaning APIs and functionality may continue to change and compatibility-breaking updates may occur.
Does DeepSeek Harness compete with Claude Code and Codex?
It operates in the same broader AI coding-agent ecosystem, but DeepSeek’s approach emphasizes an open, modular and plugin-based agent infrastructure.
Why is multimodal support important for AI coding agents?
Software development often involves screenshots, UI designs, diagrams and visual debugging. Allowing agents to understand images can give them more context and reduce the amount of information developers need to describe manually.




