jiruidai/dsh-meta-orchestrator ↗★ 2
dsh-meta-orchestrator
A model-native meta-agent plugin for DeepSeek Harness: the model synthesizes task-specific workflows at runtime from five agentic workflow patterns (prompt chaining, parallel workers, router, supervisor, evaluation loop) and coordinates tools and subagents — without fixed pipelines, templates, or hard-coded routing.
安装
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:jiruidai/dsh-meta-orchestrator说明文档
阅读完整 README ↗A DeepSeek Harness plugin that teaches the agent to synthesize a task-specific workflow at runtime — instead of hard-coding pipelines or fixed agent topologies.
🧭 How it works
Normally an agent just starts working on your request. With this plugin, it plans first, then works the plan — and the plan is written by the model itself, per request:
- Analyze — the agent reads the request; if it is genuinely ambiguous, it asks before doing anything.
- Pick a pattern — it chooses one of five proven ways to organize the work: ⛓️ steps in order (
prompt-chaining), ⚡ fan out independent parts (parallel-workers), 🔀 classify, then dispatch (router), 🎯 delegate and review (supervisor), 🔁 draft → score → improve (evaluation-loop). Each pattern's detailed playbook is loaded only when picked. - Write the plan down — it calls
orchestratewith the stages, the roles it will delegate, and verifiable success criteria. The plugin validates the structure and saves it durably. That is all the plugin ever does: it records plans, it never executes them. - Do the work with DSH's own tools — subagents, todos, workflow scripts, plan mode. The plugin adds no runtime of its own.
- Adapt or close — if reality diverges,
adapt_workflowrevises the plan (every revision is versioned); when the work is done, records how each success criterion turned out.