원클릭으로
dev-restart
Rebuild and restart Bridge while preserving the database and all configuration
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Rebuild and restart Bridge while preserving the database and all configuration
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Check for new releases, security audit changes, and deploy to OpenShift staging
Tear down and bring up a fresh local dev environment from scratch (wipes database)
Trigger the automated release pipeline for Alcove
| name | dev-restart |
| description | Rebuild and restart Bridge while preserving the database and all configuration |
| user-invocable | true |
Rebuild and restart without wiping the database. All credentials, agent repos, sessions, and team configuration persist. Use this when you've made code changes and want to test them, or after adding a migration.
git checkout main && git pull
for c in $(podman ps -a --format "{{.Names}}" | grep -E "gate-|skiff-"); do podman rm -f "$c" 2>/dev/null; done
make down # stops Bridge + NATS + PostgreSQL, keeps DB volume
make up # rebuilds binaries + images, restarts everything
curl -s http://localhost:8080/api/v1/health
Note: If you are using make watch (recommended), manual restarts are unnecessary — Air automatically rebuilds Bridge when .go files change. This skill is for the containerized make up workflow.
No credential or agent repo configuration needed — the database retains everything.
If postgres auth backend was in use, Bridge needs AUTH_BACKEND=postgres — see the dev-up skill for the full command.
Dashboard: http://localhost:8080
Database: preserved (all sessions, credentials, agent repos intact)