dijk-skills 1.0.0

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.
Files changed (30) hide show
  1. package/README.md +193 -0
  2. package/agents/.gitkeep +0 -0
  3. package/bin/install.js +90 -0
  4. package/commands/.gitkeep +0 -0
  5. package/package.json +34 -0
  6. package/rules/.gitkeep +0 -0
  7. package/scripts/.gitkeep +0 -0
  8. package/skills/darwin-skill/SKILL.md +492 -0
  9. package/skills/darwin-skill/references/runtime-neutrality.md +68 -0
  10. package/skills/darwin-skill/references/skilllens-evidence.md +142 -0
  11. package/skills/darwin-skill/scripts/screenshot.mjs +67 -0
  12. package/skills/darwin-skill/templates/result-card-dark.html +698 -0
  13. package/skills/darwin-skill/templates/result-card-white.html +444 -0
  14. package/skills/darwin-skill/templates/result-card.html +616 -0
  15. package/skills/darwin-skill/test-prompts.json +20 -0
  16. package/skills/grilling/SKILL.md +7 -0
  17. package/skills/humanizer-zh/SKILL.md +484 -0
  18. package/skills/i-have-adhd/SKILL.md +138 -0
  19. package/skills/i-have-adhd/agents/gemini.toml +24 -0
  20. package/skills/i-have-adhd/agents/openai.yaml +7 -0
  21. package/skills/skill-creator/.clawhub/origin.json +7 -0
  22. package/skills/skill-creator/LICENSE.txt +202 -0
  23. package/skills/skill-creator/SKILL.md +356 -0
  24. package/skills/skill-creator/_meta.json +6 -0
  25. package/skills/skill-creator/references/output-patterns.md +82 -0
  26. package/skills/skill-creator/references/workflows.md +28 -0
  27. package/skills/skill-creator/scripts/init_skill.py +303 -0
  28. package/skills/skill-creator/scripts/package_skill.py +110 -0
  29. package/skills/skill-creator/scripts/quick_validate.py +95 -0
  30. package/workflows/.gitkeep +0 -0
