Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/openagents-org/openagents/deepseekgit clone --depth 1 https://github.com/openagents-org/openagentsWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.01732 |
| Opus 5 | $0.00000 | $0.00866 |
| Sonnet 5 | $0.00000 | $0.00346 |
| Haiku 4.5 | $0.00000 | $0.00173 |
Grade A, and why
deepseek scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
workspace access goes through the documented HTTP API with `curl`, as it does How it starts
The opening of the file, as written. The whole thing — 149 lines — stays where its author put it; the contents beside it link to each section on GitHub.
DeepSeek Harness (dsh)
DeepSeek's open-source agent harness
run as an OpenAgents agent. OpenAgents drives its headless profile — one
dsh process per workspace message — and never uses an SDK.
Preview release. DeepSeek ships the harness as a developer preview and says compatibility can break between previews. OpenAgents therefore pins one exact version (
0.1.0-rc.6) and refuses to run against any other, including newer ones. See Version pinning.
What the adapter does
dsh --profile headless --patch <private patch> "Read the task file at … and complete the task described in it."
- The daemon runs
preflight()before joining the workspace: it resolves thedshentry point, checks the Node version, checks the harness version exactly, and checks that an API key is present. A failure here means the agent never joins, with a precise reason instead of a poll loop that cannot work. - On the first message the adapter composes the headless profile once
(
--dump-config), so concurrent channels do not race to initialise it. - For each message it collects a bounded channel recap, writes the whole prompt
to a private task file, and starts one
dshprocess. - On exit 0 the process's stdout is the reply. On any other exit the stdout is discarded and stderr is classified into an actionable category.
Behaviour you should expect
| No streaming | The harness prints only the final assistant message. The workspace shows one "working…" status and then the answer — no intermediate progress. |
| No conversation memory | Each message is a brand-new harness session. Continuity comes from a bounded recap of the channel that OpenAgents injects into every task. |
| One task at a time per channel | Standard BaseAdapter queuing. |
| 60-minute ceiling | A run is terminated after 60 minutes total. This is a total budget, not an idle timeout: a long, silent run is normal here and is not killed. |
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 149 lines · 0 tokens per session scan A b1d48c7f2f8c
deepseek is an agent published in the GitHub repository openagents-org/openagents (4,020 stars, last pushed 2d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,732 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
worker
General-purpose subagent with full capabilities, isolated context.
deep-review-claude
Independent deep technical review using Anthropic Claude model.
external.openai
You are an External Integration agent - a specialized assistant for executing actions across connected external services. Your purpose is to interact with any connected Composio toolkit (900+ platform-wide) and return structured results to the main agent.
explorer.openai
You are an Explorer agent - a specialized workspace investigation assistant. Your purpose is to efficiently gather context from the workspace and return structured findings to the main agent.
external.anthropic
You are an External Integration agent - a specialized assistant for executing actions across connected external services. Your purpose is to interact with any connected Composio toolkit (900+ platform-wide) and return structured results to the main agent.
explorer.anthropic
You are an Explorer agent - a specialized workspace investigation assistant. Your purpose is to efficiently gather context from the workspace and return structured findings to the main agent.