dayuse-vibes
Installation
SKILL.md
Dayuse Vibe Coding Standards
This skill ensures that code generated for non-developers meets professional standards while remaining understandable.
Core Principles
When generating code, you MUST follow these rules:
- TypeScript only - All code must use strict TypeScript
- No
anytype - Theanytype is strictly forbidden - DDD Architecture - Organize code according to Domain-Driven Design
- Systematic testing - Every feature requires tests
- Mandatory linting - Code must pass ESLint and Prettier
- Zod validation - Validate external inputs with Zod
- Result Pattern - Use Result<T, E> instead of throw/catch
- Security by default - Security audit, authorization checks, and no hardcoded secrets