Files
composio-skills-reference/composio-sdk/rules/_template.md
sohamganatra b8b711dff6 Add Composio SDK skill with rules and agent config
Adds composio-sdk/ with SKILL.md, AGENTS.md, and 18 rule files
covering Tool Router, direct execution, triggers, and auth patterns.

Source: composiohq/skills

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-05 22:54:21 -08:00

39 lines
620 B
Markdown

---
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)