@codehourra/llm-iwiki 0.1.2 → 0.1.3
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 +2 -0
- package/dist/index.js +129 -126
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -59,9 +59,11 @@ llm-iwiki skills init # 写入 AI 助手 skill
|
|
|
59
59
|
把 AI 编程助手使用的 skill 模板写入当前项目,让 Claude Code / Codex / Cursor 能按规范驱动上面的 `summarize` / `experiences` 工作流。
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
|
+
llm-iwiki skills # 列出可用 target 与将写入的 skill(等同 skills list)
|
|
62
63
|
llm-iwiki skills init [--target codex|claude-code|cursor] [--force] [--dry-run]
|
|
63
64
|
```
|
|
64
65
|
|
|
66
|
+
- 裸 `skills` / `skills list`:只读列出可用 target 和将写入 `.agents/skills/` 的 skill,不落盘。
|
|
65
67
|
- `--target`:只写入指定助手的模板;省略则写入全部三种。
|
|
66
68
|
- `--force`:覆盖已存在的同名文件(默认跳过)。
|
|
67
69
|
- `--dry-run`:只预演将写入/跳过的文件,不落盘。
|