DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Maestro Skills — DeepSeek Harness 插件(DSH Plugin)
← Plugins
M

@ddtcorex/maestro-skills

Maestro Skills

Govard 领域技能(17 个)+ superpowers 库(15 个,派生自 obra/superpowers),打包为 Cordis 插件

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

npx -y @deepseek-ai/dsh plugin --profile web add github:ddtcorex/maestro-skills#e999d157b4fb62d1a6be1c550514393f152d89a4
README兼容性版本

兼容性与来源证明

Maestro Skills 以 @ddtcorex/maestro-skills 发布,当前版本为 2.14.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

2.14.0stable
2026/9/19
2.13.0stable
2026/9/13
2.12.1stable
2026/9/13
查看其余 19 个版本收起版本
2.12.0stable
2026/9/11
2.11.1stable
2026/9/3
2.11.0stable
2026/9/2
2.10.0stable
2026/8/31
2.9.0stable
2026/8/31
2.8.1stable
2026/8/30
2.8.0stable
2026/8/30
2.7.0stable
2026/8/29
2.6.0stable
2026/8/29
2.5.0stable
2026/8/29
2.4.2stable
2026/8/28
2.4.1stable
2026/8/27
2.4.0stable
2026/8/27
2.3.1stable
2026/8/27
2.3.0stable
2026/8/27
2.2.1stable
2026/8/26
2.2.0stable
2026/8/24
2.1.0stable
2026/8/23
2.0.0stable
2026/8/22

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

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

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

Maestro Skills (maestro-skills)

A unified skills library for AI coding agents, packaged as a universal plugin for DeepSeek Harness (DSH), Claude Code, Codex CLI, OpenCode, and GitHub Copilot — two halves in one bundle:

  • Domain skills (17) — Govard development-environment orchestration and its supported web frameworks (Magento 2, Laravel, Symfony, WordPress, generic PHP): architecture, linting, performance auditing, security scanning, code review, Hyvä/Luma frontend, backend APIs, plus php-dev-core and diagram-studio.
  • Process skills (15) — the complete superpowers methodology forked verbatim from v6.4.1 (MIT, © Jesse Vincent): brainstorming, test-driven development, systematic debugging, writing/executing plans, subagent-driven development, code-review collaboration, session diagnosis, and more. See THIRD-PARTY-NOTICES.md for license and sync policy.

Every skill follows the open Agent Skills standard (a SKILL.md file with name/description frontmatter), which all major AI Agent tools understand.

Works best with Govard. Most command examples in the domain skills assume a Govard-managed dev environment (govard sh -c "...", govard tool magerun ...) — without it, you'll need to adapt them to your own container/CLI setup. One-line install: curl -fsSL https://raw.githubusercontent.com/ddtcorex/govard/master/install.sh | bash.


📂 Directory Structure

Every skill lives under skills/<name>/SKILL.md — this is the single source of truth across all supported AI tools and platforms:

