| name | project-guidelines-example |
| description | Example project-specific skill template. Use as a starting point when creating guidelines for your own projects. |
| when_to_use | Use when creating a new project-specific skill or adapting this template into real architecture, workflow, and testing guidance. |
Project Guidelines Skill (Example)
This is an example of a project-specific skill. Use this as a template for your own projects.
Based on a real production application: Zenith - AI-powered customer discovery platform.
When to Use
Reference this skill when working on the specific project it's designed for. Project skills contain:
- Architecture overview
- File structure
- Code patterns
- Testing requirements
- Deployment workflow
Reference Documents
Critical Rules
- No emojis in code, comments, or documentation
- Immutability - never mutate objects or arrays
- TDD - write tests before implementation
- 80% coverage minimum
- Many small files - 200-400 lines typical, 800 max
- No console.log in production code
- Proper error handling with try/catch
- Input validation with Pydantic/Zod
Related Skills
coding-standards - General coding best practices
backend-patterns - API and database patterns
frontend-patterns - React and Next.js patterns
tdd-workflow - Test-driven development methodology