@agentpie/skill 0.1.4 → 0.1.5

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.
Files changed (2) hide show
  1. package/README.md +5 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -8,16 +8,19 @@ 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.
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. `setup --hub all` writes one unified `.agentpie/UPLOAD_HANDOFF.md` plus platform-specific internal checklists for Red Skill, ClawHub, SkillHub, Claude, Dify, Coze, and generic targets.
12
+
13
+ When a platform provides its own upload prompt or CLI, that official flow remains authoritative. Paste the official prompt to the Agent and tell it to follow `.agentpie/UPLOAD_HANDOFF.md`; the Agent should merge AgentPie registry disclosure and analytics only where the platform allows it.
12
14
 
13
15
  ## Local development
14
16
 
15
17
  ```bash
16
18
  node packages/agentpie-skill-cli/bin/agentpie-skill.mjs --help
17
19
  node packages/agentpie-skill-cli/bin/agentpie-skill.mjs inspect .
20
+ node packages/agentpie-skill-cli/bin/agentpie-skill.mjs setup . --code AP-XXXX-XXXX --hub all
18
21
  node packages/agentpie-skill-cli/bin/agentpie-skill.mjs setup . --code AP-XXXX-XXXX --hub generic
19
22
  node packages/agentpie-skill-cli/bin/agentpie-skill.mjs attach . --code AP-XXXX-XXXX
20
23
  node packages/agentpie-skill-cli/bin/agentpie-skill.mjs prompt . --hub generic
21
24
  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
25
+ node packages/agentpie-skill-cli/bin/agentpie-skill.mjs track . --event skill_invoked --hub coze --dry-run --json
23
26
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentpie/skill",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
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.4"
13
+ "@xiashe/skill": "0.1.5"
14
14
  },
15
15
  "engines": {
16
16
  "node": ">=20"