General
PromptBeginner5 minmarkdown
Untitled Skill
193
Guidelines for continuously improving Windsurf rules based on emerging code patterns and best practices.
Loading actions...
Main instructions and any bundled files for this skill.
TypeScript and ESLint rules that MUST be followed when creating, modifying, or reviewing any file under apps/frontend/, including .ts, .tsx, .js, and .jsx files. Also apply when discussing frontend li...
risks
Rule Improvement Triggers:
Analysis Process:
Rule Updates:
Add New Rules When:
Modify Existing Rules When:
Example Pattern Recognition:
// If you see repeated patterns like:
const data = await prisma.user.findMany({
select: { id: true, email: true },
where: { status: 'ACTIVE' }
});
// Consider adding to [prisma.md](.windsurf/rules/prisma.md):
// - Standard select fields
// - Common where conditions
// - Performance optimization patterns
Rule Quality Checks:
Continuous Improvement:
Rule Deprecation:
Documentation Updates: