# Reboot

> Kill, rebuild, and relaunch VibePad for testing Use when this capability is needed.

- Skill: `tomevault-io/reboot` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/reboot`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/reboot/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/reboot

---


Reboot VibePad: kill the running app, rebuild from source, and launch the new build.

1. Kill any running VibePad process:
```bash
killall VibePad 2>/dev/null || true
```

2. Build:
```bash
xcodebuild -scheme VibePad -destination 'platform=macOS' build 2>&1 | tail -5
```

3. Launch the freshly built app (use the most recently modified .app if multiple exist):
```bash
open $(ls -td /Users/vyuignatiov/Library/Developer/Xcode/DerivedData/VibePad-*/Build/Products/Debug/VibePad.app 2>/dev/null | head -1)
```

4. Report whether the build succeeded or failed to the user.

---
> Source: [ignatovv/vibepad](https://github.com/ignatovv/vibepad) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-05-28 -->

