From llm-observability
Adds safety guardrails (input/output validation) to LLM apps blocking prompt injection, PII leakage, jailbreaks, toxic content, off-topic responses, and invalid structured output. Includes library recommendations (Guardrails AI, LLM Guard, NeMo Guardrails) and observability guidance.
How this skill is triggered — by the user, by Claude, or both
Slash command
/llm-observability:add-llm-guardrailsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Guardrails are validation layers on the **input** (before the model) and **output** (before the user/downstream). They're mandatory for regulated and enterprise deployments. Treat them as tested code, and *observe* them (a guardrail that fires silently is useless).
Guardrails are validation layers on the input (before the model) and output (before the user/downstream). They're mandatory for regulated and enterprise deployments. Treat them as tested code, and observe them (a guardrail that fires silently is useless).
Input guardrails (run before the LLM):
redact-pii-for-tracing skill for the tracing side).Output guardrails (run before returning):
Emit a span/event every time a guardrail fires (which one, input hash, action taken). Without this you can't tell if injection attempts are rising, if PII redaction is over/under-triggering, or if a guardrail silently broke. Dashboard: guardrail-trigger rate over time + false-positive spot-checks.
npx claudepluginhub contextjet-ai/awesome-llm-observabilityImplements multi-layer safety guardrails for LLM apps: content moderation, jailbreak/prompt injection defense, PII detection, topic guardrails, and output validation. Supports OpenAI Moderation API, Nemo Guardrails, Llama Guard.
Deploys Llama Guard, NeMo Guardrails, and LLM Guard as runtime input/output scanners for LLM applications. Use when blocking jailbreaks, prompt injection, and unsafe output in production.
Implements input/output guardrails for LLM apps using NeMo Guardrails Colang, Python PII/toxicity validators, and Guardrails AI to block prompt injection, data leaks, toxic content, hallucinations, and ensure JSON schema compliance. For AI safety in chatbots, RAG pipelines.