Content
87%Reviews the quality of instructions and guidance provided to agents. Good implementation is clear, handles edge cases, and produces reliable results.
This is a strong, well-crafted reference skill that provides highly actionable SQL patterns in a concise format. The cheat-sheet tables and executable examples are excellent. The main weakness is the lack of validation/verification steps (e.g., using EXPLAIN ANALYZE to confirm index usage, or checking configuration changes took effect), which slightly limits workflow clarity.
Suggestions
Add a brief validation pattern showing EXPLAIN ANALYZE to verify index usage after creation, e.g., `EXPLAIN ANALYZE SELECT ... -- confirm index scan, not seq scan`
Consider adding a verification step after the configuration template (e.g., `SHOW work_mem;` to confirm settings applied)
| Dimension | Reasoning | Score |
|---|---|---|
Conciseness | Every section is lean and practical. No unnecessary explanations of what PostgreSQL is or how indexes work conceptually—just patterns, types, and executable SQL. The cheat-sheet tables are extremely token-efficient. | 3 / 3 |
Actionability | All guidance is concrete with copy-paste-ready SQL examples: index creation, RLS policies, upserts, cursor pagination, queue processing, anti-pattern detection queries, and configuration templates. Every pattern includes executable code. | 3 / 3 |
Workflow Clarity | This is primarily a reference/cheat-sheet skill rather than a multi-step workflow, so sequencing is less critical. However, there are no validation checkpoints—e.g., after creating indexes there's no step to verify they're being used (EXPLAIN ANALYZE), and the configuration template lacks a verification step after pg_reload_conf(). | 2 / 3 |
Progressive Disclosure | The skill is well-structured as a quick reference with clear sections and tables, and appropriately delegates deeper review to the `database-reviewer` agent. Related skills and agents are clearly signaled at the bottom. Content is appropriately scoped for a single file. | 3 / 3 |
Total | 11 / 12 Passed |