dijk-skills 1.0.4 → 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 | `common` |
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 | Skills |
28
- |--------|--------|
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
- | `coding` | *(empty, reserved for future skills)* |
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 common skills to default location:
46
+ Install all skills to default location:
39
47
  ```bash
40
48
  npx dijk-skills install
41
49
  ```
@@ -13,7 +13,7 @@ const { values, positionals } = parseArgs({
13
13
  options: {
14
14
  modules: {
15
15
  type: 'string',
16
- default: 'common'
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: common
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dijk-skills",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "CLI installer for Dijk skills collection",
5
5
  "type": "module",
6
6
  "bin": {
File without changes