skill4agent 1.0.0 → 1.0.1

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
@@ -4,6 +4,10 @@ A command-line tool for installing Agent Skills.
4
4
 
5
5
  ## Quick Start
6
6
 
7
+ > 💡 Find available skills at [skill4agent.com](https://skill4agent.com)
8
+ > - `<source>`: The source repository (e.g., `anthropics/skills`)
9
+ > - `<skill>`: The skill name (e.g., `frontend-design`)
10
+
7
11
  ```bash
8
12
  # Interactive installation (recommended for beginners)
9
13
  npx skill4agent add <source> <skill>
@@ -40,12 +44,3 @@ npx skill4agent install anthropics/skills frontend-design \
40
44
  --dirs ".trae,.cursor" \
41
45
  --method symlink
42
46
  ```
43
-
44
- ## Other Commands
45
-
46
- ```bash
47
- npx skill4agent list # List installed skills
48
- npx skill4agent search <keyword> # Search for skills
49
- npx skill4agent update # Update all skills
50
- npx skill4agent uninstall <name> # Uninstall a skill
51
- ```
package/README_CN.md CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
5
  ## 快速开始
6
6
 
7
+ > 💡 在 [skill4agent.com](https://skill4agent.com) 查找可用技能
8
+ > - `<源仓库>`: 源仓库名称(如 `anthropics/skills`)
9
+ > - `<技能名>`: 技能名称(如 `frontend-design`)
10
+
7
11
  ```bash
8
12
  # 交互式安装(推荐新手,按照步骤选项安装)
9
13
  npx skill4agent add <源仓库> <技能名>
@@ -37,15 +41,6 @@ npx skill4agent install anthropics/skills frontend-design --global
37
41
  npx skill4agent install anthropics/skills frontend-design \
38
42
  --type original \
39
43
  --global \
40
- --agents ".trae,.cursor" \
44
+ --dirs ".trae,.cursor" \
41
45
  --method symlink
42
46
  ```
43
-
44
- ## 其他命令
45
-
46
- ```bash
47
- npx skill4agent list # 查看已安装的技能
48
- npx skill4agent search <关键词> # 搜索技能
49
- npx skill4agent update # 更新所有技能
50
- npx skill4agent uninstall <名> # 卸载技能
51
- ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skill4agent",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "CLI tool for installing agent skills",
5
5
  "main": "dist/main.js",
6
6
  "bin": {