@gabeosx/skx 1.1.2 → 1.1.3
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/gabeosx-skx-1.1.3.tgz +0 -0
- package/dist/ui.js +1 -4
- package/package.json +3 -3
- package/dist/gabeosx-skx-1.1.2.tgz +0 -0
|
Binary file
|
package/dist/ui.js
CHANGED
|
@@ -19,10 +19,7 @@ export async function startInteractiveMode() {
|
|
|
19
19
|
// We need to resolve the target directory using the adapter.
|
|
20
20
|
const targetDir = await agent.getInstallationPath(scope, process.cwd());
|
|
21
21
|
const installer = new SkillInstaller();
|
|
22
|
-
|
|
23
|
-
// For now, we assume the skill is already available or simulate it.
|
|
24
|
-
const dummySource = '/tmp/skx-dummy-source'; // Placeholder
|
|
25
|
-
await installer.install(dummySource, targetDir);
|
|
22
|
+
await installer.installFromUrl(skill.githubRepoUrl, targetDir);
|
|
26
23
|
s.stop(`Successfully installed ${skill.name}!`);
|
|
27
24
|
console.log(chalk.bold('\nPost-Installation Instructions:'));
|
|
28
25
|
console.log(agent.getPostInstallInstructions());
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gabeosx/skx",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "The CLI tool for managing Agent Skills",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"bin": {
|
|
8
|
-
"skx": "dist/
|
|
8
|
+
"skx": "dist/index.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "tsc -p tsconfig.build.json",
|
|
17
|
-
"start": "node dist/
|
|
17
|
+
"start": "node dist/index.js",
|
|
18
18
|
"test": "vitest run",
|
|
19
19
|
"test:watch": "vitest",
|
|
20
20
|
"lint": "eslint .",
|
|
Binary file
|