@agentpie/skill 0.1.0 → 0.1.2
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 +5 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -8,12 +8,16 @@ This package exposes `agentpie-skill` and reuses the XiaShe Skill CLI implementa
|
|
|
8
8
|
- manifest file: `agentpie.skill.json`
|
|
9
9
|
- product name: `AgentPie`
|
|
10
10
|
|
|
11
|
+
It does not create upload packages or upload to third-party Skill hubs. The creator's Agent is responsible for packaging and uploading according to the target hub's official rules.
|
|
12
|
+
|
|
11
13
|
## Local development
|
|
12
14
|
|
|
13
15
|
```bash
|
|
14
16
|
node packages/agentpie-skill-cli/bin/agentpie-skill.mjs --help
|
|
15
17
|
node packages/agentpie-skill-cli/bin/agentpie-skill.mjs inspect .
|
|
18
|
+
node packages/agentpie-skill-cli/bin/agentpie-skill.mjs setup . --code AP-XXXX-XXXX --hub generic
|
|
16
19
|
node packages/agentpie-skill-cli/bin/agentpie-skill.mjs attach . --code AP-XXXX-XXXX
|
|
17
|
-
node packages/agentpie-skill-cli/bin/agentpie-skill.mjs pack . --out .agentpie/package
|
|
18
20
|
node packages/agentpie-skill-cli/bin/agentpie-skill.mjs prompt . --hub generic
|
|
21
|
+
node packages/agentpie-skill-cli/bin/agentpie-skill.mjs snippet . --target js
|
|
22
|
+
node packages/agentpie-skill-cli/bin/agentpie-skill.mjs track . --event skill_invoked --dry-run --json
|
|
19
23
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentpie/skill",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"agentpie-skill": "bin/agentpie-skill.mjs"
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"README.md"
|
|
11
11
|
],
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xiashe/skill": "0.1.
|
|
13
|
+
"@xiashe/skill": "0.1.2"
|
|
14
14
|
},
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": ">=20"
|