.claude/skills/run-frontend/SKILL.md
Start the frontend dev server. Use when user wants to start the frontend or mentions /run-frontend command.
npx skillsauth add rakovi4/continue-example run-frontendInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Ensure .env file exists. If not, run setup first:
infrastructure/scripts/setup-ports.sh
Run the frontend script in background:
infrastructure/scripts/run-frontend.sh
Use run_in_background: true so the dev server keeps running.
The script loads port configuration from infrastructure/.env and starts the frontend on the configured port.
Report startup status. Dev server runs at http://localhost:{FRONTEND_PORT} (from .env)
Stop with Ctrl+C or kill the background process.
testing
Run use-case module tests quickly. Use when user wants to run use-case tests or mentions /test-usecase command.
development
Generate BDD test specifications for story in 6 categories (API, UI, Load, Infrastructure, Security, Integration). Use when user wants to create test cases or mentions /test-spec command.
testing
Review tests to replace loose validation (contains, isNotNull, isNotEmpty) with strict validation (isEqualTo on parsed fields). Use when user wants to improve test assertions or mentions /test-review command.
development
Run frontend tests. Use when user wants to run frontend unit tests or mentions /test-frontend command.