DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Agent Evolution — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
A

dsh-agent-evolution

Agent Evolution

用于 DeepSeek Harness 的预设组合 Agent 实验

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:FriendsHL/dsh-agent-evolution#709c1105caef6c0a393ced5a26bc79fad65fdacd
README兼容性版本

兼容性与来源证明

Agent Evolution 以 dsh-agent-evolution 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/8/26

版本

0.1.0stable
2026/8/26

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/8/26
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 agents-orchestration 分类下经过校验的插件。

Headless@deepseek-ai/dsh-headlessdsh one-shot bundle:基于 dsh-base 的直接核心 Agent/Session 运行器,不包含 Host、HTTP 或浏览器层Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profile用于 Agent Teams Remote 和 UI 插件的实验性 Web 配置层Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序Subagent Claude Code@deepseek-ai/dsh-subagent-claude-code基于官方 Agent SDK 的一次性 Claude Code 子代理提供方

README

dsh-agent-evolution

简体中文

dsh-agent-evolution is a public DeepSeek Harness bundle for controlled Agent composition experiments. Its first runtime plugin, agent-experiment-runner, runs the same standalone task in fresh Agents assembled from explicit DSH presets and returns evidence for later evaluation.

The bundle supplies primitives rather than an autonomous evolution loop. It does not score outputs, select winners, edit presets or plugins, promote candidates, or publish changes.

Runtime tools

  • agent_experiment_list_presets lists presets authorized by the deployment.
  • agent_experiment_run runs one task with one preset.
  • agent_experiment_compare runs one task sequentially with baseline and candidate presets and returns both records without choosing a winner.

Each run returns the preset id, child session id, stop reason, elapsed time, final assistant content, and persisted. The child log is flushed before its Agent handle is disposed. persisted: true means a DSH durability listener acknowledged the complete log before the tool returned; persisted: false means the run completed but no durability listener was installed, so callers must not treat the session id as durable.

Experiment children are ordinary lineage-bearing Agents. Their session headers record parentSession, delegationDepth, and agentPreset, but not origin: subagent, and they do not appear in SubAgent catalog, continuation, or control APIs. The plugin uses this path because the current standard SubAgent request cannot select an Agent preset.

Install

DSH is in developer preview. Pin a reviewed commit when installing from GitHub:

dsh plugin --profile web add github:FriendsHL/dsh-agent-evolution#<commit>

The package contributes this profile patch:

- insert:
    - id: agent-experiment-runner
      name: dsh-agent-evolution
      config:
        maxDepth: 3

For local development:

dsh plugin --profile web add link:/absolute/path/to/dsh-agent-evolution

Restart a running DSH process after adding or changing the bundle so Loader assembles the new profile.

Configuration

FieldDefaultPurpose
maxDepth3Absolute delegation-depth limit for experiment children.
maxTokensinheritedOptional positive output-token limit when a tool call does not override it.
allowedPresetssystem-trust rosterOptional non-empty preset-id allowlist. Explicit entries may include user-trust presets.
listToolNameagent_experiment_list_presetsModel-visible discovery tool name.
runToolNameagent_experiment_runModel-visible single-run tool name.
compareToolNameagent_experiment_compareModel-visible comparison tool name.

Without allowedPresets, discovery and execution admit only presets from roots configured with trust: system. With an explicit allowlist, every id is resolved when the plugin loads; unknown or broken entries prevent activation. A requested preset is resolved again before execution so deletion or damage fails before an Agent starts.

Selecting a preset can change the child's model-visible tools, skills, prompts, compaction, and other Agent-plane plugins. The child inherits the parent's model route unless provider and model are supplied together, inherits the parent's explicit sandbox override, and receives delegated approval: never when approval is composed. Preset authorization does not replace deployment review of the capabilities that each preset mounts.

Tool names must be non-empty and distinct. allowedPresets cannot be empty, contain blank ids, or contain duplicates. maxDepth, maxTokens, and per-call max_tokens reject invalid values during configuration or request validation.

Run and comparison behavior

Both execution tools require a non-empty, standalone task. A provider override and model override must be supplied together. The stable stop reasons are completed, max-tokens, aborted, refusal, and error; a non-completed stop reason is still a valid experiment record rather than an infrastructure exception.

Comparison resolves and authorizes both presets before starting either child. It runs the baseline first and then runs the candidate even when the baseline has a non-completed stop reason. A creation, execution, persistence, or cleanup exception stops the comparison and prevents the next child from starting. Cancellation before or between runs also prevents the next child; cancellation during a run is forwarded to that child.

DSH session logs are the transcript authority. This bundle creates no second transcript or evaluation store. Inspect a durable returned session for the complete prompt, tool calls, results, and output.

Evolution layers

The experiment runner is the first layer of the bundle. Evaluators, failure attribution, candidate authoring, and promotion or rollback are separate, deferred capabilities so deployments can permission and test them independently.

Development and verification

Repository contributions follow the independent design, implementation, review, and QA policy in CONTRIBUTING.md. That policy governs changes to this repository and is not part of the runtime plugin.

pnpm run check
# Build the DSH checkout once before the Web startup case.
DSH_CHECKOUT=/absolute/path/to/deepseek-harness pnpm run test:integration

The keyless integration suite packs the real npm artifact, installs it through dsh plugin, invokes all three model tools through a deterministic LLM adapter, verifies immediate JSONL persistence and the absence of SubAgent catalog entries, and starts the built DSH Web application. See Architecture for the component and failure model.

License

MIT