@iceinvein/agent-skills 0.1.3 → 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/dist/cli/index.js +2 -2
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -60,7 +60,7 @@ function validateManifest(data) {
|
|
|
60
60
|
|
|
61
61
|
// src/cli/github.ts
|
|
62
62
|
var REPO = "iceinvein/agent-skills";
|
|
63
|
-
var BRANCH = "
|
|
63
|
+
var BRANCH = "master";
|
|
64
64
|
var BASE = `https://raw.githubusercontent.com/${REPO}/${BRANCH}`;
|
|
65
65
|
function buildRawUrl(skillName, filePath) {
|
|
66
66
|
return `${BASE}/skills/${skillName}/${filePath}`;
|
|
@@ -490,7 +490,7 @@ async function removeSkill(cwd, skillName) {
|
|
|
490
490
|
|
|
491
491
|
// src/cli/commands/list.ts
|
|
492
492
|
var REPO2 = "iceinvein/agent-skills";
|
|
493
|
-
var BRANCH2 = "
|
|
493
|
+
var BRANCH2 = "master";
|
|
494
494
|
var INDEX_URL = `https://raw.githubusercontent.com/${REPO2}/${BRANCH2}/skills/index.json`;
|
|
495
495
|
async function listSkills() {
|
|
496
496
|
const res = await fetch(INDEX_URL);
|