dijk-skills 1.0.3 → 1.0.5
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
|
@@ -19,23 +19,31 @@ npx dijk-skills install [options]
|
|
|
19
19
|
|
|
20
20
|
| Option | Description | Default |
|
|
21
21
|
|--------|-------------|---------|
|
|
22
|
-
| `--modules <list>` | Comma-separated module names | `
|
|
22
|
+
| `--modules <list>` | Comma-separated module names | `all` |
|
|
23
23
|
| `--dir <path>` | Target installation directory | `~/.agents` |
|
|
24
24
|
|
|
25
25
|
### Modules
|
|
26
26
|
|
|
27
|
-
| Module |
|
|
28
|
-
|
|
29
|
-
| `common` |
|
|
30
|
-
| `
|
|
31
|
-
| `
|
|
32
|
-
| `
|
|
27
|
+
| Module | Skill | Description |
|
|
28
|
+
|--------|-------|-------------|
|
|
29
|
+
| `common` | caveman | 超压缩交流模式,在保持技术准确性的同时大幅节省输出 token(分 lite/full/ultra 档) |
|
|
30
|
+
| `common` | grilling | 对计划、决策或想法进行不留情面的连环追问,压力测试你的思路 |
|
|
31
|
+
| `common` | humanizer-zh | 去除文本中的 AI 生成痕迹,使其更自然、更像人类书写 |
|
|
32
|
+
| `common` | i-have-adhd | 面向 ADHD 读者塑造输出:下一步行动置顶、多步任务编号、复述状态、抑制离题、给出时间预估 |
|
|
33
|
+
| `writing` | grill-my-proposal | 把方案往死里问——三阶段递进追问(宏观结构→逐章深挖→交叉验证),动手前压力测试方案 |
|
|
34
|
+
| `writing` | last30days | 研究任意话题近 30 天的真实讨论,覆盖 Reddit、X、YouTube、TikTok、Hacker News、Polymarket、GitHub 与全网 |
|
|
35
|
+
| `writing` | vibe-code-insight | 对软件项目做深度系统分析,产出 `design.md`(系统设计)与 `trend.md`(生态与趋势洞察) |
|
|
36
|
+
| `writing` | vibe-opinion-insight | Human 驱动的 AI Agent 技术洞察框架——Agent 是启发工具,Human 赋予意义并承担责任 |
|
|
37
|
+
| `tools` | handoff | 将当前会话压缩为交接文档,供另一个 agent 接续工作 |
|
|
38
|
+
| `tools` | mcp-builder | 构建高质量 MCP 服务器的指南,支持 Python(FastMCP)与 Node/TypeScript(MCP SDK) |
|
|
39
|
+
| `tools` | skill-creator | 创建、编辑、评测与优化 skill,含触发准确率的基准测试 |
|
|
40
|
+
| `coding` | *(reserved)* | 空——保留给未来的 skill |
|
|
33
41
|
|
|
34
42
|
> Installing any module automatically includes `common`.
|
|
35
43
|
|
|
36
44
|
### Examples
|
|
37
45
|
|
|
38
|
-
Install
|
|
46
|
+
Install all skills to default location:
|
|
39
47
|
```bash
|
|
40
48
|
npx dijk-skills install
|
|
41
49
|
```
|
|
@@ -57,9 +65,10 @@ Skills are installed to `{dir}/skills/{skill-name}/`:
|
|
|
57
65
|
```
|
|
58
66
|
~/.agents/
|
|
59
67
|
└── skills/
|
|
68
|
+
├── caveman/
|
|
60
69
|
├── grilling/
|
|
70
|
+
├── handoff/
|
|
61
71
|
├── humanizer-zh/
|
|
62
72
|
├── i-have-adhd/
|
|
63
|
-
├── darwin-skill/
|
|
64
73
|
└── ...
|
|
65
74
|
```
|
package/bin/dijk-skills.js
CHANGED
|
@@ -13,7 +13,7 @@ const { values, positionals } = parseArgs({
|
|
|
13
13
|
options: {
|
|
14
14
|
modules: {
|
|
15
15
|
type: 'string',
|
|
16
|
-
default: '
|
|
16
|
+
default: 'all'
|
|
17
17
|
},
|
|
18
18
|
dir: {
|
|
19
19
|
type: 'string',
|
|
@@ -37,7 +37,7 @@ Commands:
|
|
|
37
37
|
Options:
|
|
38
38
|
--modules <list> Comma-separated module names or "all"
|
|
39
39
|
Values: coding,common,tools,writing,all
|
|
40
|
-
Default:
|
|
40
|
+
Default: all
|
|
41
41
|
--dir <path> Target installation directory
|
|
42
42
|
Default: ~/.agents
|
|
43
43
|
-h, --help Show this help message
|
package/package.json
CHANGED
|
@@ -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.
|