maestro-skills/
├── README.md                        # Global documentation and guide
├── package.json                     # NPM package & DSH Cordis Plugin manifest (@ddtcorex/maestro-skills)
├── THIRD-PARTY-NOTICES.md           # Superpowers fork attribution + MIT license text
├── scripts/
│   └── sync-superpowers.sh          # Refresh the superpowers fork from upstream
├── tsconfig.json                    # TypeScript compiler configuration
├── src/                             # DSH Cordis Plugin source code
│   ├── index.ts                     # Cordis plugin entrypoint: serves packaged skills + installs the DSH agent preset
│   └── dsh-types.d.ts               # DSH type definitions
├── .dsh-plugin/                     # DeepSeek Harness Agent Preset definition
│   ├── preset.yml                   # Web GUI preset display metadata ("Maestro Skills")
│   └── agent.cordis.yml             # DSH Agent preset composition
├── .claude-plugin/                  # Claude Code plugin manifests
├── .codex-plugin/                   # Codex CLI plugin manifest
├── .agents/plugins/                 # Codex marketplace manifest
│
└── skills/                          # 32 skills total
    ├── 🧠 PROCESS SKILLS (forked from obra/superpowers v6.4.1)
    │   ├── brainstorming/              # Socratic design refinement with approval gates
    │   ├── diagnosing-superpowers/     # Diagnose what went wrong in a session
    │   ├── test-driven-development/    # RED-GREEN-REFACTOR iron law
    │   ├── systematic-debugging/       # 4-phase root-cause process
    │   ├── verification-before-completion/  # Evidence before success claims
    │   ├── writing-plans/ + executing-plans/
    │   ├── subagent-driven-development/ + dispatching-parallel-agents/
    │   ├── requesting/receiving-code-review/
    │   ├── using-git-worktrees/ + finishing-a-development-branch/
    │   ├── writing-skills/             # How to author new skills
    │   └── using-superpowers/          # Skill-system introduction (+ DSH tool map)
    │
    ├── 📦 CORE STANDARDS & ARCHITECTURES
    │   └── magento2-dev-core/           # Magento 2 core guidelines (DI, Repositories, Security)
    ├── 🛠️ QUALITY ASSURANCE & AUDITING
    │   ├── magento2-linter/             # PHPCS, PHPStan, PHPMD quality checks
    │   ├── magento2-performance-audit/  # Web vitals, infrastructure and DB profiling
    │   ├── magento2-security-scan/      # Static vulnerability code scanning
    │   └── magento2-code-review/        # PR/module/theme/project review orchestration
    ├── 🎨 FRONTEND & BACKEND FRAMEWORKS
    │   ├── magento2-hyva-dev/           # Alpine.js, Tailwind CSS, CSP payment pages
    │   ├── magento2-frontend-dev/       # Luma Knockout.js, LESS, RequireJS
    │   └── magento2-backend-dev/        # REST, GraphQL resolvers, Cron, Queues
    └── 🔧 DEV ENVIRONMENT & CLI TOOLS (Govard Stack)
        ├── govard-toolbox/              # Base container orchestrator toolbox
        ├── govard-magento/              # Magento-specific dev env commands
        ├── govard-laravel/              # Laravel-specific dev env commands
        └── review-in-worktree/          # Govard commands in detached review worktrees

🤖 Skill Compatibility Matrix

All 32 skills work identically on every listed tool.

GroupSkillsClaude CodeCodex CLIOpenCodeGitHub CopilotDeepSeek Harness
Process (superpowers fork)brainstorming, diagnosing-superpowers, dispatching-parallel-agents, executing-plans, finishing-a-development-branch, receiving-code-review, requesting-code-review, subagent-driven-development, systematic-debugging, test-driven-development, using-git-worktrees, using-superpowers, verification-before-completion, writing-plans, writing-skills✅✅✅✅✅
Core & Standardsmagento2-dev-core✅✅✅✅✅
Linting & Auditingmagento2-linter, magento2-performance-audit, magento2-security-scan, magento2-code-review✅✅✅✅✅
Frameworksmagento2-hyva-dev, magento2-frontend-dev, magento2-backend-dev✅✅✅✅✅
Toolchains (Govard)govard-toolbox, , ,
SkillDescription
php-dev-coreGeneric PHP foundation (PSR-12/Composer/PHPStan/Security)

💾 Installation

1. DeepSeek Harness (DSH) — as a plugin (recommended)

One command is a complete install — the plugin serves all 32 packaged skills itself and materializes the "Maestro Skills" agent preset into ~/.dsh/.agent-presets/maestro-skills/ at startup:

dsh plugin --profile web add github:ddtcorex/maestro-skills

Then restart dsh web and pick Maestro Skills in the Web GUI agent picker. No install.sh needed.

Codex + Claude delegation preset (optional bundles, optional preset): when the web profile also installs the two optional subagent bundles (@deepseek-ai/dsh-subagent-codex and @deepseek-ai/dsh-subagent-claude-code), the plugin additionally materializes a maestro-skills-subagents preset — the same composition with subagent_codex and subagent_claude_code tool rows enabled, so the model can delegate to those products through their official app-server/SDK result contract instead of whichever CLI happens to be on PATH. Sessions pick "Maestro Skills + Subagents (Codex + Claude)" in the picker; both providers authenticate via their native subscription login, so quota-limited accounts may see provider-side quota errors until the limit resets.

