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>
620 B
620 B
title, impact, description, tags
| title | impact | description | tags | |||
|---|---|---|---|---|---|---|
| Rule Title Here | CRITICAL | HIGH | MEDIUM | LOW | One sentence describing what this rule prevents or improves |
|
Rule Title
Brief explanation of why this pattern is important (1-2 sentences).
❌ Incorrect
// Explain why this is wrong
const bad = 'example';
# Explain why this is wrong
bad = "example"
✅ Correct
// Explain why this is correct
const good = 'example';
# Explain why this is correct
good = "example"