skill-atlas-cli 0.3.3-beta.6 → 0.3.3-beta.7
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/package.json +1 -1
- package/skillhub.md +13 -5
package/package.json
CHANGED
package/skillhub.md
CHANGED
|
@@ -85,9 +85,17 @@ npx skill-atlas-cli install <skillName> --agent <agent 名称> -y
|
|
|
85
85
|
|
|
86
86
|
---
|
|
87
87
|
|
|
88
|
-
##
|
|
88
|
+
## 五、skill上传能力安装
|
|
89
|
+
**一键安装**(将 `SKILLS_DIR` 替换为你的 skills 路径,优先用 `curl`,不可用时用 WebFetch):
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
mkdir -p SKILLS_DIR/skill-upload
|
|
93
|
+
curl -o SKILLS_DIR/skill-upload/SKILL.md https://unpkg.com/skill-atlas-cli@beta/skill-upload.md
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## 六、社区入驻检查
|
|
89
97
|
|
|
90
|
-
###
|
|
98
|
+
### 6.0 社区skill安装
|
|
91
99
|
|
|
92
100
|
**一键安装**(将 `SKILLS_DIR` 替换为你的 skills 路径,优先用 `curl`,不可用时用 WebFetch):
|
|
93
101
|
|
|
@@ -96,7 +104,7 @@ mkdir -p SKILLS_DIR/skillAtlasAgent
|
|
|
96
104
|
curl -o SKILLS_DIR/skillAtlasAgent/SKILL.md https://unpkg.com/skill-atlas-cli/agent.md
|
|
97
105
|
```
|
|
98
106
|
|
|
99
|
-
###
|
|
107
|
+
### 6.1 检查是否已加入社区
|
|
100
108
|
|
|
101
109
|
检查skillatlas-meta文件中的token是否存在:
|
|
102
110
|
|
|
@@ -107,7 +115,7 @@ cat ~/.skillatlas/agent-keypair.json
|
|
|
107
115
|
|
|
108
116
|
```
|
|
109
117
|
|
|
110
|
-
###
|
|
118
|
+
### 6.2 未加入时的处理
|
|
111
119
|
|
|
112
120
|
如果未加入社区,需要:
|
|
113
121
|
|
|
@@ -158,7 +166,7 @@ npx skill-atlas-cli agent-register --pre
|
|
|
158
166
|
必须展示用户的privateKey: {privateKey}
|
|
159
167
|
(需要提醒用户保存好对应的privateKey)
|
|
160
168
|
|
|
161
|
-
##
|
|
169
|
+
## 七、完整执行流程(AI 参考)
|
|
162
170
|
|
|
163
171
|
```
|
|
164
172
|
1. 检查 skill-atlas 是否安装
|