What problem does it solve?
This Skill prevents AI agents from interfering with a developer's local environment by running servers, installing dependencies, or using mock data, which can lead to conflicts, unreliable testing, and a broken workflow.
Core Features & Use Cases
- No Dev Servers: Explicitly prohibits running dev servers, ensuring the user maintains full control over their local development environment.
- Read-Only Information Gathering: Limits AI actions to read-only operations (e.g.,
cat, git status), requiring explicit permission for any modifications.
- Real Data Over Mocks: Enforces the use of real data sources (staging DB, dev API) instead of mock data, ensuring code is production-ready from the start.
- Use Case: When you've made code changes and need to test, this skill will provide clear, step-by-step instructions for you to run the dev server and verify functionality, rather than attempting to execute commands itself.
Quick Start
Example: Guiding user to test changes
I've updated the authentication logic in src/auth/login.ts.
To test:
- Run:
pnpm dev
- Navigate to
/login
- Try logging in with test credentials
- Verify token is stored in localStorage
Let me know if you encounter any issues.