agentsclimarketplace

Llm ai pipeline test review

Skill Raishin/vanguard-frontier-agentic/skills/qa/llm-ai-pipeline-test-review

Curated marketplace of AI skills, agents, and rules for cloud, zero-trust, and compliance-aware engineering - works with Claude Code, Codex, Cursor, Copilot, and more.

Install
npx -y skills add Raishin/vanguard-frontier-agentic --skill llm-ai-pipeline-test-review

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 18 stars18 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use this skill when reviewing how an LLM or AI pipeline is evaluated — metric selection, golden datasets, threshold governance, adversarial coverage, and regression gating — to determine whether low-quality or unsafe model outputs can ship undetected. Trigger when a user provides evaluation configuration files, DeepEval or RAGAS test scripts, eval CI steps, or asks whether their AI pipeline actually prevents a bad model from reaching production. This skill reviews evaluation setup statically; it does not call LLM APIs, run evaluations, or contact inference endpoints.

SKILL.md

5.1 KB, 909 tokens by cl100k_base, as published. Nobody here has run it

LLM AI Pipeline Test Review

Purpose

This skill reviews how an LLM or AI pipeline is evaluated — not the model itself, but the evaluation setup that decides whether a model change is safe to ship. An evaluation suite only protects users if it measures the right things, gates on meaningful thresholds, covers adversarial inputs, and detects drift across model versions. The review catches missing hallucination and factuality metrics, absent answer-relevancy and faithfulness checks for RAG pipelines, unguarded bias and toxicity, no adversarial or red-team coverage, agent evals that ignore tool correctness and task completion, thresholds that are undefined or set to zero, single-shot evals on non-deterministic outputs, and no regression baseline to detect metric drift.

Lean operating rules

  • Treat a RAG or summarisation pipeline with no HallucinationMetric or no GEval with factuality criteria against source documents as HIGH — the pipeline can fabricate facts and ship them.
  • Treat a pipeline with no golden dataset (fixed reference set for regression) as HIGH — metric drift across model versions is undetectable.
  • Treat the absence of AnswerRelevancyMetric as MEDIUM — responses may be fluent but off-topic, and no eval catches it.
  • Treat a RAG pipeline with no FaithfulnessMetric as HIGH — the model can ignore retrieved context and hallucinate; faithfulness is the primary RAG correctness signal.
  • Treat missing ContextualPrecisionMetric or ContextualRecallMetric in a RAG pipeline as MEDIUM — retrieval quality is unmeasured; noisy or incomplete retrieval is invisible to the eval.
  • Treat the absence of BiasMetric or ToxicityMetric as HIGH if the system is user-facing — unsafe outputs can reach users without detection; treat as CRITICAL if the audience is vulnerable (children, medical patients, crisis users).
  • Treat no adversarial test cases and no red-team dataset as CRITICAL for agentic systems; HIGH for all other user-facing LLM products — prompt-injection and jailbreak paths are untested.
  • Treat agent evals with no ToolCorrectnessMetric as HIGH — the agent can call wrong tools silently and the eval still passes.
  • Treat multi-step agent evals with no TaskCompletionMetric as HIGH — end-to-end success is unmeasured even if individual steps look fine.
  • Treat metric thresholds that are undefined, set to 0, or not reviewed by a domain expert as HIGH — a threshold of 0 means every output passes; an unreviewed threshold is a guess.
  • Treat evals that run only once per input on non-deterministic outputs (no pass@k or mean-score aggregation across multiple runs) as MEDIUM — a single lucky sample masks systematic failure.
  • Treat the absence of a golden dataset or scoring baseline that would detect metric regression across model versions as HIGH — a model update can silently degrade quality.
  • Treat static golden datasets that have never been rotated or supplemented with synthetic adversarial data as MEDIUM — a suite that tests the same inputs repeatedly stops finding new defects (the pesticide paradox).
  • Apply thresholds contextually: a faithfulness score of 0.7 may be acceptable for a joke generator and unacceptable for a medical chatbot — flag any threshold that appears copied from a tutorial without domain justification.
  • Define eval metrics early in the model selection process, not after a model is chosen — catching defects before model selection is always cheaper than retrofitting evals.
  • Label every finding with evidence basis: eval config provided, test script provided, documentation-based, or inference.
  • Static review only — read eval configs and test source; never call LLM APIs, never run evaluations, never request model API keys or inference endpoints.

References

Load these only when needed:

Response minimum

Return, at minimum:

  • Hallucination and factual correctness findings
  • Answer relevancy and faithfulness findings (especially for RAG pipelines)
  • Safety metric findings (bias, toxicity)
  • Adversarial and red-team coverage findings
  • Agent-specific metric findings (tool correctness, task completion)
  • Threshold governance and non-determinism findings
  • Regression gating findings (golden dataset, baseline)
  • Severity-labelled finding list (critical / high / medium / low)
  • Safe next actions

What ships with it: 2 files

10.5 KB alongside SKILL.md

references/

Keep looking

Skills are one crate of 326,984. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.