The package builds itself on install via its prepare script. pnpm ≥ 10 blocks git-dependency build scripts until you allow them — if the first add reports an ignored build, copy the key pnpm prints into the profile's pnpm-workspace.yaml and re-run:

allowBuilds:
  '@ddtcorex/maestro-skills': true

To reference the plugin from a hand-written patch layer instead, the row must name the real package:

- insert:
    - id: maestro-skills
      name: '@ddtcorex/maestro-skills'
Alternative: loose skill files via installer (no plugin)
curl -fsSL https://raw.githubusercontent.com/ddtcorex/maestro-skills/master/install.sh | bash -s -- --target dsh

Links all skills into ~/.dsh/skills/ and copies the agent preset into ~/.dsh/.agent-presets/maestro-skills/.


2. Claude Code — as a plugin

/plugin marketplace add ddtcorex/maestro-skills
/plugin install maestro-skills@ddtcorex

Updates: /plugin marketplace update ddtcorex.


3. Codex CLI — as a plugin

codex plugin marketplace add ddtcorex/maestro-skills
codex plugin add maestro-skills@ddtcorex

Updates: codex plugin marketplace upgrade ddtcorex.


4. OpenCode & GitHub Copilot, or Direct Skill Files

curl -fsSL https://raw.githubusercontent.com/ddtcorex/maestro-skills/master/install.sh | bash
ToolScans (project scope)Scans (personal scope)
Claude Code.claude/skills/~/.claude/skills/
DeepSeek Harness (DSH).dsh/skills/~/.dsh/skills/
OpenCode.opencode/skills/~/.config/opencode/skills/
Codex CLI.agents/skills/~/.agents/skills/
GitHub Copilot.github/skills/~/.copilot/skills/

🔄 Superpowers fork maintenance

The 15 process skills are an upstream fork, not hand-maintained copies:

scripts/sync-superpowers.sh            # latest upstream HEAD
scripts/sync-superpowers.sh v6.4.1     # a specific tag

The script preserves this repo's local addition (skills/using-superpowers/references/dsh-tools.md) and prints a diff for review; the fork-provenance note in using-superpowers/SKILL.md is re-applied by hand during review. Do not edit forked skill bodies by hand — see THIRD-PARTY-NOTICES.md.

⚡ Extension Guide: Adding New Domain Skills

You can easily expand this hub with any new framework or toolchain supported by Govard (e.g., Laravel, Symfony, React, Vue, Docker, etc.).

Step 1: Create the Skill Folder

Create skills/[framework/tool]-[purpose]/ using kebab-case (e.g., skills/laravel-dev-core/, skills/vue-hyva-checkout/). For process skills, don't create them here — contribute upstream to obra/superpowers instead.

Step 2: Create a SKILL.md File

Every skill folder must contain a SKILL.md file at its root with valid YAML frontmatter:

---
name: your-skill-name
description: |
  Describe exactly when the AI Agent should trigger this skill.
compatibility: claude, codex, opencode, copilot, dsh
depends: [any-dependencies-if-applicable]
---

# Your Skill Title

## Capabilities
Describe what this skill enables the agent to do.

## Best Practice Patterns
Provide code templates, standards, and typical commands.

## Verification
Step-by-step commands to verify output works properly.

One bundle, one workflow: Govard domain expertise plus superpowers process discipline. 🚀

Contributing

Changes follow the Superpowers workflow mandated in AGENTS.md: brainstorming → writing-plans → executing-plans with strict TDD. Feature branches only; never commit to master directly.

Credits & Attribution

  • Domain skills: © DDTCoreX, MIT License (see LICENSE).
  • Process skills: forked from obra/superpowers v6.4.1 by Jesse Vincent / Prime Radiant, MIT License — full notice in THIRD-PARTY-NOTICES.md. The DSH tool mapping (references/dsh-tools.md) is a local addition, not upstream content.
govard-magento
govard-laravel
review-in-worktree
✅
✅
✅
✅
✅
PHP Foundationphp-dev-core✅✅✅✅✅