smithery/applelamps

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.

Installation

$ npx skills add smithery/applelamps --skill dev-servers

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/applelamps.

npx skills add smithery/applelamps

Browse all from smithery/applelamps

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,173 B
  • docs SUMMARY.md 218 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

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

  1. Install dependencies if missing:

- Backend: cd backend && pip install -r requirements.txt - Frontend: cd frontend && npm install

  1. 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)

  1. Verify .env file exists in backend/ with OPENAIAPIKEY set

Examples

  • "Start the dev servers"
  • "Run the app locally"
  • "Launch backend and frontend"

Guardrails

  • Never expose or log the OPENAIAPIKEY
  • Confirm with user before installing dependencies
  • Warn if ports 8000 or 5173 are already in use