一键导入
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)