You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 15, 2025. It is now read-only.
Supports code execution, SQL linting, semantic match
Output Format (Auto-Selected)
Format
When
Example
Markdown (default)
Single workflow
.prompt.md with headers, tools
YAML
Multi-workflow
workflow: [step: analyze, tools: [...] ]
SudoLang
Loops, state, branching
for each file, lint(file)
Success Metrics
Metric
Target
Manual tuning time
90% reduction
Guideline compliance
100%
LLM calls per run
≤10
Copilot-ready output
Drop-in .prompt.md
Format correctness
Zero invalid outputs
Example: Optimized .prompt.md
---description: 'Review SQL schema changes'mode: 'agent'tools: ['runInTerminal', 'getTerminalOutput', 'edit']---# SQL Schema Change Reviewer
You are a fintech DBA with 15 years in high-frequency trading systems.
{{guidelines}}
## Task
Review `${selection}` for:
- Index coverage on WHERE/JOIN columns
- No `SELECT *` in production views
- Partitioning on date columns
## Instructions1. Run `EXPLAIN ANALYZE` on critical queries
2. Check for missing indexes
3. If issue found: emit fix with `edit`4. Persist until all checks pass
## Output```diff- -- Missing index+ CREATE INDEX idx_orders_date ON orders(order_date);```