@zhouhao4221/devflow-skills 0.3.4 → 0.3.6
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 +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,16 +6,16 @@ DevFlow 技能包 —— 80 个 AI 技能指令,一键安装到 7 种 AI 工
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# 安装全部技能
|
|
9
|
-
npx devflow-skills install --tool opencode --all
|
|
9
|
+
npx @zhouhao4221/devflow-skills install --tool opencode --all
|
|
10
10
|
|
|
11
11
|
# 安装指定插件
|
|
12
|
-
npx devflow-skills install --tool cursor --plugin req
|
|
12
|
+
npx @zhouhao4221/devflow-skills install --tool cursor --plugin req
|
|
13
13
|
|
|
14
14
|
# 安装单个技能
|
|
15
|
-
npx devflow-skills install --tool claude --skill req-dev
|
|
15
|
+
npx @zhouhao4221/devflow-skills install --tool claude --skill req-dev
|
|
16
16
|
|
|
17
17
|
# 查看所有技能
|
|
18
|
-
npx devflow-skills list
|
|
18
|
+
npx @zhouhao4221/devflow-skills list
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
首次运行 `npx` 即用,无需安装任何依赖。
|
|
@@ -39,7 +39,7 @@ Claude Code 使用分层目录保留插件作用域;其余工具采用 `插件
|
|
|
39
39
|
### install — 安装技能
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
npx devflow-skills install --tool <工具名> [--all | --plugin <插件> | --skill <名>] [--dir <路径>] [-g] [--symlink]
|
|
42
|
+
npx @zhouhao4221/devflow-skills install --tool <工具名> [--all | --plugin <插件> | --skill <名>] [--dir <路径>] [-g] [--symlink]
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
| 参数 | 说明 |
|
|
@@ -55,20 +55,20 @@ npx devflow-skills install --tool <工具名> [--all | --plugin <插件> | --ski
|
|
|
55
55
|
### list — 列出技能
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
|
-
npx devflow-skills list [--plugin <插件>] [--filter <关键词>] [--format json]
|
|
58
|
+
npx @zhouhao4221/devflow-skills list [--plugin <插件>] [--filter <关键词>] [--format json]
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
### uninstall — 卸载技能
|
|
62
62
|
|
|
63
63
|
```bash
|
|
64
|
-
npx devflow-skills uninstall --tool <工具名> [--all | --skill <名>] [--dir <路径>] [-g]
|
|
64
|
+
npx @zhouhao4221/devflow-skills uninstall --tool <工具名> [--all | --skill <名>] [--dir <路径>] [-g]
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
### add — 从 GitHub 仓库安装
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
|
-
npx devflow-skills add <owner/repo> --list # 浏览仓库中的技能
|
|
71
|
-
npx devflow-skills add <owner/repo> --tool cursor --all # 安装全部
|
|
70
|
+
npx @zhouhao4221/devflow-skills add <owner/repo> --list # 浏览仓库中的技能
|
|
71
|
+
npx @zhouhao4221/devflow-skills add <owner/repo> --tool cursor --all # 安装全部
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
## 技能分类
|
|
@@ -83,7 +83,7 @@ npx devflow-skills add <owner/repo> --tool cursor --all # 安装全部
|
|
|
83
83
|
|
|
84
84
|
## 与 devflow-claude 的关系
|
|
85
85
|
|
|
86
|
-
|
|
86
|
+
本仓库是技能的唯一事实来源,[devflow-claude](https://github.com/zhouhao4221/devflow-claude)(Claude Code 专属插件)通过 `scripts/setup-claude.sh` 从此仓库同步技能文件。
|
|
87
87
|
|
|
88
88
|
## 手动安装(适配器脚本)
|
|
89
89
|
|