super-review:llm-prompts

Review LLM prompt artifacts in PR diffs for injection risks and eval gaps.

Updated May 15, 2026
One-click install
npx skills add https://github.com/mattnowdev/super-review --skill super-review-llm-prompts
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: super-review:llm-prompts
Source: https://github.com/mattnowdev/super-review/tree/main/skills/llm-prompts
Command: npx skills add https://github.com/mattnowdev/super-review --skill super-review-llm-prompts

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Prevents prompt files from becoming an injection-prone, non-deterministic, or unevaluable source of PR review output by auditing the prompt content for missing schemas, ambiguous instructions, and evaluation hygiene gaps.

Core Features & Use Cases

  • Injection-prone shape detection: Flags unsafe prompt patterns, especially where data and instructions can be merged via delimiters or interpolations.
  • Output contract validation: Identifies prompts that lack explicit output schemas, length caps, or stable structured shapes.
  • Few-shot and eval coverage checks: Ensures custom formats have worked examples and that prompt changes are paired with regression datasets.
  • Safety guidance for destructive/tool prompts: Reviews tool and refusal grammar expectations when prompts define agent capabilities.
  • Leakage and reasoning hygiene: Detects PII in few-shot examples and prompts that request CoT that may be returned verbatim.

Quick Start

Ask your AI to run the super-review LLM prompt-content review on the PR diff so it can identify prompt artifacts that are injection-prone, lack structured output constraints, or have missing/weak eval coverage.

Frequently Asked Questions about super-review:llm-prompts

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I review LLM prompt templates for prompt injection risks in pull requests?

Reviewing LLM prompt templates for prompt injection risks involves auditing PR diffs to flag unsafe patterns where data and instructions merge via delimiters or interpolations. This process identifies injection-prone shapes within prompt files to prevent security vulnerabilities.

What is structured output schema validation for LLM prompts?

Structured output schema validation for LLM prompts is the process of enforcing explicit output schemas, length caps, and stable structured shapes in prompt content. It identifies prompts lacking these constraints to prevent parsing failures and ensure machine-readable responses.

How do I add few-shot examples and eval datasets to my prompt templates?

Adding few-shot examples and eval datasets to prompt templates requires ensuring custom formats have worked examples and pairing prompt changes with regression datasets. This checks few-shot coverage and verifies prompts have machine-checkable assertions for evaluation hygiene.

Does the prompt review check for PII leakage in few-shot examples?

Yes, the prompt review checks for PII leakage in few-shot examples by detecting real personally identifiable information within prompt content. It also identifies prompts requesting chain-of-thought reasoning that may be returned verbatim, ensuring reasoning hygiene.

What are the limitations of automated prompt content reviews?

Automated prompt content reviews are limited to matching paths under prompts/ and eval/ directories, plus long system-prompt literals in code. They focus on anti-patterns causing injection risk, parsing failures, ambiguity, non-determinism, and eval regressions within those specific PR diff boundaries.