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>
39 lines
620 B
Markdown
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)
|