Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill dev-server명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | dev-server |
| description | > Use when this capability is needed. |
Start the project's dev server and watch its output for errors. The user says "start dev" and you handle detection, startup, and monitoring — they only hear from you when something breaks.
Scan the working directory for project markers. Check in this order — first match wins:
| Marker file | Stack | Dev command | Default port |
|---|---|---|---|
package.json | Node.js (see framework table) | varies | 3000 |
manage.py | Django | python manage.py runserver | 8000 |
Pipfile or pyproject.toml with [tool.poetry] | Python (check for framework) | varies | 8000 |
requirements.txt with fastapi | FastAPI | uvicorn main:app --reload | 8000 |
requirements.txt with flask | Flask | flask run --reload | 5000 |
Gemfile with rails | Rails | bin/rails server | 3000 |
Gemfile with sinatra | Sinatra | ruby app.rb | 4567 |
go.mod | Go | go run . | 8080 |
Cargo.toml | Rust | cargo run | 8080 |
pom.xml | Maven/Spring | ./mvnw spring-boot:run | 8080 |
build.gradle / build.gradle.kts | Gradle/Spring | ./gradlew bootRun | 8080 |
mix.exs with phoenix | Phoenix | mix phx.server | 4000 |
composer.json with laravel | Laravel | php artisan serve | 8000 |
docker-compose.yml | Docker | docker compose up | varies |
Makefile with dev target | Make | make dev | varies |
Node.js framework detection — when package.json exists, check dependencies:
| Dependency | Framework | Default command |
|---|---|---|
next | Next.js | next dev |
vite or @vitejs/* | Vite | vite |
@remix-run/dev | Remix | remix dev |
astro | Astro | astro dev |
@sveltejs/kit | SvelteKit | vite dev |
nuxt | Nuxt | nuxt dev |
@angular/cli | Angular | ng serve |
gatsby | Gatsby | gatsby develop |
expo | Expo | expo start |
| (none match) | npm scripts | <pm> run dev |
Node.js package manager — check in order:
bun.lock or bun.lockb → bunx / bun runpnpm-lock.yaml → pnpm exec / pnpm runyarn.lock → yarn / yarn runnpx / npm runPython environment — check in order:
.venv/ or venv/ exists → source .venv/bin/activate &&poetry.lock → poetry runPipfile.lock → pipenv runIf nothing matches, tell the user you couldn't detect the stack and ask what command to run.
If the detection picks a stack that seems wrong for the directory (e.g. package.json exists but it's just dev tooling in a Python project, or both manage.py and package.json present and unclear which is primary), show the user your guess and confirm before starting. Don't silently commit to a wrong stack.
Before starting:
Port conflict — check if the default (or user-specified) port is taken:
lsof -i :<port> -t 2>/dev/null
If occupied, identify the occupying process (ps -p <pid>) and present two options to the user: kill PID N, or bind to port+1. Pick a default — don't block on the question if the occupying process is clearly another dev-server instance of the same project.
Dependencies installed?
node_modules/ existsbundle check passesIf missing, ask the user if you should install first.
Use the Monitor tool with persistent: true so the server runs for the session.
The grep filter matters because a raw dev-server stdout stream is mostly routine request logs — thousands of lines of noise that would flood the conversation and hide real errors. The pattern below surfaces only startup failures, runtime exceptions, build errors, and warnings:
<dev-command> 2>&1 | grep --line-buffered -iE \
'(error[:\[]| ERR[!_]|EADDRINUSE|EACCES|ENOENT|ECONNREFUSED|FATAL|panic|Segmentation|Module not found|Cannot find module|ModuleNotFoundError|ImportError|SyntaxError|TypeError|ReferenceError|NameError|AttributeError|KeyError|ValueError|RuntimeError|IndentationError|failed to|build failed|compile error|compilation error|WARN[:\[]|warning[:\[]|deprecated|port.*already|address already in use|unhandled|rejected|crash|killed|Traceback|Exception|FAILED|ActionView|ActiveRecord|LoadError|undefined method|NoMethodError|cannot find|not found|Permission denied|exit code [1-9]|exit status [1-9]|thread.*panic|cannot compile)'
Set the Monitor description to something specific: "Next.js dev :3000" or "Django dev :8000".
Port flag by stack (when user specifies a port):
-p PORT--port PORT0.0.0.0:PORT--port PORT--port PORT-p PORTPORT=PORT env var--port PORTAnnounce once started and verified:
Started Next.js dev server (
bun run dev) on :3000 — root URL returned 200, no error overlay. Monitoring for errors.
"No error in the Monitor" ≠ "the app works." After the dev command announces readiness, confirm the server is reachable before handing control back to the user:
curl -sS -o /dev/null -w "%{http_code}\n" http://localhost:<port> with a 5s timeout. Expect 2xx/3xx. Non-2xx, connection refused, or timeout → investigate.browser-use skill to load the root URL, take a screenshot, and check for a visible error overlay (Next.js red box, Vite overlay, React error boundary fallback). Report what you see./health, /api/health, /), curl it and show the status code. Otherwise one HTTP probe is enough.If verification fails, surface it with the same classification as §4 (build/runtime/dependency/port) — don't just re-announce success.
When a Monitor notification fires, surface everything the filter caught — do not silently drop items because they look minor. Claude's job is coverage; the user decides what to ignore.
When the user says "stop", "kill it", "shut down", or similar:
TaskStop the Monitorpackage.json has workspaces or there's a turbo.json/nx.json, ask which package. Or check for a root dev script."Rails API :3001" and "Vite web :5173". Don't serialize — they're independent.docker-compose.yml exists alongside a framework, mention both options.XYZ and watch it", skip detection — just run their command through the Monitor filter.--turbo, preserve it.The Monitor is persistent: true and outlives context compaction. If the conversation has been compacted and the user asks about the server, restate: framework, port, PID (from startup), and how long it's been running. Don't assume the user remembers which dev server was started.
Source: alexandrbasis/claudops — distributed by TomeVault.