بنقرة واحدة
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)