@skill4agent/cli 1.0.12 → 1.0.13
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 +13 -0
- package/README_CN.md +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,6 +44,9 @@ npm install -g @skill4agent/cli
|
|
|
44
44
|
> - `<skill>`: The skill name (e.g., `frontend-design`)
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
+
# Search for skills
|
|
48
|
+
npx skill4agent search <keyword> [options]
|
|
49
|
+
|
|
47
50
|
# Interactive installation (recommended for beginners)
|
|
48
51
|
npx skill4agent add <source> <skill>
|
|
49
52
|
|
|
@@ -133,6 +136,16 @@ npx skill4agent uninstall <skill> --project
|
|
|
133
136
|
|
|
134
137
|
## Examples
|
|
135
138
|
|
|
139
|
+
### Search Examples
|
|
140
|
+
|
|
141
|
+
```bash
|
|
142
|
+
# Search for skills (default 10 results)
|
|
143
|
+
npx skill4agent search react
|
|
144
|
+
|
|
145
|
+
# Search with custom limit
|
|
146
|
+
npx skill4agent search react -l 5
|
|
147
|
+
```
|
|
148
|
+
|
|
136
149
|
### Installation Examples
|
|
137
150
|
|
|
138
151
|
```bash
|
package/README_CN.md
CHANGED
|
@@ -44,6 +44,9 @@ npm install -g @skill4agent/cli
|
|
|
44
44
|
> - `<技能名>`: 技能名称(如 `frontend-design`)
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
+
# 搜索在线技能
|
|
48
|
+
npx skill4agent search <关键词> [选项]
|
|
49
|
+
|
|
47
50
|
# 交互式安装(推荐新手,按照步骤选项安装)
|
|
48
51
|
npx skill4agent add <源仓库> <技能名>
|
|
49
52
|
|
|
@@ -133,6 +136,16 @@ npx skill4agent uninstall <技能名> --project
|
|
|
133
136
|
|
|
134
137
|
## 示例
|
|
135
138
|
|
|
139
|
+
### 搜索示例
|
|
140
|
+
|
|
141
|
+
```bash
|
|
142
|
+
# 搜索技能(默认返回10条结果)
|
|
143
|
+
npx skill4agent search 前端设计
|
|
144
|
+
|
|
145
|
+
# 搜索技能并指定返回数量
|
|
146
|
+
npx skill4agent search 前端设计 -l 5
|
|
147
|
+
```
|
|
148
|
+
|
|
136
149
|
### 安装示例
|
|
137
150
|
|
|
138
151
|
```bash
|