@johpaz/hive-agents 0.0.36 → 0.0.37
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 +16 -16
- package/dist/hive.js +109 -90
- package/dist/tool-worker.js +218406 -0
- package/package.json +3 -2
- package/packages/cli/src/commands/gateway.ts +1 -1
- package/packages/cli/src/commands/onboard.ts +1 -1
- package/packages/core/src/tool-runtime/index.ts +29 -3
package/README.md
CHANGED
|
@@ -120,7 +120,7 @@ docker run -d \
|
|
|
120
120
|
-v hive-data:/root/.hive \
|
|
121
121
|
--name hive \
|
|
122
122
|
--restart unless-stopped \
|
|
123
|
-
johpaz/hive:0.0.
|
|
123
|
+
johpaz/hive:0.0.37
|
|
124
124
|
```
|
|
125
125
|
|
|
126
126
|
**Variables de entorno disponibles:**
|
|
@@ -194,10 +194,10 @@ En el equipo donde tienes conexión a internet:
|
|
|
194
194
|
|
|
195
195
|
```bash
|
|
196
196
|
# Descargar la imagen si no la tienes
|
|
197
|
-
docker pull johpaz/hive:0.0.
|
|
197
|
+
docker pull johpaz/hive:0.0.37
|
|
198
198
|
|
|
199
199
|
# Exportar a archivo tar (cabe en cualquier USB de 512 MB+)
|
|
200
|
-
docker save johpaz/hive:0.0.
|
|
200
|
+
docker save johpaz/hive:0.0.37 -o /media/usb/hive-image.tar
|
|
201
201
|
```
|
|
202
202
|
|
|
203
203
|
**Paso 2 — Crear la estructura en la USB**
|
|
@@ -215,7 +215,7 @@ Crea el `docker-compose.yml` en la USB con el volumen apuntando a la USB:
|
|
|
215
215
|
```yaml
|
|
216
216
|
services:
|
|
217
217
|
hive:
|
|
218
|
-
image: johpaz/hive:0.0.
|
|
218
|
+
image: johpaz/hive:0.0.37
|
|
219
219
|
ports:
|
|
220
220
|
- "18790:18790"
|
|
221
221
|
volumes:
|
|
@@ -294,11 +294,11 @@ Descarga manual de cualquier plataforma o versión específica.
|
|
|
294
294
|
|
|
295
295
|
| Plataforma | Archivo | Descarga directa |
|
|
296
296
|
|------------|---------|------------------|
|
|
297
|
-
| Linux x64 | `hive-v0.0.
|
|
298
|
-
| Linux ARM64 (Raspberry Pi, etc.) | `hive-v0.0.
|
|
299
|
-
| macOS Apple Silicon (M1/M2/M3/M4) | `hive-v0.0.
|
|
300
|
-
| macOS Intel | `hive-v0.0.
|
|
301
|
-
| Windows x64 | `hive-v0.0.
|
|
297
|
+
| Linux x64 | `hive-v0.0.37-linux-x64` | [Descargar](https://github.com/johpaz/hive/releases/latest/download/hive-v0.0.37-linux-x64) |
|
|
298
|
+
| Linux ARM64 (Raspberry Pi, etc.) | `hive-v0.0.37-linux-arm64` | [Descargar](https://github.com/johpaz/hive/releases/latest/download/hive-v0.0.37-linux-arm64) |
|
|
299
|
+
| macOS Apple Silicon (M1/M2/M3/M4) | `hive-v0.0.37-macos-arm64` | [Descargar](https://github.com/johpaz/hive/releases/latest/download/hive-v0.0.37-macos-arm64) |
|
|
300
|
+
| macOS Intel | `hive-v0.0.37-macos-x64` | [Descargar](https://github.com/johpaz/hive/releases/latest/download/hive-v0.0.37-macos-x64) |
|
|
301
|
+
| Windows x64 | `hive-v0.0.37-windows-x64.exe` | [Descargar](https://github.com/johpaz/hive/releases/latest/download/hive-v0.0.37-windows-x64.exe) |
|
|
302
302
|
|
|
303
303
|
> Los links anteriores siempre apuntan a la última versión publicada. Si necesitas una versión específica, visita la [página de releases](https://github.com/johpaz/hive/releases).
|
|
304
304
|
|
|
@@ -308,7 +308,7 @@ Descarga manual de cualquier plataforma o versión específica.
|
|
|
308
308
|
|
|
309
309
|
```bash
|
|
310
310
|
# 1. Descargar el binario (reemplaza "linux-x64" por "linux-arm64" si es ARM)
|
|
311
|
-
curl -L -o hive https://github.com/johpaz/hive/releases/latest/download/hive-v0.0.
|
|
311
|
+
curl -L -o hive https://github.com/johpaz/hive/releases/latest/download/hive-v0.0.37-linux-x64
|
|
312
312
|
|
|
313
313
|
# 2. Dar permisos de ejecución
|
|
314
314
|
chmod +x hive
|
|
@@ -340,7 +340,7 @@ hive start
|
|
|
340
340
|
|
|
341
341
|
```bash
|
|
342
342
|
# 1. Descargar
|
|
343
|
-
curl -L -o hive https://github.com/johpaz/hive/releases/latest/download/hive-v0.0.
|
|
343
|
+
curl -L -o hive https://github.com/johpaz/hive/releases/latest/download/hive-v0.0.37-macos-arm64
|
|
344
344
|
|
|
345
345
|
# 2. Dar permisos de ejecución
|
|
346
346
|
chmod +x hive
|
|
@@ -380,7 +380,7 @@ hive start
|
|
|
380
380
|
Igual que Apple Silicon pero descarga `macos-x64`:
|
|
381
381
|
|
|
382
382
|
```bash
|
|
383
|
-
curl -L -o hive https://github.com/johpaz/hive/releases/latest/download/hive-v0.0.
|
|
383
|
+
curl -L -o hive https://github.com/johpaz/hive/releases/latest/download/hive-v0.0.37-macos-x64
|
|
384
384
|
chmod +x hive
|
|
385
385
|
xattr -d com.apple.quarantine hive
|
|
386
386
|
curl -L https://github.com/johpaz/hive/releases/latest/download/ui-dist.tar.gz \
|
|
@@ -395,7 +395,7 @@ mkdir -p ~/.hive/ui && cp -r ui-dist/* ~/.hive/ui/
|
|
|
395
395
|
|
|
396
396
|
**Paso 1 — Descargar el binario**
|
|
397
397
|
|
|
398
|
-
Descarga [`hive-v0.0.
|
|
398
|
+
Descarga [`hive-v0.0.37-windows-x64.exe`](https://github.com/johpaz/hive/releases/latest/download/hive-v0.0.37-windows-x64.exe) desde GitHub o desde [hiveagents.io](https://www.hiveagents.io/#installation).
|
|
399
399
|
|
|
400
400
|
**Paso 2 — Windows SmartScreen**
|
|
401
401
|
|
|
@@ -425,7 +425,7 @@ tar -xzf ui-dist.tar.gz -C "$env:USERPROFILE\.hive\ui"
|
|
|
425
425
|
**Paso 4 — Ejecutar**
|
|
426
426
|
|
|
427
427
|
```powershell
|
|
428
|
-
.\hive-v0.0.
|
|
428
|
+
.\hive-v0.0.37-windows-x64.exe start
|
|
429
429
|
```
|
|
430
430
|
|
|
431
431
|
El navegador se abre automáticamente en `http://localhost:18790`.
|
|
@@ -434,7 +434,7 @@ El navegador se abre automáticamente en `http://localhost:18790`.
|
|
|
434
434
|
|
|
435
435
|
```powershell
|
|
436
436
|
# Mover a una carpeta ya en el PATH, por ejemplo:
|
|
437
|
-
Move-Item .\hive-v0.0.
|
|
437
|
+
Move-Item .\hive-v0.0.37-windows-x64.exe C:\Windows\System32\hive.exe
|
|
438
438
|
|
|
439
439
|
# Luego ejecutar desde cualquier lugar:
|
|
440
440
|
hive start
|
|
@@ -485,7 +485,7 @@ El binario standalone es ideal para llevarlo en una USB. Tu agente viaja contigo
|
|
|
485
485
|
**Preparar la USB:**
|
|
486
486
|
|
|
487
487
|
```bash
|
|
488
|
-
cp hive-v0.0.
|
|
488
|
+
cp hive-v0.0.37-linux-x64 /media/usb/hive
|
|
489
489
|
chmod +x /media/usb/hive
|
|
490
490
|
cp -r ui-dist/* /media/usb/ui/
|
|
491
491
|
|