dijk-skills 1.0.3 → 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-proposal, 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.3",
3
+ "version": "1.0.4",
4
4
  "description": "CLI installer for Dijk skills collection",
5
5
  "type": "module",
6
6
  "bin": {