---
title: Rule Title Here
impact: CRITICAL | HIGH | MEDIUM | LOW
description: One sentence describing what this rule prevents or improves
tags: [tag1, tag2, tag3]
---

# Rule Title

Brief explanation of why this pattern is important (1-2 sentences).

## ❌ Incorrect

```typescript
// Explain why this is wrong
const bad = 'example';
```

```python
# Explain why this is wrong
bad = "example"
```

## ✅ Correct

```typescript
// Explain why this is correct
const good = 'example';
```

```python
# Explain why this is correct
good = "example"
```

## Reference

- [Relevant documentation](https://docs.composio.dev)
