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.

Skill Function Testing — DSH Plugin for DeepSeek Harness
← Plugins
S

dsh-skill-function-testing

Skill Function Testing

DeepSeek Harness skill bundle: function-testing (loads SKILL.md).

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

npx -y @deepseek-ai/dsh plugin --profile web add github:addxing/function-testing#d14cb5409d9362f7e007797ecd732b2e883443b7
READMECompatibilityVersions

Compatibility and provenance

Skill Function Testing is published as dsh-skill-function-testing 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
9/24/2026

Versions

0.1.0stable
9/24/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
Apache-2.0
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/24/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 developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

Function Testing

skills.sh

A skill for generating functional test cases from PRDs, Git commits, or user stories, and exporting an Excel-style test report. Works with AI coding tools that support Agent Skills.

Install

npx skills add addxing/function-testing

DeepSeek Harness

This repo follows the DeepSeek Harness (DSH) Skill format. Clone it into a skills directory and it will be auto-discovered:

# User-level install (available in all projects)
git clone https://github.com/addxing/function-testing ~/.dsh/skills/function-testing

# Project-level install (current project only)
git clone https://github.com/addxing/function-testing .dsh/skills/function-testing

DSH hot-reloads the skills directory after cloning; the skill becomes available in new sessions.

Or install it as an official bundle plugin in one line (requires pnpm; restart the web app afterwards):

dsh plugin --profile web add "github:addxing/function-testing#main"

Usage

Select this skill using your tool’s skill mechanism, or ask for it by name. Invocation syntax and automatic activation depend on the tool.

After installing the skill, ask your AI agent to use it when you need functional test cases:

Use the function-testing skill to generate test cases for this PRD.

For best results, provide one of:

  • a PRD or requirements document
  • Git commit details or a diff
  • a user story or feature description

What It Does

This skill guides an agent to:

  • analyze the input material and identify its source type
  • extract testable functional points
  • design concise test cases covering positive, negative, boundary, state transition, and data consistency scenarios
  • assign priorities such as P0, P1, and P2
  • generate an Excel report with overview, feature list, and test case sheets

Files

  • SKILL.md - the skill instructions
  • LICENSE.txt - Apache 2.0 license

Chinese Documentation

See README.zh.md.