Adding updates to agent

This commit is contained in:
2026-05-10 18:46:48 +02:00
parent e0983d25ae
commit 54c6857252
4 changed files with 22 additions and 8 deletions
File diff suppressed because one or more lines are too long
+9 -7
View File
@@ -271,16 +271,18 @@ info "Agent0 .env written"
info "Building glitch-tunnel image..."
docker compose build --quiet
info "Starting agent0 container..."
docker compose up -d agent0
info "Starting agent containers..."
docker compose up -d dobby gemma gunnar rind abyssinthia hermes
info "Waiting for agent0 to finish initializing..."
until docker exec agent0 bash -c "! pgrep -x apt-get > /dev/null && ! pgrep -x dpkg > /dev/null" 2>/dev/null; do
AGENT_CONTAINERS=(dobby gemma gunnar rind abyssinthia hermes)
for container in "${AGENT_CONTAINERS[@]}"; do
info "Waiting for ${container} to finish initializing..."
until docker exec "$container" bash -c "! pgrep -x apt-get > /dev/null && ! pgrep -x dpkg > /dev/null" 2>/dev/null; do
sleep 3
done
info "Installing gutasktool inside agent0 container..."
docker exec agent0 bash -c "apt-get update -q && apt-get install -y -q python3-pip && python3 -m pip install --break-system-packages -q -e /a0/usr/gutasktool"
info "Installing gutasktool inside ${container}..."
docker exec "$container" bash -c "apt-get update -q && apt-get install -y -q python3-pip && python3 -m pip install --break-system-packages -q -e /opt/gutasktool"
done
info "Starting tunnel..."
docker compose up -d glitch-tunnel
Executable
+5
View File
@@ -0,0 +1,5 @@
#1/bin/bash
claude --resume d7994658-94c6-404b-af79-48c74b5b0349
+6
View File
@@ -98,6 +98,7 @@ services:
- ./agents/dobby:/a0/usr
- ./shared/skills:/a0/usr/skills
- ${HOME}/.ssh:/root/.ssh
- ../gutasktool:/opt/gutasktool
restart: unless-stopped
depends_on:
dobby-init:
@@ -121,6 +122,7 @@ services:
- ./agents/gemma:/a0/usr
- ./shared/skills:/a0/usr/skills
- ${HOME}/.ssh:/root/.ssh
- ../gutasktool:/opt/gutasktool
restart: unless-stopped
depends_on:
gemma-init:
@@ -144,6 +146,7 @@ services:
- ./agents/gunnar:/a0/usr
- ./shared/skills:/a0/usr/skills
- ${HOME}/.ssh:/root/.ssh
- ../gutasktool:/opt/gutasktool
restart: unless-stopped
depends_on:
gunnar-init:
@@ -167,6 +170,7 @@ services:
- ./agents/rind:/a0/usr
- ./shared/skills:/a0/usr/skills
- ${HOME}/.ssh:/root/.ssh
- ../gutasktool:/opt/gutasktool
restart: unless-stopped
depends_on:
rind-init:
@@ -190,6 +194,7 @@ services:
- ./agents/abyssinthia:/a0/usr
- ./shared/skills:/a0/usr/skills
- ${HOME}/.ssh:/root/.ssh
- ../gutasktool:/opt/gutasktool
restart: unless-stopped
depends_on:
abyssinthia-init:
@@ -212,6 +217,7 @@ services:
- ./agents/hermes:/a0/usr
- ./shared/skills:/a0/usr/skills
- ${HOME}/.ssh:/root/.ssh
- ../gutasktool:/opt/gutasktool
restart: unless-stopped
depends_on:
hermes-init: