@johpaz/hive 1.7.9 → 1.7.10
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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -114,7 +114,7 @@ docker run -d \
|
|
|
114
114
|
-v hive-data:/root/.hive \
|
|
115
115
|
--name hive \
|
|
116
116
|
--restart unless-stopped \
|
|
117
|
-
johpaz/hive:1.7.
|
|
117
|
+
johpaz/hive:1.7.10
|
|
118
118
|
```
|
|
119
119
|
|
|
120
120
|
**Variables de entorno disponibles:**
|
|
@@ -215,10 +215,10 @@ En el equipo donde tienes conexión a internet:
|
|
|
215
215
|
|
|
216
216
|
```bash
|
|
217
217
|
# Descargar la imagen si no la tienes
|
|
218
|
-
docker pull johpaz/hive:1.7.
|
|
218
|
+
docker pull johpaz/hive:1.7.10
|
|
219
219
|
|
|
220
220
|
# Exportar a archivo tar (cabe en cualquier USB de 512 MB+)
|
|
221
|
-
docker save johpaz/hive:1.7.
|
|
221
|
+
docker save johpaz/hive:1.7.10 -o /media/usb/hive-image.tar
|
|
222
222
|
```
|
|
223
223
|
|
|
224
224
|
**Paso 2 — Crear la estructura en la USB**
|
|
@@ -236,7 +236,7 @@ Crea el `docker-compose.yml` en la USB con el volumen apuntando a la USB:
|
|
|
236
236
|
```yaml
|
|
237
237
|
services:
|
|
238
238
|
hive:
|
|
239
|
-
image: johpaz/hive:1.7.
|
|
239
|
+
image: johpaz/hive:1.7.10
|
|
240
240
|
ports:
|
|
241
241
|
- "18790:18790"
|
|
242
242
|
volumes:
|
|
@@ -315,11 +315,11 @@ Descarga manual de cualquier plataforma o versión específica.
|
|
|
315
315
|
|
|
316
316
|
| Plataforma | Archivo | Descarga directa |
|
|
317
317
|
|------------|---------|------------------|
|
|
318
|
-
| Linux x64 | `hive-v1.7.
|
|
319
|
-
| Linux ARM64 (Raspberry Pi, etc.) | `hive-v1.7.
|
|
320
|
-
| macOS Apple Silicon (M1/M2/M3/M4) | `hive-v1.7.
|
|
321
|
-
| macOS Intel | `hive-v1.7.
|
|
322
|
-
| Windows x64 | `hive-v1.7.
|
|
318
|
+
| Linux x64 | `hive-v1.7.10-linux-x64` | [Descargar](https://github.com/johpaz/hive/releases/latest/download/hive-v1.7.10-linux-x64) |
|
|
319
|
+
| Linux ARM64 (Raspberry Pi, etc.) | `hive-v1.7.10-linux-arm64` | [Descargar](https://github.com/johpaz/hive/releases/latest/download/hive-v1.7.10-linux-arm64) |
|
|
320
|
+
| macOS Apple Silicon (M1/M2/M3/M4) | `hive-v1.7.10-macos-arm64` | [Descargar](https://github.com/johpaz/hive/releases/latest/download/hive-v1.7.10-macos-arm64) |
|
|
321
|
+
| macOS Intel | `hive-v1.7.10-macos-x64` | [Descargar](https://github.com/johpaz/hive/releases/latest/download/hive-v1.7.10-macos-x64) |
|
|
322
|
+
| Windows x64 | `hive-v1.7.10-windows-x64.exe` | [Descargar](https://github.com/johpaz/hive/releases/latest/download/hive-v1.7.10-windows-x64.exe) |
|
|
323
323
|
|
|
324
324
|
> 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).
|
|
325
325
|
|
|
@@ -329,7 +329,7 @@ Descarga manual de cualquier plataforma o versión específica.
|
|
|
329
329
|
|
|
330
330
|
```bash
|
|
331
331
|
# 1. Descargar el binario (reemplaza "linux-x64" por "linux-arm64" si es ARM)
|
|
332
|
-
curl -L -o hive https://github.com/johpaz/hive/releases/latest/download/hive-v1.7.
|
|
332
|
+
curl -L -o hive https://github.com/johpaz/hive/releases/latest/download/hive-v1.7.10-linux-x64
|
|
333
333
|
|
|
334
334
|
# 2. Dar permisos de ejecución
|
|
335
335
|
chmod +x hive
|
|
@@ -361,7 +361,7 @@ hive start
|
|
|
361
361
|
|
|
362
362
|
```bash
|
|
363
363
|
# 1. Descargar
|
|
364
|
-
curl -L -o hive https://github.com/johpaz/hive/releases/latest/download/hive-v1.7.
|
|
364
|
+
curl -L -o hive https://github.com/johpaz/hive/releases/latest/download/hive-v1.7.10-macos-arm64
|
|
365
365
|
|
|
366
366
|
# 2. Dar permisos de ejecución
|
|
367
367
|
chmod +x hive
|
|
@@ -396,7 +396,7 @@ hive start
|
|
|
396
396
|
Igual que Apple Silicon pero descarga `macos-x64`:
|
|
397
397
|
|
|
398
398
|
```bash
|
|
399
|
-
curl -L -o hive https://github.com/johpaz/hive/releases/latest/download/hive-v1.7.
|
|
399
|
+
curl -L -o hive https://github.com/johpaz/hive/releases/latest/download/hive-v1.7.10-macos-x64
|
|
400
400
|
chmod +x hive
|
|
401
401
|
xattr -d com.apple.quarantine hive
|
|
402
402
|
curl -L https://github.com/johpaz/hive/releases/latest/download/ui-dist.tar.gz \
|
|
@@ -411,7 +411,7 @@ mkdir -p ~/.hive/ui && cp -r ui-dist/* ~/.hive/ui/
|
|
|
411
411
|
|
|
412
412
|
**Paso 1 — Descargar el binario**
|
|
413
413
|
|
|
414
|
-
Descarga [`hive-v1.7.
|
|
414
|
+
Descarga [`hive-v1.7.10-windows-x64.exe`](https://github.com/johpaz/hive/releases/latest/download/hive-v1.7.10-windows-x64.exe) desde GitHub o desde [hiveagents.io](https://www.hiveagents.io/#installation).
|
|
415
415
|
|
|
416
416
|
**Paso 2 — Windows SmartScreen**
|
|
417
417
|
|
|
@@ -441,7 +441,7 @@ tar -xzf ui-dist.tar.gz -C "$env:USERPROFILE\.hive\ui"
|
|
|
441
441
|
**Paso 4 — Ejecutar**
|
|
442
442
|
|
|
443
443
|
```powershell
|
|
444
|
-
.\hive-v1.7.
|
|
444
|
+
.\hive-v1.7.10-windows-x64.exe start
|
|
445
445
|
```
|
|
446
446
|
|
|
447
447
|
El navegador se abre automáticamente en `http://localhost:18790`.
|
|
@@ -450,7 +450,7 @@ El navegador se abre automáticamente en `http://localhost:18790`.
|
|
|
450
450
|
|
|
451
451
|
```powershell
|
|
452
452
|
# Mover a una carpeta ya en el PATH, por ejemplo:
|
|
453
|
-
Move-Item .\hive-v1.7.
|
|
453
|
+
Move-Item .\hive-v1.7.10-windows-x64.exe C:\Windows\System32\hive.exe
|
|
454
454
|
|
|
455
455
|
# Luego ejecutar desde cualquier lugar:
|
|
456
456
|
hive start
|
|
@@ -501,7 +501,7 @@ El binario standalone es ideal para llevarlo en una USB. Tu agente viaja contigo
|
|
|
501
501
|
**Preparar la USB:**
|
|
502
502
|
|
|
503
503
|
```bash
|
|
504
|
-
cp hive-v1.7.
|
|
504
|
+
cp hive-v1.7.10-linux-x64 /media/usb/hive
|
|
505
505
|
chmod +x /media/usb/hive
|
|
506
506
|
cp -r ui-dist/* /media/usb/ui/
|
|
507
507
|
|
package/dist/hive.js
CHANGED
|
@@ -313045,7 +313045,7 @@ async function start(flags) {
|
|
|
313045
313045
|
\u2551 \u2588\u2588\u2551 \u2588\u2588\u2551\u2588\u2588\u2551 \u255A\u2588\u2588\u2588\u2588\u2554\u255D \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557 \u2551
|
|
313046
313046
|
\u2551 \u255A\u2550\u255D \u255A\u2550\u255D\u255A\u2550\u255D \u255A\u2550\u2550\u2550\u255D \u255A\u2550\u2550\u2550\u2550\u2550\u2550\u255D \u2551
|
|
313047
313047
|
\u2551 \u2551
|
|
313048
|
-
\u2551 Personal Swarm AI Gateway \u2014 v1.7.
|
|
313048
|
+
\u2551 Personal Swarm AI Gateway \u2014 v1.7.10 \u2551
|
|
313049
313049
|
\u255A\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255D
|
|
313050
313050
|
`);
|
|
313051
313051
|
}
|
|
@@ -314982,7 +314982,7 @@ async function executeAsync(gatewayUrl, payload, spinner) {
|
|
|
314982
314982
|
}
|
|
314983
314983
|
|
|
314984
314984
|
// packages/cli/src/index.ts
|
|
314985
|
-
var VERSION4 = "1.7.
|
|
314985
|
+
var VERSION4 = "1.7.10";
|
|
314986
314986
|
var HELP = `
|
|
314987
314987
|
\uD83D\uDC1D Hive \u2014 Personal Swarm AI Gateway v${VERSION4}
|
|
314988
314988
|
|