sql-translation
SKILL.md
SQL Translation Skill
Use this skill when adding new SQL function translations for a specific database backend.
Overview
This skill guides you through adding SQL translations to dbplyr. SQL translations convert R functions to their SQL equivalents for different database backends.
Workflow
1. Research SQL (CRITICAL - ALWAYS FIRST)
Before implementing any SQL translation, you MUST research the SQL syntax and behavior using the sql-research skill. See that skill for the complete research workflow.
Quick summary:
- Search official documentation for "{dialect} {function}"
- Document findings in
research/{dialect}-{function}.md - Include all source URLs
- Only proceed to implementation after completing research