/domain-validator
Validate agent output against declared domain rules and ground truth before trusting it downstream. Trigger after any agent produces output that will be used in a decision, stored persistently, or passed to another agent.
$ npx -y skills add jpantsjoha/ai-native-developer-experience --skill domain-validator --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/domain-validator
Context preview
The summary Claude sees to decide when to auto-load this skill.
Validate agent output against declared domain rules and ground truth before trusting it downstream. Trigger after any agent produces output that will be used in a decision, stored persistently, or passed to another agent.
SKILL.md
domain-validator.SKILL.mdname: domain-validator
description: Validate agent output against declared domain rules and ground truth before trusting it downstream. Trigger after any agent produces output that will be used in a decision, stored persistently, or passed to another agent.
Domain Validator
> **Agent output is a hypothesis. Domain validation is the test.**
An agent that produces output without validation is a system that produces hallucinations at scale. The domain validator is the check that separates "the agent said so" from "it is true."
When to use
- After an agent produces output that feeds a downstream system or human decision
- When an agent has reasoned over domain-specific data (financial figures, medical records, legal clauses, system configurations)
- Before persisting agent-generated content to a database or document store
- When an agent output will be presented to an end user as factual
Procedure
1. **Declare the domain rules** — before running any validation, the domain rules must be explicit:
- What are the invariants? (e.g. "a date range must have start < end", "a price must be positive", "a configuration must reference an existing resource")
- What are the allowed value ranges or enumerations?
- What is the ground truth source? (database record, API response, regulatory document, schema definition)
2. **Extract the claims** — identify the specific assertions in the agent output that are subject to validation. Not every word in the output is a claim; focus on structured data, named values, and factual assertions.
3. **Validate each claim against the domain rules**:
- **Structural validation**: does the output conform to the expected schema or format?
- **Range and constraint validation**: are values within allowed bounds?
- **Referential integrity**: do referenced entities exist in the ground truth source?
- **Logical consistency**: are the claims internally consistent? (e.g. no contradictory figures)
- **Freshness**: is the ground truth source current, or could it be stale?
4. **Classify findings**:
- **PASS**: claim is valid against all domain rules
- **WARN**: claim is plausible but cannot be fully verified (e.g. ground truth unavailable)
- **FAIL**: claim violates a domain rule or contradicts ground truth
5. **Produce a validation report** — for each claim: status (PASS/WARN/FAIL), the rule checked, and the evidence.
6. **Gate downstream use** — FAIL findings block downstream use of the output. WARN findings require explicit human acknowledgement before proceeding. PASS findings may proceed automatically.
Outputs
- Validation report: claim | status | rule checked | evidence
- Overall verdict: PASS / WARN / FAIL
- List of FAIL and WARN findings for human review
Guardrails
- **Domain rules must be declared before validation runs.** Validating against implicit rules produces false confidence.
- **WARN is not PASS.** A WARN finding means uncertainty, not safety.
- **Ground truth must be identified.** If there is no ground truth source, the output cannot be validated — flag this explicitly rather than assuming it is correct.
- **Validation is not proofreading.** Grammar and style are not domain rules. Focus on factual and structural correctness.
Anti-rationalization table
| Excuse | Counter | |---|---| | "The model is reliable enough" | Reliability is a statistical claim. Domain validation is a deterministic check. Run it. | | "We'll catch errors in review" | Human review misses structured errors that automated validation catches. Both are needed. | | "The domain rules aren't defined yet" | Then the output cannot be trusted yet. Define the rules before relying on the output. |
Read more
name: domain-validator description: Validate agent output against declared domain rules and ground truth before trusting it downstream. Trigger after any agent produces output that will be used in a decision, stored persistently, or passed to another agent.
Domain Validator
> **Agent output is a hypothesis. Domain validation is the test.**
An agent that produces output without validation is a system that produces hallucinations at scale. The domain validator is the check that separates "the agent said so" from "it is true."
When to use
- After an agent produces output that feeds a downstream system or human decision
- When an agent has reasoned over domain-specific data (financial figures, medical records, legal clauses, system configurations)
- Before persisting agent-generated content to a database or document store
- When an agent output will be presented to an end user as factual
Procedure
1. **Declare the domain rules** — before running any validation, the domain rules must be explicit:
- What are the invariants? (e.g. "a date range must have start < end", "a price must be positive", "a configuration must reference an existing resource")
- What are the allowed value ranges or enumerations?
- What is the ground truth source? (database record, API response, regulatory document, schema definition)
2. **Extract the claims** — identify the specific assertions in the agent output that are subject to validation. Not every word in the output is a claim; focus on structured data, named values, and factual assertions.
3. **Validate each claim against the domain rules**:
- **Structural validation**: does the output conform to the expected schema or format?
- **Range and constraint validation**: are values within allowed bounds?
- **Referential integrity**: do referenced entities exist in the ground truth source?
- **Logical consistency**: are the claims internally consistent? (e.g. no contradictory figures)
- **Freshness**: is the ground truth source current, or could it be stale?
4. **Classify findings**:
- **PASS**: claim is valid against all domain rules
- **WARN**: claim is plausible but cannot be fully verified (e.g. ground truth unavailable)
- **FAIL**: claim violates a domain rule or contradicts ground truth
5. **Produce a validation report** — for each claim: status (PASS/WARN/FAIL), the rule checked, and the evidence.
6. **Gate downstream use** — FAIL findings block downstream use of the output. WARN findings require explicit human acknowledgement before proceeding. PASS findings may proceed automatically.
Outputs
- Validation report: claim | status | rule checked | evidence
- Overall verdict: PASS / WARN / FAIL
- List of FAIL and WARN findings for human review
Guardrails
- **Domain rules must be declared before validation runs.** Validating against implicit rules produces false confidence.
- **WARN is not PASS.** A WARN finding means uncertainty, not safety.
- **Ground truth must be identified.** If there is no ground truth source, the output cannot be validated — flag this explicitly rather than assuming it is correct.
- **Validation is not proofreading.** Grammar and style are not domain rules. Focus on factual and structural correctness.
Anti-rationalization table
| Excuse | Counter | |---|---| | "The model is reliable enough" | Reliability is a statistical claim. Domain validation is a deterministic check. Run it. | | "We'll catch errors in review" | Human review misses structured errors that automated validation catches. Both are needed. | | "The domain rules aren't defined yet" | Then the output cannot be trusted yet. Define the rules before relying on the output. |
A team-project AI harness bootstrap that gives humans and agents a shared operating contract from day one, moving AI leverage from an individual “IC superhero” advantage to a repeatable team capability on an equal playing field.
Other skills on join-the-team.
- /adk-expert
Google ADK (Agent Development Kit) orchestration patterns — boundaries, agent composition, and tool seams. Trigger when designing or reviewing multi-agent systems built on ADK. Authoritative source: adk.dev.
Open skill - /adversarial-gate
JP's signature red-team pass — "how would I break this?" Argue against your own approach before proceeding. Trigger on any high-stakes decision, architecture choice, or before marking work complete.
Open skill - /alibaba-expert
Alibaba Cloud expert guardrails — RAM least-privilege, data boundaries, residency (mainland/international split), cost, and official-source validation. Trigger when designing or reviewing any Alibaba Cloud workload, especially agents or LLMs (Model Studio/Bailian, Qwen,
Open skill - /aws-expert
AWS expert guardrails — IAM least-privilege, data boundaries, cost controls, residency, and official-source validation. Trigger when designing or reviewing any AWS workload, especially agents, LLMs (Bedrock), or multi-account systems.
Open skill - /azure-expert
Azure expert guardrails — Entra ID least-privilege, policy-first governance, data boundaries, cost, residency, and official-source validation. Trigger when designing or reviewing any Azure workload, especially agents, LLMs (Foundry/OpenAI), or landing-zone systems.
Open skill - /cost-guardrail
LLM and cloud cost awareness — model tiering, token budgets, right-sizing, and when a cheaper model suffices. Trigger before finalising any architecture that calls LLMs, before scaling a workload, or when a cost estimate is needed.
Open skill

