adr
Write an Architecture Decision Record documenting a significant technical decision.
Generate and interpret a SQL query execution plan in plain language.
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/explain-planContext preview
What this command does when you run it.
Generate and interpret a SQL query execution plan in plain language.
Generate and interpret a SQL query execution plan in plain language.
1. Take the SQL query from the user input 2. Determine the database engine (PostgreSQL, MySQL, SQLite, SQL Server) 3. Run EXPLAIN or EXPLAIN ANALYZE with the appropriate syntax for the engine 4. Parse the execution plan output into structured components 5. Identify each operation: Sequential Scan, Index Scan, Nested Loop, Hash Join, Sort 6. Explain each step in plain language: what table is read, how it is filtered 7. Highlight expensive operations: full table scans, large sort operations, hash joins 8. Calculate the cost percentage of each step relative to total query cost 9. Identify the critical path (most expensive sequence of operations) 10. Suggest specific improvements for the most costly operations 11. Estimate memory usage and temporary disk usage from the plan 12. Present the explanation as a step-by-step narrative
The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Write an Architecture Decision Record documenting a significant technical decision.
Conduct a structured design review of a module, feature, or system component.
Create a structured implementation plan for the requested feature or change.