ワンクリックで
bryllen-close
Stop all Bryllen dev servers and free ports
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Stop all Bryllen dev servers and free ports
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Start (or restart) the Bryllen dev server
Create a new design project and start designing
Fast headless browser for QA testing and site dogfooding. Navigate any URL, interact with elements, verify page state, diff before/after actions, take annotated screenshots, check responsive layouts, test forms and uploads, handle dialogs, and assert element states. ~100ms per command. Use when you need to test a feature, verify a deployment, dogfood a user flow, or file a bug with evidence.
CEO/founder-mode plan review. Rethink the problem, find the 10-star product, challenge premises, expand scope when it creates a better product. Three modes: SCOPE EXPANSION (dream big), HOLD SCOPE (maximum rigor), SCOPE REDUCTION (strip to essentials).
Eng manager-mode plan review. Lock in the execution plan — architecture, data flow, diagrams, edge cases, test coverage, performance. Walks through issues interactively with opinionated recommendations.
Systematically QA test a web application and fix bugs found. Runs QA testing, then iteratively fixes bugs in source code, committing each fix atomically and re-verifying. Use when asked to "qa", "QA", "test this site", "find bugs", "test and fix", or "fix what's broken". Three tiers: Quick (critical/high only), Standard (+ medium), Exhaustive (+ cosmetic). Produces before/after health scores, fix evidence, and a ship-readiness summary. For report-only mode, use /qa-only.
| name | bryllen-close |
| description | Stop all Bryllen dev servers and free ports |
Stop all running Bryllen processes (Vite dev server, MCP HTTP server).
Kill only THIS project's servers using PIDs from the ports file:
if [ -f .bryllen-ports.json ]; then
# Kill by PID (safe) — never by port (could kill another project's server)
node -e "
const f = JSON.parse(require('fs').readFileSync('.bryllen-ports.json','utf8'));
for (const pid of [f.pid, f.vitePid, f.httpPid].filter(Boolean)) {
try { process.kill(pid, 'SIGTERM'); } catch {}
}
"
rm -f .bryllen-ports.json
else
echo "No .bryllen-ports.json found — no servers to stop for this project."
fi
This kills by PID, not port — so other bryllen instances are never affected.
Confirm: "Bryllen servers stopped for this project."