@agentpie/skill 0.1.1 → 0.1.4
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 +1 -1
- package/bin/agentpie-skill.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Global creator-facing AgentPie Skill registry helper.
|
|
|
4
4
|
|
|
5
5
|
This package exposes `agentpie-skill` and reuses the XiaShe Skill CLI implementation with AgentPie defaults:
|
|
6
6
|
|
|
7
|
-
- registry base: `https://
|
|
7
|
+
- registry base: `https://actions.agentpie.app`
|
|
8
8
|
- manifest file: `agentpie.skill.json`
|
|
9
9
|
- product name: `AgentPie`
|
|
10
10
|
|
package/bin/agentpie-skill.mjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
process.env.XIASHE_SKILL_CLI_NAME = process.env.XIASHE_SKILL_CLI_NAME || 'agentpie-skill';
|
|
4
4
|
process.env.XIASHE_SKILL_PRODUCT_NAME = process.env.XIASHE_SKILL_PRODUCT_NAME || 'AgentPie';
|
|
5
5
|
process.env.XIASHE_SKILL_REGISTRY_PROVIDER = process.env.XIASHE_SKILL_REGISTRY_PROVIDER || 'agentpie';
|
|
6
|
-
process.env.XIASHE_SKILL_DEFAULT_BASE_URL = process.env.XIASHE_SKILL_DEFAULT_BASE_URL || 'https://
|
|
6
|
+
process.env.XIASHE_SKILL_DEFAULT_BASE_URL = process.env.XIASHE_SKILL_DEFAULT_BASE_URL || 'https://actions.agentpie.app';
|
|
7
7
|
process.env.XIASHE_SKILL_MANIFEST_FILE = process.env.XIASHE_SKILL_MANIFEST_FILE || 'agentpie.skill.json';
|
|
8
8
|
process.env.XIASHE_SKILL_WORK_DIR = process.env.XIASHE_SKILL_WORK_DIR || '.agentpie';
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentpie/skill",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
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.4"
|
|
14
14
|
},
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": ">=20"
|