DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Code2skill — DeepSeek Harness 插件(DSH Plugin)
← Plugins
C

@leechen298/code2skill

Code2skill

从现有代码生成并审查可移植的 Function、MCP 和 Agent Skill 软件包。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:leechen298/Code2Skill#27bac3f270e3e7cbfd16a41475222570874fbdb0
README兼容性版本
Code2Skill — turn existing code into agent capabilities

兼容性与来源证明

Code2skill 以 @leechen298/code2skill 发布,当前版本为 1.2.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

README

Code2Skill

Code2Skill — turn existing code into agent capabilities

English | 简体中文

Code2Skill is a collection of installable Agent Skills that helps coding agents understand business functionality in user-authorized frontend, backend, or full-stack source code, then generate Functions, MCP tools, workflow Skills, and offline tests for other agents to use.

Current release: v1.2.0.

Existing application code
  ↓ Code2Skill
Functions + MCP Tools + Skills + Tests
  ↓
An agent gathers the required information and completes the user's goal

Functions and MCP tools provide business capabilities. Skills guide an agent in using those capabilities. The consuming agent still decides whether to call a tool, what to clarify, how to interpret a response, and what to do next.

What It Does

  • Generates capabilities from business invocation points that actually exist in source code. Client-backed features start from calls made by the client or consumer; projects without a client start from user-specified public APIs, RPCs, services, messages, or task entry points and follow their public request, response, and contract types as needed.
  • Identifies independently completable goals within a user-specified page, directory, feature, or public entry point.
  • Places field provenance, selected-record handoffs between tools, request assembly, and deterministic transformations in Functions.
  • Generates a Skill for each primary goal while reusing the necessary Functions and MCP tools.
  • Defaults to offline technical validation and does not call live business APIs.

Supported Agents

You can run Code2Skill with mainstream coding agents such as Codex, Claude Code, and Kimi Code. Generated Skills can be installed in Codex, Claude Code, Cursor, OpenClaw, and other environments that support Agent Skills.

See the skills CLI compatibility list for more environments. To perform live business operations, register the generated MCP server as described in each package's MCP-SETUP.md.

Installation

Install all three Skills with the standard Agent Skills CLI:

npx skills add leechen298/Code2Skill \
  --skill code2skill-generate code2skill-review-flow code2skill-review-source \
  --agent "$AGENT_ID" \
  --global \
  --yes
  • code2skill-generate: generates Functions, MCP tools, workflow Skills, and offline tests.
  • code2skill-review-flow: checks whether a user can complete the main goals through the generated workflows.
  • code2skill-review-source: reviews request fields, transformations, and invocation chains against the authorized source code.

Routine generation only requires code2skill-generate. Run the two review Skills independently when needed. The three Skill instructions and default generated-document templates are available in English and Chinese; user-facing output follows the language of the request. The optional legacy strict-export-v1 compatibility mode still emits zh-CN documentation. See the installation guide for migration from older versions, generated-package dependencies, and MCP registration.

DeepSeek Harness

DeepSeek Harness users can install the three Skills as a Bundle in a selected profile:

dsh plugin --profile web add github:leechen298/Code2Skill#v1.2.0

See the DeepSeek Harness integration guide for installation, verification, headless profiles, and removal. Generated business MCP servers must still be registered separately according to their own MCP-SETUP.md files.

Usage Boundaries

Code2Skill produces runnable, editable first drafts of business capabilities. It does not prove that every business rule or real environment has been validated. Results depend on the generation model, source completeness, and the scope the user authorizes.

For complex writes or high-value workflows, review cross-tool data provenance, same-name field semantics, deterministic request transformations, goal-specific prerequisites, attachment uploads, and downstream bindings. Use code2skill-review-flow to check the main workflow and code2skill-review-source to inspect critical source semantics. Offline tests do not replace real API or deployment acceptance.

Quick Start

Invoke the generation Skill inside the target repository and explicitly authorize the source roots it may inspect:

Use $code2skill-generate to turn <page, directory, feature path, or public entry point>
into runnable Functions, MCP tools, and Skills.
Authorized source roots: <frontend>, <backend>, <protocol>, and <service/message/task directories>.
Use invocation points that actually exist in source code as the capability source.
Do not call live business APIs.

For independent reviews:

Use $code2skill-review-flow to review whether the primary goals in <generated package path> can be completed.

Use $code2skill-review-source to review whether <specific Skill or capability> in
<generated package path> matches the authorized source code.

Generated Package

The logical output stays consistent while file extensions, dependencies, and startup commands follow the target stack's runtime profile. The current core-export-v1 default is implemented by the node-stdio profile:

generated/code2skill/<feature-id>/
├── SKILL.md or skills/*/SKILL.md
├── function-core/index.mjs      # node-stdio profile example
├── mcp-tool/index.mjs           # node-stdio profile example
├── portable-agent-result.mjs    # helper for HTTP scenarios
├── tests/
├── package.json
├── MCP-SETUP.md
└── references/feature-context.md  # generated only when business context needs it

Each generated MCP-SETUP.md records the runtime language, dependency installation, startup command, environment variables, unmet prerequisites, and MCP registration steps. A Skill being installed, an MCP server being connected, and the live business workflow being validated are three separate states.

Generation Results

Three runs against the same anonymized, multi-goal source package:

Generation model / configurationDateGeneration timeComposite reference score
GPT-5.6 Sol (Ultra)2026-07-2447m 45s9.4
Kimi K3 (Max reasoning)2026-07-24about 93m8.9
GPT-5.6 Sol (High)2026-07-2420m 29s8.4

Timing ends when generation and that run's offline validation finish; it excludes later scoring, directory cleanup, installation, and deployment. See the evaluation report for the two scoring systems, methodology, and privacy boundaries.

Documentation

  • Install Skills, generated dependencies, and MCP servers
  • Generated package structure and design principles
  • Runtime-neutral generation design
  • Workflow-aware generation design
  • Optional advanced validation
  • Models, scoring, and anonymized evaluation results
  • Full documentation index

The Skills follow the Agent Skills specification and use vercel-labs/skills for installation. Generated MCP servers use standard stdio or Streamable HTTP transport.

1.2.0stable
2026/8/27
1.1.3stable
2026/8/20

相关插件

继续浏览 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 子代理提供程序
最新版
1.2.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
查看源码 ↗
README Badge

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

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

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

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