-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clinerules
More file actions
33 lines (22 loc) · 1008 Bytes
/
.clinerules
File metadata and controls
33 lines (22 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
description: Main entry point for AI-based development and developer reference
globs:
alwaysApply: true
---
# 🚨 CRITICAL: Read AI Rules First
**BEFORE making ANY code changes, you MUST read and follow the rules in the `.ai_rules` folder.**
## Essential Rule Files
**⚠️ MANDATORY READING**: These files contain critical development patterns and standards
## Build & Test Commands
```bash
# Build solution (REQUIRED before submitting)
dotnet build --configuration Release
# Run tests (REQUIRED after any changes)
dotnet test --configuration Release
```
## Critical Reminders
- **Rule violations** = code gets reverted
- **Missing build/test** = changes get rejected
- Never skip the build/test validation
**⚠️ WARNING**: Code that doesn't follow these rules gets reverted. The rules contain critical architectural decisions, naming conventions, and patterns that ensure code quality and consistency across the entire solution.
**Read the rules. Follow the rules. Test your changes.**