From tailscale
Configure a local dev server for access from Tailscale-connected devices.
npx claudepluginhub kecbigmt/cc-plugins --plugin tailscaleThis skill uses the workspace's default tool permissions.
Configure a local dev server for access from Tailscale-connected devices.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Configure a local dev server for access from Tailscale-connected devices.
tailscale status
tailscale status --self --json | jq '.Self.DNSName, .TailscaleIPs[0]'
Deno/Fresh:
await server.listen({ hostname: "0.0.0.0", port: 8000 });
Node/Vite/Next:
vite --host 0.0.0.0
next dev -H 0.0.0.0
| Method | Format |
|---|---|
| MagicDNS | http://<machine-name>:<port>/ |
| FQDN | http://<name>.<tailnet>.ts.net:<port>/ |
| IP | http://<tailscale-ip>:<port>/ |
| Issue | Fix |
|---|---|
| Connection refused | Bind to 0.0.0.0, not 127.0.0.1 |
| Port in use | lsof -i :<port> → kill <pid> |
| Can't resolve name | Enable MagicDNS in admin console |
| Device offline | Activate Tailscale VPN on target |