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.

Team Superflow — DSH Plugin for DeepSeek Harness
← Plugins
T

dsh-team-superflow

Team Superflow

Fixed five-member dev team for DeepSeek Harness driven by the spec-superflow state machine: captain + spec-writer/architect/engineer/reviewer/docs, phase-tagged tasks with dependencies, auto phase advancement with a human build gate, and a workflow stepper in the web GUI

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

npx -y @deepseek-ai/dsh plugin --profile web add github:fengbin01/dsh-team-superflow#2ec233bf8fd4c440c2d5ffbf5ad41e699995af50
READMECompatibilityVersions
Demo 1Demo 2
Demo 3

Compatibility and provenance

Team Superflow is published as dsh-team-superflow and currently resolves to version 0.3.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/8/2026

Versions

0.3.0stable
9/8/2026
0.2.0stable
8/25/2026

Related plugins

Loading related plugins…

Latest
0.3.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/8/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

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-team-superflow

A fixed five-member development team · driven by the spec-superflow state machine · live progress in the Web GUI

Spin up the same fixed dev team every time you use AgentTeams in DeepSeek Harness: a captain (the current session) plus five members, with the team's work flowing through spec-superflow's eight workflow states, visualized as a stepper in the activity panel.

Refactored from NanmiCoder/dsh-agent-teams, integrating the state-machine model of MageByte-Zero/spec-superflow.

Demo

Demo 1

Demo 2 Demo 3

Fixed roster

Every agent_teams_create registers the same five members (subagents spawn lazily on their first phase-eligible dispatch):

memberroleactive phases
spec-writerspec writerexploring · specifying · bridging
architectdesigner / architectspecifying · bridging
engineerengineerexecuting · debugging
reviewerreviewerexecuting · debugging
docsrelease / docsexecuting · closing

State machine

The team record persists the spec-superflow eight-state workflow:

exploring → specifying → bridging → approved-for-build → executing ⇄ debugging → closing
                                    │
                                    └─ build gate: HUMAN approval before executing
(any non-terminal state) ─────────→ abandoned (terminal)
  • Auto-advance: when every task of the current phase completes, the team moves to the next phase (phaseAutoAdvance, default on).
  • Build gate (human review): implementation freezes at approved-for-build until a human reviews the execution-contract artifacts and clicks 「批准构建」 in the Web panel. The model cannot confirm the gate itself.
  • Rewind: the captain may move back to specifying (scope change) or bridging (contract drift); a bug moves executing → debugging and returns automatically after fixes.
  • Phase-tagged tasks: agent_teams_create_task tags each task with a phase (default: current); the scheduler only dispatches tasks matching the current phase and the member's role scope.

The activity panel adds a state-machine stepper (eight phase pills, overall percent, per-phase task counts, build-gate badge) refreshed from the durable host state.

Install

Requires DeepSeek Harness.

Method A: install straight from a git repo (recommended; GitHub or Gitee)

dsh plugin --profile web add https://gitee.com/quella01/dsh-team-superflow.git
# dsh plugin --profile web add https://github.com/fengbin01/dsh-team-superflow.git

Method B: clone and link locally (edit code, changes apply as you rebuild)

git clone https://gitee.com/quella01/dsh-team-superflow.git ~/dsh-team-superflow
dsh plugin --profile web add link:~/dsh-team-superflow

Method C: npm package (after publishing; not published yet)

dsh plugin --profile web add dsh-team-superflow

Usage

Natural language:

Use AgentTeams to add a dark mode to this repo, following spec → contract → implement → review.

Or the slash command:

/agent-teams refactor the auth boundary and produce the full execution contract and tests

Tools

ToolCapability
agent_teams_createCreate a team: registers the fixed five-member roster, starts in exploring, and materializes the spec-superflow artifact directory
agent_teams_add_memberAdd an extra member beyond the fixed roster (optionally scoped to workflow phases)
agent_teams_remove_memberSafely remove a member: revoke its open tasks, interrupt its turn, mark it removed
agent_teams_create_taskCreate a phase-tagged task with dependencies (defaults to the current phase; blocked until deps complete)
agent_teams_reassign_taskAtomically retry/reassign/take over a task, revoking the old attempt so late results cannot overwrite
agent_teams_claim_taskClaim one ready task and receive the attempt_id capability
agent_teams_update_taskAdvance task status/output; when every current-phase task completes, the team auto-advances
agent_teams_send_messageDirect captain/member messaging through durable mailboxes
agent_teams_statusRead the current phase, per-phase progress, member activity, tasks, artifacts, and build-gate state
agent_teams_advance_phaseAdvance/rewind the state machine (debugging, re-bridge, re-specify, abandon); the build gate requires HUMAN approval in the panel
agent_teams_deleteEnd the team and archive it (tasks, mailboxes, artifacts, and phase history kept under archive/)

Configuration

- id: agent-teams
  config:
    stateDir: .agent-teams
    memberProvider: spawn
    memberModel: deepseek-v4
    memberMaxDepth: 1
    maxMembers: 8
    fixedRoster: true          # false → original behavior (empty team)
    phaseAutoAdvance: true
    promptSectionOrder: 117
    slashCommand: true

License

MIT