Run the project's dev server in the background and display the local URL where it can be viewed.
Start the project's dev server in the background and tell the user where to view it.
Detect the dev command — check package.json (or bun.lockb, etc.) for a dev script. Common commands:
bun run dev (Bun projects)npm run dev / yarn dev / pnpm dev (Node projects)Start the server in the background using the Bash tool with run_in_background: true.
Detect the port — check in this order:
CLAUDE.md or project docs mentioning a portDisplay the URL — output the local URL plainly, e.g.:
http://localhost:3000
If a network URL is also available (e.g. on a LAN IP), show that too.