DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Maf — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
M

dsh-maf

Maf

Microsoft Agent Framework (MAF) integration for DeepSeek Harness: validate, run and scaffold declarative agents and workflows defined in YAML, through native dsh tools.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:WODE25500/dsh-maf#84077ac812f24d7a0334f73efed97912c8b3f97d
READMECompatibilityVersions

Compatibility and provenance

Maf is published as dsh-maf and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/20/2026

Versions

0.1.0stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/20/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in agents-orchestration.

Headless@deepseek-ai/dsh-headlessThe dsh one-shot bundle: a direct core Agent/Session runner over dsh-base with no Host, HTTP, or browser layerExperimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocolSubagent Claude Code@deepseek-ai/dsh-subagent-claude-codeOne-shot Claude Code subagent provider over the official Agent SDK

README

dsh-maf

Microsoft Agent Framework (MAF) 的 DeepSeek Harness (dsh) 插件 —— 让 dsh 智能体验证、运行和搭建 MAF 的 declarative agents / workflows(YAML 声明式定义)。

独立社区项目,非官方。基于 microsoft/agent-framework(MIT)。 MAF 是 Semantic Kernel 的企业级继任者(v1.0 已发布)。

为什么做

MAF(13k★,Python/.NET)是微软当前的 agent 编排框架,没有 DSH 适配。它的核心是 YAML 声明式 agent/workflow——正好适合 agent 生成、验证和运行:

工具行为
maf_statusMAF 包版本 + 环境检查
maf_validate校验 declarative agent YAML(AgentFactory 解析)
maf_run_agent运行 declarative agent(YAML + prompt)
maf_run_workflow运行 declarative workflow sample(main.py)
maf_scaffold生成 agent/workflow YAML 模板

前置要求

pip install agent-framework agent-framework-declarative python-dotenv

Agent YAML 的 model.id 常引用环境变量(=Env.OPENAI_CHAT_MODEL_ID), 运行前配置好 .env / 环境变量(provider 密钥)。

安装

# profile 的 cordis.patch.yml
- insert:
    - id: maf
      name: './src/index.js'
      config:
        pythonCmd: python
        enginePath: scripts/maf.py
pnpm dsh web --patch ./dsh-maf/cordis.patch.yml

然后问 agent:"maf_status 检查环境,maf_validate 校验 ./agents/Assistant.yaml"。

引擎实现

scripts/maf.py 包装 MAF SDK:

  • AgentFactory(safe_mode=False).create_agent_from_yaml_path(path) → await agent.run(prompt)
  • workflow 用 python main.py 标准 sample 布局(workflow.yaml + main.py)

配置项

键默认说明
pythonCmdpythonPython 解释器
enginePathscripts/maf.py引擎脚本路径
timeoutMs180000单次调用超时(agent 运行可能较慢)

已知限制

  • maf_run_agent / maf_run_workflow 消耗配置的 provider API 额度
  • declarative agents API 官方标注为 experimental(可能变动)
  • 输出原样返回(含模型生成内容)

目录结构

dsh-maf/
  src/index.js            # 5 个工具 + 配置
  scripts/maf.py          # MAF SDK 引擎(status/validate/run/scaffold)
  skills/maf/SKILL.md
  docs/
  cordis.patch.yml

许可

MIT。