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 +1 -1
- package/bin/run.js +4 -2
- package/package.json +2 -2
- package/scripts/install.js +1 -1
package/Cargo.toml
CHANGED
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), {
|
|
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
package/scripts/install.js
CHANGED
|
@@ -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.
|
|
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
|