@@ -0,0 +1,444 @@
1
+ <!DOCTYPE html>
2
+ <html lang="zh-CN">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Darwin Skill - 我的Skill进化报告(白金版)</title>
7
+ <link rel="preconnect" href="https://fonts.googleapis.com">
8
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap" rel="stylesheet">
10
+ <style>
11
+ *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
12
+
13
+ body {
14
+ display: flex;
15
+ justify-content: center;
16
+ align-items: flex-start;
17
+ min-height: 100vh;
18
+ background: #FFFFFF;
19
+ font-family: 'Noto Sans SC', 'Inter', sans-serif;
20
+ padding: 0;
21
+ }
22
+
23
+ .card {
24
+ width: 900px;
25
+ min-height: 600px;
26
+ display: flex;
27
+ flex-direction: column;
28
+ background: #FFFFFF;
29
+ color: #1A1A1A;
30
+ }
31
+
32
+ /* ===== 金色渐变工具 ===== */
33
+ .gold-text {
34
+ background: linear-gradient(135deg, #B8860B, #DAA520, #B8860B);
35
+ -webkit-background-clip: text;
36
+ -webkit-text-fill-color: transparent;
37
+ background-clip: text;
38
+ }
39
+ .gold-line {
40
+ height: 1px;
41
+ background: linear-gradient(90deg, #B8860B, #DAA520, #B8860B);
42
+ width: 100%;
43
+ }
44
+
45
+ /* ===== 1. 顶部极简品牌 ===== */
46
+ .top-bar {
47
+ padding: 32px 56px 0;
48
+ display: flex;
49
+ justify-content: space-between;
50
+ align-items: center;
51
+ }
52
+ .top-brand {
53
+ font-size: 13px;
54
+ font-weight: 500;
55
+ color: #CCCCCC;
56
+ font-family: 'Inter', sans-serif;
57
+ letter-spacing: 0.06em;
58
+ }
59
+ .top-date {
60
+ font-size: 13px;
61
+ font-weight: 400;
62
+ color: #CCCCCC;
63
+ font-family: 'Inter', sans-serif;
64
+ }
65
+ .top-line {
66
+ margin: 20px 56px 0;
67
+ }
68
+
69
+ /* ===== 2. 核心成就区 ===== */
70
+ .hero {
71
+ padding: 56px 56px 0;
72
+ text-align: center;
73
+ display: flex;
74
+ flex-direction: column;
75
+ align-items: center;
76
+ gap: 20px;
77
+ }
78
+ .hero-subtitle {
79
+ font-size: 16px;
80
+ font-weight: 400;
81
+ color: #999999;
82
+ letter-spacing: 0.12em;
83
+ }
84
+ .hero-skill-name {
85
+ font-size: 48px;
86
+ font-weight: 900;
87
+ color: #1A1A1A;
88
+ line-height: 1.15;
89
+ letter-spacing: -0.02em;
90
+ }
91
+
92
+ /* 超大分数显示 */
93
+ .score-display {
94
+ display: flex;
95
+ align-items: baseline;
96
+ justify-content: center;
97
+ gap: 16px;
98
+ margin-top: 8px;
99
+ }
100
+ .score-from {
101
+ font-size: 80px;
102
+ font-weight: 300;
103
+ font-family: 'Inter', sans-serif;
104
+ color: #E8E8E8;
105
+ line-height: 1;
106
+ letter-spacing: -0.04em;
107
+ }
108
+ .score-arrow {
109
+ display: inline-block;
110
+ width: 48px;
111
+ height: 2px;
112
+ background: linear-gradient(90deg, #B8860B, #DAA520);
113
+ position: relative;
114
+ top: -30px;
115
+ }
116
+ .score-arrow::after {
117
+ content: '';
118
+ position: absolute;
119
+ right: -2px;
120
+ top: -5px;
121
+ width: 0;
122
+ height: 0;
123
+ border-left: 10px solid #DAA520;
124
+ border-top: 6px solid transparent;
125
+ border-bottom: 6px solid transparent;
126
+ }
127
+ .score-to {
128
+ font-size: 128px;
129
+ font-weight: 900;
130
+ font-family: 'Inter', sans-serif;
131
+ color: #1A1A1A;
132
+ line-height: 1;
133
+ letter-spacing: -0.05em;
134
+ }
135
+
136
+ .delta-display {
137
+ display: inline-block;
138
+ font-size: 48px;
139
+ font-weight: 900;
140
+ font-family: 'Inter', sans-serif;
141
+ letter-spacing: -0.02em;
142
+ background: linear-gradient(135deg, #B8860B, #DAA520, #B8860B);
143
+ -webkit-background-clip: text;
144
+ -webkit-text-fill-color: transparent;
145
+ background-clip: text;
146
+ margin-top: 8px;
147
+ }
148
+
149
+ /* ===== 3. 金色分割线 ===== */
150
+ .divider {
151
+ margin: 36px 56px 0;
152
+ }
153
+
154
+ /* ===== 4. 最大突破区 ===== */
155
+ .breakthrough {
156
+ padding: 40px 56px 0;
157
+ text-align: left;
158
+ }
159
+ .breakthrough-label {
160
+ font-size: 13px;
161
+ font-weight: 700;
162
+ letter-spacing: 0.12em;
163
+ margin-bottom: 12px;
164
+ background: linear-gradient(135deg, #B8860B, #DAA520);
165
+ -webkit-background-clip: text;
166
+ -webkit-text-fill-color: transparent;
167
+ background-clip: text;
168
+ }
169
+ .breakthrough-dim {
170
+ font-size: 36px;
171
+ font-weight: 900;
172
+ color: #1A1A1A;
173
+ margin-bottom: 8px;
174
+ letter-spacing: -0.01em;
175
+ }
176
+ .breakthrough-score-row {
177
+ display: flex;
178
+ align-items: baseline;
179
+ gap: 14px;
180
+ margin-bottom: 12px;
181
+ }
182
+ .breakthrough-from {
183
+ font-size: 48px;
184
+ font-weight: 300;
185
+ font-family: 'Inter', sans-serif;
186
+ color: #E0E0E0;
187
+ line-height: 1;
188
+ }
189
+ .breakthrough-mini-arrow {
190
+ display: inline-block;
191
+ width: 32px;
192
+ height: 2px;
193
+ background: linear-gradient(90deg, #B8860B, #DAA520);
194
+ position: relative;
195
+ top: -16px;
196
+ }
197
+ .breakthrough-mini-arrow::after {
198
+ content: '';
199
+ position: absolute;
200
+ right: -1px;
201
+ top: -4px;
202
+ width: 0;
203
+ height: 0;
204
+ border-left: 8px solid #DAA520;
205
+ border-top: 5px solid transparent;
206
+ border-bottom: 5px solid transparent;
207
+ }
208
+ .breakthrough-to {
209
+ font-size: 64px;
210
+ font-weight: 900;
211
+ font-family: 'Inter', sans-serif;
212
+ color: #1A1A1A;
213
+ line-height: 1;
214
+ }
215
+ .breakthrough-pct {
216
+ font-size: 20px;
217
+ font-weight: 700;
218
+ font-family: 'Inter', sans-serif;
219
+ margin-left: 4px;
220
+ background: linear-gradient(135deg, #B8860B, #DAA520);
221
+ -webkit-background-clip: text;
222
+ -webkit-text-fill-color: transparent;
223
+ background-clip: text;
224
+ }
225
+ .breakthrough-story {
226
+ font-size: 15px;
227
+ font-weight: 400;
228
+ color: #999999;
229
+ line-height: 1.6;
230
+ margin-top: 4px;
231
+ }
232
+
233
+ /* ===== 5. 维度网格 ===== */
234
+ .dims {
235
+ padding: 40px 56px 0;
236
+ text-align: left;
237
+ }
238
+ .dims-grid {
239
+ display: grid;
240
+ grid-template-columns: repeat(4, 1fr);
241
+ gap: 0;
242
+ }
243
+ .dim-cell {
244
+ padding: 20px 16px;
245
+ border-bottom: 1px solid #F0F0F0;
246
+ display: flex;
247
+ flex-direction: column;
248
+ gap: 4px;
249
+ }
250
+ /* 右边框:每行前3个有 */
251
+ .dim-cell:nth-child(4n+1),
252
+ .dim-cell:nth-child(4n+2),
253
+ .dim-cell:nth-child(4n+3) {
254
+ border-right: 1px solid #F0F0F0;
255
+ }
256
+ /* 最后一行去掉底边框 */
257
+ .dim-cell:nth-child(n+5) {
258
+ border-bottom: none;
259
+ }
260
+ .dim-name {
261
+ font-size: 12px;
262
+ font-weight: 500;
263
+ color: #999999;
264
+ letter-spacing: 0.04em;
265
+ }
266
+ .dim-score-row {
267
+ display: flex;
268
+ align-items: baseline;
269
+ gap: 8px;
270
+ }
271
+ .dim-score {
272
+ font-size: 32px;
273
+ font-weight: 900;
274
+ font-family: 'Inter', sans-serif;
275
+ color: #1A1A1A;
276
+ line-height: 1.1;
277
+ letter-spacing: -0.03em;
278
+ }
279
+ .dim-delta {
280
+ font-size: 13px;
281
+ font-weight: 700;
282
+ font-family: 'Inter', sans-serif;
283
+ background: linear-gradient(135deg, #B8860B, #DAA520);
284
+ -webkit-background-clip: text;
285
+ -webkit-text-fill-color: transparent;
286
+ background-clip: text;
287
+ }
288
+
289
+ /* ===== 6. 底部 ===== */
290
+ .footer-line {
291
+ margin: 48px 56px 0;
292
+ }
293
+ .footer {
294
+ padding: 20px 56px 32px;
295
+ display: flex;
296
+ justify-content: space-between;
297
+ align-items: center;
298
+ }
299
+ .footer-left {
300
+ display: flex;
301
+ align-items: center;
302
+ gap: 16px;
303
+ }
304
+ .footer-brand {
305
+ font-size: 14px;
306
+ font-weight: 600;
307
+ color: #CCCCCC;
308
+ font-family: 'Inter', sans-serif;
309
+ letter-spacing: 0.04em;
310
+ }
311
+ .footer-brand .dot {
312
+ background: linear-gradient(135deg, #B8860B, #DAA520);
313
+ -webkit-background-clip: text;
314
+ -webkit-text-fill-color: transparent;
315
+ background-clip: text;
316
+ }
317
+ .footer-slogan {
318
+ font-size: 12px;
319
+ font-weight: 400;
320
+ color: #CCCCCC;
321
+ }
322
+ .footer-url {
323
+ font-size: 12px;
324
+ font-weight: 400;
325
+ color: #CCCCCC;
326
+ font-family: 'Inter', sans-serif;
327
+ }
328
+ </style>
329
+ </head>
330
+ <body>
331
+
332
+ <div class="card">
333
+
334
+ <!-- 1. 顶部极简品牌 -->
335
+ <div class="top-bar">
336
+ <div class="top-brand">Darwin.skill</div>
337
+ <div class="top-date" data-field="date">2026.04.14</div>
338
+ </div>
339
+ <div class="gold-line top-line"></div>
340
+
341
+ <!-- 2. 核心成就区 -->
342
+ <div class="hero">
343
+ <div class="hero-subtitle">我的Skill进化报告</div>
344
+ <div class="hero-skill-name" data-field="skill-name">审校降AI味</div>
345
+ <div class="score-display">
346
+ <span class="score-from" data-field="score-before">72</span>
347
+ <span class="score-arrow"></span>
348
+ <span class="score-to" data-field="score-after">87</span>
349
+ </div>
350
+ <div class="delta-display" data-field="score-delta">+15</div>
351
+ </div>
352
+
353
+ <!-- 3. 金色分割线 -->
354
+ <div class="gold-line divider"></div>
355
+
356
+ <!-- 4. 最大突破 -->
357
+ <div class="breakthrough">
358
+ <div class="breakthrough-label">最大突破</div>
359
+ <div class="breakthrough-dim" data-field="top1-name">指令精度</div>
360
+ <div class="breakthrough-score-row">
361
+ <span class="breakthrough-from" data-field="top1-from">5</span>
362
+ <span class="breakthrough-mini-arrow"></span>
363
+ <span class="breakthrough-to" data-field="top1-to">9</span>
364
+ <span class="breakthrough-pct" data-field="top1-pct">+80%</span>
365
+ </div>
366
+ <div class="breakthrough-story" data-field="top1-story">从模糊指令到精确可执行,指令精度翻了将近一倍</div>
367
+ </div>
368
+
369
+ <!-- 5. 维度网格 -->
370
+ <div class="dims">
371
+ <div class="dims-grid">
372
+ <div class="dim-cell">
373
+ <div class="dim-name">元数据</div>
374
+ <div class="dim-score-row">
375
+ <span class="dim-score">8</span>
376
+ <span class="dim-delta">&#9650; +2</span>
377
+ </div>
378
+ </div>
379
+ <div class="dim-cell">
380
+ <div class="dim-name">工作流</div>
381
+ <div class="dim-score-row">
382
+ <span class="dim-score">8</span>
383
+ <span class="dim-delta">&#9650; +3</span>
384
+ </div>
385
+ </div>
386
+ <div class="dim-cell">
387
+ <div class="dim-name">边界覆盖</div>
388
+ <div class="dim-score-row">
389
+ <span class="dim-score">7</span>
390
+ <span class="dim-delta">&#9650; +3</span>
391
+ </div>
392
+ </div>
393
+ <div class="dim-cell">
394
+ <div class="dim-name">检查点</div>
395
+ <div class="dim-score-row">
396
+ <span class="dim-score">7</span>
397
+ <span class="dim-delta">&#9650; +1</span>
398
+ </div>
399
+ </div>
400
+ <div class="dim-cell">
401
+ <div class="dim-name">指令精度</div>
402
+ <div class="dim-score-row">
403
+ <span class="dim-score">9</span>
404
+ <span class="dim-delta">&#9650; +4</span>
405
+ </div>
406
+ </div>
407
+ <div class="dim-cell">
408
+ <div class="dim-name">资源整合</div>
409
+ <div class="dim-score-row">
410
+ <span class="dim-score">8</span>
411
+ <span class="dim-delta">&#9650; +1</span>
412
+ </div>
413
+ </div>
414
+ <div class="dim-cell">
415
+ <div class="dim-name">整体架构</div>
416
+ <div class="dim-score-row">
417
+ <span class="dim-score">8</span>
418
+ <span class="dim-delta">&#9650; +2</span>
419
+ </div>
420
+ </div>
421
+ <div class="dim-cell">
422
+ <div class="dim-name">实测表现</div>
423
+ <div class="dim-score-row">
424
+ <span class="dim-score">8</span>
425
+ <span class="dim-delta">&#9650; +3</span>
426
+ </div>
427
+ </div>
428
+ </div>
429
+ </div>
430
+
431
+ <!-- 6. 底部 -->
432
+ <div class="gold-line footer-line"></div>
433
+ <div class="footer">
434
+ <div class="footer-left">
435
+ <div class="footer-brand">Darwin<span class="dot">.</span>skill</div>
436
+ <div class="footer-slogan">像训练模型一样进化你的Skills</div>
437
+ </div>
438
+ <div class="footer-url">github.com/alchaincyf/darwin-skill</div>
439
+ </div>
440
+
441
+ </div>
442
+
443
+ </body>
444
+ </html>