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

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
tag1
tag2
tag3

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"

Reference