@mengyuly/dsh-ponytail 0.3.0 → 0.3.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/CHANGELOG.md +11 -0
- package/README.md +3 -3
- package/lib/index.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
5
5
|
|
|
6
6
|
## Unreleased
|
|
7
7
|
|
|
8
|
+
## [0.3.1] - 2026-08-26
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- E2E 规则组补充防误解澄清句:「It does not mean every layer must change:
|
|
13
|
+
the change must be complete across the layers it touches.」——防止把
|
|
14
|
+
「最小完整端到端变更」误解为必须修改所有层(真实数据流那条的补充)。
|
|
15
|
+
其余规则文本不变;审计确认 Full/Ultra 的 E2E 组、Lite 架构保护句、
|
|
16
|
+
Gain 四段口径、主 Skill 指针卡与 modelInvocable:false、docs smoke
|
|
17
|
+
口径(null≠0/环境阻断/静态vs动态/高方差)均已符合,未重复修改。
|
|
18
|
+
|
|
8
19
|
## [0.3.0] - 2026-08-26
|
|
9
20
|
|
|
10
21
|
### Added
|
package/README.md
CHANGED
|
@@ -101,9 +101,9 @@ prompt 与推理开销变得更贵。
|
|
|
101
101
|
|
|
102
102
|
| 档位 | 字符数 | UTF-8 字节 | 说明 |
|
|
103
103
|
|------|--------|-----------|------|
|
|
104
|
-
| lite |
|
|
105
|
-
| full |
|
|
106
|
-
| ultra |
|
|
104
|
+
| lite | 1744 | 1746 | 实测生成 |
|
|
105
|
+
| full | 2975 | 2993 | 实测生成 |
|
|
106
|
+
| ultra | 2818 | 2834 | 实测生成 |
|
|
107
107
|
| off | 0 | 0 | 不注入 |
|
|
108
108
|
|
|
109
109
|
这些是 **Prompt 体积测量,不是账单金额,也不是对所有模型成立的节省
|
package/lib/index.js
CHANGED
|
@@ -1549,6 +1549,7 @@ const E2E_RULES = [
|
|
|
1549
1549
|
"- Do not redesign transport, storage, API shape, or persistence when the task only asks for a local UI or behavior change.",
|
|
1550
1550
|
"- A locally smaller implementation that changes the system contract is not smaller overall.",
|
|
1551
1551
|
"- Prefer the smallest complete change across the real data flow: input → state → validation → payload → API → persistence → response/UI.",
|
|
1552
|
+
"- It does not mean every layer must change: the change must be complete across the layers it touches.",
|
|
1552
1553
|
"- Do not leave a UI-only field, unused state, placeholder path, or disconnected payload merely because it produces a smaller diff."
|
|
1553
1554
|
].join("\n");
|
|
1554
1555
|
const MODE_RULES = {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mengyuly/dsh-ponytail",
|
|
3
3
|
"description": "Lazy senior dev mode for DeepSeek Harness: always-on minimal-code ruleset, intensity switching, and short review/audit/debt/gain/help skills",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|