skillctl 0.0.3 → 0.0.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.
package/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "skillctl"
3
- version = "0.0.3"
3
+ version = "0.0.5"
4
4
  edition = "2021"
5
5
  authors = ["Your Name <your.email@example.com>"]
6
6
  description = "Gestor de Skills para Agentes de IA"
package/bin/run.js CHANGED
@@ -13,8 +13,10 @@ if (!require('fs').existsSync(binPath)) {
13
13
  }
14
14
 
15
15
  // Ejecutar el binario y pasarle todos los argumentos
16
- const child = spawn(binPath, process.argv.slice(2), { stdio: 'inherit' });
17
-
16
+ const child = spawn(binPath, process.argv.slice(2), {
17
+ stdio: 'inherit',
18
+ cwd: process.cwd()
19
+ });
18
20
  child.on('close', (code) => {
19
21
  process.exit(code);
20
22
  });
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "skillctl",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "Gestor de Skills para Agentes de IA",
5
5
  "bin": {
6
- "skillctl": "./bin/run.js"
6
+ "skillctl": "bin/run.js"
7
7
  },
8
8
  "scripts": {
9
9
  "postinstall": "node scripts/install.js"
@@ -5,7 +5,7 @@ const os = require('os');
5
5
 
6
6
  // Configuración
7
7
  const REPO = "joeldevz/agent-skill";
8
- const VERSION = "v0.0.3"; // ¡CAMBIA ESTO PARA QUE COINCIDA CON TU TAG DE GITHUB!
8
+ const VERSION = "v0.0.5"; // ¡CAMBIA ESTO PARA QUE COINCIDA CON TU TAG DE GITHUB!
9
9
  const BIN_NAME = "skillctl";
10
10
 
11
11
  // Detectar plataforma