Skip to main content
Back to registry

sql-pro

jeffallan/claude-skills

Installs1
Install command
npx skills add https://github.com/jeffallan/claude-skills --skill sql-pro
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Load detailed guidance based on context: Key things to check in the output: When implementing SQL solutions, provide: - Schema Analysis - Review database structure, indexes, query patterns, performance bottlenecks - Design - Create set-based operations using CTEs, window functions, appropriate joins - Optimize - Analyze execution plans, implement covering indexes, eliminate table scans - Verify - Run EXPLAIN ANALYZE and confirm no sequential scans on large tables; if query does not meet sub-100ms target, iterate on index selection or query rewrite before proceeding - Document - Provide query explanations, index rationale, performance metrics - Seq Scan on large table → add or fix an index - actual rows ≫ estimated rows → run ANALYZE to refresh statistics - Buffers: shared hit vs read → high read count signals missing cache / index - Analyze execution plans before recommending optimizations - Use set-based operations over row-by-row processing - Apply filtering early in query execution (before joins where possible) - Use EXISTS over COUNT for existence checks - Handle NULLs explicitly in comparisons and aggregations - Create covering indexes for frequent queries - Test with production-scale data volumes - Use SELECT * in production queries - Use cursors when set-based operations work - Ignore platform-specific optimizations when targeting a specific dialect - Implement...

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does sql-pro do?

sql-pro is listed in SkillJury, but the source summary is still sparse.

Is sql-pro good?

sql-pro does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does sql-pro work with?

sql-pro currently lists compatibility with Agent compatibility has not been published yet..

What are alternatives to sql-pro?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install sql-pro?

npx skills add https://github.com/jeffallan/claude-skills --skill sql-pro

Related skills

More from jeffallan/claude-skills

Related skills

Alternatives in Software Engineering