multiAI Summary Pending
dev-servers
Start the backend (FastAPI/uvicorn) and frontend (Vite) development servers. Use when user mentions "start dev", "run servers", "launch app", "start the app", or needs to run the application locally.
231 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/dev-servers/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/applelamps/dev-servers/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/dev-servers/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How dev-servers Compares
| Feature / Agent | dev-servers | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Start the backend (FastAPI/uvicorn) and frontend (Vite) development servers. Use when user mentions "start dev", "run servers", "launch app", "start the app", or needs to run the application locally.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Development Servers ## Instructions 1. Check if dependencies are installed: - Backend: Look for `backend/venv/` or ask user about Python environment - Frontend: Check if `frontend/node_modules/` exists 2. Install dependencies if missing: - Backend: `cd backend && pip install -r requirements.txt` - Frontend: `cd frontend && npm install` 3. Start servers (recommend running in separate terminals or background): - Backend: `cd backend && uvicorn main:app --reload` (runs on http://localhost:8000) - Frontend: `cd frontend && npm run dev` (runs on http://localhost:5173) 4. Verify `.env` file exists in `backend/` with `OPENAI_API_KEY` set ## Examples - "Start the dev servers" - "Run the app locally" - "Launch backend and frontend" ## Guardrails - Never expose or log the OPENAI_API_KEY - Confirm with user before installing dependencies - Warn if ports 8000 or 5173 are already in use