dsh-ecc-skills 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.en.md +80 -0
- package/README.md +11 -0
- package/cordis.patch.yml +1 -1
- package/package.json +2 -1
package/README.en.md
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# dsh-ecc
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/dsh-ecc-skills)
|
|
4
|
+
[](https://github.com/gongyijie85/dsh-ecc/releases)
|
|
5
|
+
[](https://github.com/gongyijie85/dsh-ecc/actions/workflows/ci.yml)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
|
|
8
|
+
<div align="center">
|
|
9
|
+
|
|
10
|
+
**English** | [简体中文](README.md)
|
|
11
|
+
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
[affaan-m/ECC](https://github.com/affaan-m/ECC) (the ~227k⭐ "operator system",
|
|
15
|
+
285 skills) skills for the **DeepSeek Harness (DSH)** — a progressive port to
|
|
16
|
+
DSH's Cordis plugin architecture.
|
|
17
|
+
|
|
18
|
+
> **Unofficial port**: skill content adapted from
|
|
19
|
+
> [affaan-m/ECC](https://github.com/affaan-m/ECC) (MIT, © Affaan Mustafa).
|
|
20
|
+
> ECC's Claude Code-specific infrastructure (agents/hooks/commands/mcp-configs)
|
|
21
|
+
> is not part of this package.
|
|
22
|
+
|
|
23
|
+
## Install
|
|
24
|
+
|
|
25
|
+
```sh
|
|
26
|
+
# npm (the plain `dsh-ecc` npm name is taken by another project; this port
|
|
27
|
+
# publishes as dsh-ecc-skills)
|
|
28
|
+
dsh plugin --profile web add dsh-ecc-skills
|
|
29
|
+
|
|
30
|
+
# GitHub
|
|
31
|
+
dsh plugin --profile web add github:gongyijie85/dsh-ecc
|
|
32
|
+
|
|
33
|
+
# Local folder (development)
|
|
34
|
+
dsh plugin --profile web add D:\plugins\dsh-ecc
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Restart the profile (`dsh web`) — the skills then load with the `skill` tool.
|
|
38
|
+
|
|
39
|
+
## Port status: 273 / 285 skills (95.8%)
|
|
40
|
+
|
|
41
|
+
- **v0.1.0** ✅ 20 skills — engineering methodology, agent systems, foundations
|
|
42
|
+
- **v0.2.0** ✅ 68 skills — framework/language patterns (react, vue, django,
|
|
43
|
+
laravel, springboot, quarkus, kotlin, swift, go, rust, ...), data &
|
|
44
|
+
architecture
|
|
45
|
+
- **v0.3.0** ✅ 50 skills — orchestration/automation/ops (orch-* six-pack,
|
|
46
|
+
council, dev-team, e2e-testing, browser-qa, repo-scan, benchmark series,
|
|
47
|
+
budget advisors, canary-watch, production-audit, ...)
|
|
48
|
+
- **v0.4.0** ✅ 135 skills — vertical domains (healthcare, homelab, scientific,
|
|
49
|
+
finance, design/content, network ops, supply chain, marketing, research &
|
|
50
|
+
data)
|
|
51
|
+
- **Not ported (12)**: 6 skills depending on `/ecc:*` commands/hooks
|
|
52
|
+
(ecc-guide, ecc-recipes, gateguard, plan-orchestrate, strategic-compact,
|
|
53
|
+
continuous-learning-v2) and 7 with companion files — unless a hooks/commands
|
|
54
|
+
bridge layer is built later.
|
|
55
|
+
|
|
56
|
+
## Adaptation notes
|
|
57
|
+
|
|
58
|
+
- `skills/<name>/SKILL.md` copied verbatim (standard format, frontmatter carries
|
|
59
|
+
`metadata.origin: ECC`).
|
|
60
|
+
- Zero harness-specific references in all 273 ported skills; only 2 command
|
|
61
|
+
references were renamed to DSH bare names in v0.1 (`/bug-check` →
|
|
62
|
+
`bug-check`, `/prompt-optimize` → `prompt-optimizer`).
|
|
63
|
+
- Skill identity comes from the frontmatter `name` (e.g. the five
|
|
64
|
+
`scientific-*` directories expose `pubmed-database`, `uspto-database`,
|
|
65
|
+
`gget`, `literature-review`, `scholar-evaluation`).
|
|
66
|
+
- All skills model+user invocable. Provider parses folded YAML frontmatter
|
|
67
|
+
natively; zero runtime dependencies.
|
|
68
|
+
|
|
69
|
+
## How it works / adding skills
|
|
70
|
+
|
|
71
|
+
Host-layer `ctx.skills.registerProvider` (same pattern as
|
|
72
|
+
[mattpocock-skills-dsh](https://github.com/gongyijie85/mattpocock-skills-dsh)).
|
|
73
|
+
Drop a `skills/<kebab-name>/SKILL.md` and it is auto-discovered. Verify with
|
|
74
|
+
`npm run verify` (273/273).
|
|
75
|
+
|
|
76
|
+
## License
|
|
77
|
+
|
|
78
|
+
MIT. Skill content © Affaan Mustafa
|
|
79
|
+
([ECC](https://github.com/affaan-m/ECC)); DSH port © dsh-ecc contributors. See
|
|
80
|
+
[LICENSE](LICENSE).
|
package/README.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# dsh-ecc
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/dsh-ecc-skills)
|
|
4
|
+
[](https://github.com/gongyijie85/dsh-ecc/releases)
|
|
5
|
+
[](https://github.com/gongyijie85/dsh-ecc/actions/workflows/ci.yml)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
|
|
8
|
+
<div align="center">
|
|
9
|
+
|
|
10
|
+
[English](README.en.md) | **简体中文**
|
|
11
|
+
|
|
12
|
+
</div>
|
|
13
|
+
|
|
3
14
|
把 [affaan-m/ECC](https://github.com/affaan-m/ECC)(~227k⭐ 的"操作员系统",285 个
|
|
4
15
|
技能)渐进移植到 **DeepSeek Harness (DSH)** 的 Cordis 插件架构。
|
|
5
16
|
|
package/cordis.patch.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-ecc-skills",
|
|
3
3
|
"description": "ECC (227k-star operator system) skills for DeepSeek Harness — progressive port: v0.1 ships 20 curated single-file skills (agentic engineering, evaluation, testing, patterns, docs); 270+ more follow. Adapted from affaan-m/ECC (MIT)",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.1",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "lib/index.js",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"skills",
|
|
15
15
|
"cordis.patch.yml",
|
|
16
16
|
"README.md",
|
|
17
|
+
"README.en.md",
|
|
17
18
|
"LICENSE"
|
|
18
19
|
],
|
|
19
20
|
"license": "MIT",
|