feat: add official Qodo skills and codebase intelligence (#428)
This commit is contained in:
41
.claude/skills/get-qodo-rules/references/output-format.md
Normal file
41
.claude/skills/get-qodo-rules/references/output-format.md
Normal file
@@ -0,0 +1,41 @@
|
||||
# Formatting and Outputting Rules
|
||||
|
||||
## Output Structure
|
||||
|
||||
Print the following header:
|
||||
|
||||
```
|
||||
# 📋 Qodo Rules Loaded
|
||||
|
||||
Scope: `{QUERY_SCOPE}`
|
||||
Rules loaded: **{TOTAL_RULES}** (universal, org level, repo level, and path level rules)
|
||||
|
||||
These rules must be applied during code generation based on severity:
|
||||
```
|
||||
|
||||
## Grouping by Severity
|
||||
|
||||
Group rules into three sections and print each non-empty section:
|
||||
|
||||
**ERROR** (`severity == "error"`):
|
||||
```
|
||||
## ❌ ERROR Rules (Must Comply) - {count}
|
||||
|
||||
- **{name}** ({category}): {description}
|
||||
```
|
||||
|
||||
**WARNING** (`severity == "warning"`):
|
||||
```
|
||||
## ⚠️ WARNING Rules (Should Comply) - {count}
|
||||
|
||||
- **{name}** ({category}): {description}
|
||||
```
|
||||
|
||||
**RECOMMENDATION** (`severity == "recommendation"`):
|
||||
```
|
||||
## 💡 RECOMMENDATION Rules (Consider) - {count}
|
||||
|
||||
- **{name}** ({category}): {description}
|
||||
```
|
||||
|
||||
End output with `---`.
|
||||
Reference in New Issue
Block a user