DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Specify Lite — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
S

@marcsierszen/dsh-specify-lite

Specify Lite

Lean 仅支持 DSH 的规范驱动开发技能

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

npx -y @deepseek-ai/dsh plugin --profile web add github:MarcSierszen/dsh-specify-lite#e678254ff475031adf1432e6c3247957ae3ce320
README兼容性版本

兼容性与来源证明

Specify Lite 以 @marcsierszen/dsh-specify-lite 发布,当前版本为 0.2.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.2.0stable
2026/9/13

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

继续浏览 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

dsh-specify-lite

From a clear idea to verified implementation — natively in DSH.

Specify clearly. Plan deliberately. Implement safely.

A lean, DSH-only plugin for spec-driven development (SDD). It was initially migrated from @904915452/dsh-specify and is now independently maintained as dsh-specify-lite. It is inspired by GitHub Spec-Kit, but is independent and incompatible: it does not install or use Spec-Kit or any external SDD CLI.

✨ Quick start

Install the plugin, then run the workflow from your project root:

dsh plugin --profile web add git+https://github.com/MarcSierszen/dsh-specify-lite.git
/speckit init
/speckit-constitution
/speckit-specify
/speckit-plan
/speckit-tasks
/speckit-analyze
/speckit-implement

Initialization creates only .speckit/ and specs/, safely and idempotently. The minimum tested DSH release is 0.1.1-rc.2; Node.js 20 or newer is required.

🧭 The workflow

  principles       contract          design           execution
      │                │                │                 │
      ▼                ▼                ▼                 ▼
 constitution  →  specify  →  plan  →  tasks  →  analyze  →  implement

Each stage produces inspectable artifacts, keeps scope explicit, and ends with evidence you can verify.

🧰 Commands

CommandPurpose
/speckitHelp, initialization, and derived project stage
/speckit-constitutionDefine optional project-wide principles
/speckit-specifyCreate or revise a feature specification
/speckit-clarifyResolve consequential ambiguity
/speckit-planProduce a repository-informed technical plan
/speckit-tasksProduce an ordered, traceable task list
/speckit-analyzePerform a read-only quality review
/speckit-implementImplement approved tasks and record verification

Why dsh-specify-lite? API-first thinking, deterministic artifacts, explicit confirmation before writes, no Git mutation, and excellent single-local-model support — all within DSH.

⚡ Single-model by design

Disclaimer: dsh-specify-lite does not use subagents or parallel task execution. It runs the workflow in one agent session, keeping context, edits, and verification predictable.

That focused design works especially well with a single local model: no orchestration overhead, no multi-agent coordination, and a clear end-to-end path from specification to verified implementation.

First steps: constitution and a health API

This example establishes project-wide principles first, then defines the API contract and implements its first endpoint.

From the root of a project:

/speckit init
/speckit-constitution

When prompted for the project principles, enter:

Use Python for the service. Design the API contract first. Follow RESTful API conventions.

Then create the first feature specification:

/speckit-specify

When prompted for the feature, enter:

Add a health endpoint: GET /health returns HTTP 200 and JSON {"status":"ok"}. The endpoint must not require authentication and should be suitable for automated health checks.

Then continue the delivery path:

/speckit-plan

Ask for the smallest implementation that preserves the /health contract and follows the constitution. Then run:

/speckit-tasks
/speckit-implement

The implementation should add the service and tests for GET /health, verify the 200 response and exact JSON body, and record the verification evidence in tasks.md. The resulting contract is:

GET /health
Accept: application/json

200 OK
Content-Type: application/json

{"status":"ok"}

Layout

.speckit/
└── constitution.md             # optional
specs/
└── 001-feature-slug/
    ├── spec.md
    ├── plan.md
    └── tasks.md

Use --feature 001-feature-slug, a unique slug, or specs/001-feature-slug to select a feature. Feature identity never comes from a Git branch.

Tasks use stable T001-style IDs. Partial implementation accepts, for example, --tasks T003,T005-T008; selected work is ordered as it appears in tasks.md. Completed checkboxes and JSON verification records in tasks.md determine derived stages: not-started, specified, planned, tasked, in-progress, and complete. Completion requires every task complete plus a final full-scope passing verification record.

Artifact edits are explicit: existing artifacts are read, proposed, and confirmed before changes. /speckit-implement asks once before its selected source edits, checkbox updates, and verification record. It inspects project documentation and package scripts before choosing tests and asks if no test command is clear.

The plugin never mutates Git state: it does not create, switch, reset, stash, commit, merge, or rebase branches.

Initial migration and current independence

This project began as an initial migration from 904915452/dsh-specify, with credit to that starting point. The current dsh-specify-lite codebase is independently maintained and does not promise compatibility with the predecessor.

Breaking redesign

Version 0.2.0 is the breaking redesign: it uses the DSH-only three-artifact model above.

Legacy artifacts from versions before 0.2.0

Projects using older artifacts must migrate manually: move feature directories into specs/, rename specify.md to spec.md, and move any constitution to .speckit/constitution.md. Discard unsupported brownfield or branch metadata; do not create status.json or checklist.md.