@agentpie/skill 0.1.4 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +10 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -8,16 +8,24 @@ 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.
14
+
15
+ `agentpie-skill doctor` checks local readiness, and `agentpie-skill verify` sends labeled test events so the Dashboard can show integration health before real runtime traffic arrives.
12
16
 
13
17
  ## Local development
14
18
 
15
19
  ```bash
16
20
  node packages/agentpie-skill-cli/bin/agentpie-skill.mjs --help
17
21
  node packages/agentpie-skill-cli/bin/agentpie-skill.mjs inspect .
22
+ node packages/agentpie-skill-cli/bin/agentpie-skill.mjs doctor .
23
+ node packages/agentpie-skill-cli/bin/agentpie-skill.mjs setup . --code AP-XXXX-XXXX --hub all
18
24
  node packages/agentpie-skill-cli/bin/agentpie-skill.mjs setup . --code AP-XXXX-XXXX --hub generic
25
+ node packages/agentpie-skill-cli/bin/agentpie-skill.mjs verify . --hub generic --dry-run --json
26
+ node packages/agentpie-skill-cli/bin/agentpie-skill.mjs verify . --hub generic
19
27
  node packages/agentpie-skill-cli/bin/agentpie-skill.mjs attach . --code AP-XXXX-XXXX
20
28
  node packages/agentpie-skill-cli/bin/agentpie-skill.mjs prompt . --hub generic
21
29
  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
30
+ node packages/agentpie-skill-cli/bin/agentpie-skill.mjs track . --event skill_invoked --hub coze --dry-run --json
23
31
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentpie/skill",
3
- "version": "0.1.4",
3
+ "version": "0.1.7",
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.7"
14
14
  },
15
15
  "engines": {
16
16
  "node": ">=20"