dijk-skills 1.0.2 → 1.0.4

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.md CHANGED
@@ -26,9 +26,9 @@ npx dijk-skills install [options]
26
26
 
27
27
  | Module | Skills |
28
28
  |--------|--------|
29
- | `common` | grilling, humanizer-zh, i-have-adhd |
30
- | `writing` | grill-my-insight, vibe-opinion-insight |
31
- | `tools` | darwin-skill, skill-creator |
29
+ | `common` | caveman, grilling, handoff, humanizer-zh, i-have-adhd |
30
+ | `writing` | grill-my-proposal, last30days, vibe-code-insight, vibe-opinion-insight |
31
+ | `tools` | mcp-builder, skill-creator |
32
32
  | `coding` | *(empty, reserved for future skills)* |
33
33
 
34
34
  > Installing any module automatically includes `common`.
@@ -57,9 +57,10 @@ Skills are installed to `{dir}/skills/{skill-name}/`:
57
57
  ```
58
58
  ~/.agents/
59
59
  └── skills/
60
+ ├── caveman/
60
61
  ├── grilling/
62
+ ├── handoff/
61
63
  ├── humanizer-zh/
62
64
  ├── i-have-adhd/
63
- ├── darwin-skill/
64
65
  └── ...
65
66
  ```
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: handoff
3
+ description: Compact the current conversation into a handoff document for another agent to pick up.
4
+ argument-hint: "What will the next session be used for?"
5
+ disable-model-invocation: true
6
+ ---
7
+
8
+ Write a handoff document summarising the current conversation so a fresh agent can continue the work. Save to the temporary directory of the user's OS - not the current workspace.
9
+
10
+ Include a "suggested skills" section in the document, naming which skills the next agent should call the Skill tool for.
11
+
12
+ Do not duplicate content already captured in other artifacts (specs, plans, ADRs, issues, commits, diffs). Reference them by path or URL instead.
13
+
14
+ Redact any sensitive information, such as API keys, passwords, or personally identifiable information.
15
+
16
+ If the user passed arguments, treat them as a description of what the next session will focus on and tailor the doc accordingly.
@@ -0,0 +1,5 @@
1
+ interface:
2
+ display_name: "Handoff"
3
+ short_description: "Compact a conversation into a handoff"
4
+ policy:
5
+ allow_implicit_invocation: false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dijk-skills",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "CLI installer for Dijk skills collection",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: grill-my-insight
2
+ name: grill-my-proposal
3
3
  description: 把方案往死里问——三阶段递进追问(宏观结构→逐章深挖→交叉验证),从骨架到血肉逐层施压。一次只问一个问题,追问意图而非建议,不做决策。当用户想在动手前压力测试方案,或使用"挑战"、"拷问"、"作为蓝军"等触发词时启用。
4
4
  ---
5
5
  对方案进行三阶段递进追问,从骨架到血肉逐层施压,直到双方理解完全一致。
@@ -13,15 +13,14 @@ description: >
13
13
 
14
14
  ## Vibe 阶段
15
15
 
16
- 在开始大规模研究之前,和用户简短对话,明确:
17
- - 读者是谁(架构师?决策者?学习者?)
18
- - 最想搞懂什么(系统怎么运作?和竞品的区别?值不值得押注?)
19
- - 有没有特别关注的维度(安全?性能?可扩展性?)
20
- - 架构视图偏好(4+1?C4?还是让分析者自选?)
16
+ 目标:最少交互,最大推断。
21
17
 
22
- 这些问题决定了分析深度、视图组合和侧重点。不要假设,要问。
18
+ 1. **先读 prompt 推断** — 用户提到竞品就是竞品视角,说了"安全"就是安全维度
19
+ 2. **快速侦察项目** — README、目录结构、规模决定分析深度(500 行工具库不需要 4+1)
20
+ 3. **只补缺失维度** — 读者画像 / 核心关注 / 侧重维度 / 视图偏好,能推断的不问,最多问 2 个
21
+ 4. **展示推断,邀请纠正** — "判断你是 X 视角,重点 Y",不要弹预设选项
23
22
 
24
- 对话结束后,将结论写入 `insight/{slug}/brief.md`。后续每次触发 skill 时先读 brief.md 恢复意图,不需要重新对话。
23
+ 结论写入 `insight/{slug}/brief.md`,后续触发先读 brief 恢复意图。
25
24
 
26
25
  ## 交付物
27
26