agentsclimarketplace

Validation report generation

Skill HolobiomicsLab/asb-skill-collections/collections/metabolomics/v2/skills/validation-report-generation

Curated, evidence-grounded skill and software-tool collections for scientific AI agents, generated by the AgenticScienceBuilder

Install
npx -y skills add HolobiomicsLab/asb-skill-collections --skill validation-report-generation

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

  • 14 stars14 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 when when you have loaded a project JSON document from the Pairing Omics Data Platform and need to identify and document constraint violations (such as whitespace in URL fields) defined in the JSON schema.

The file declares its own license as CC-BY-4.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

6.3 KB, 918 tokens by cl100k_base, as published. Nobody here has run it

validation-report-generation

Summary

Generate structured validation reports that document detected anomalies in project JSON documents by iterating through schema-defined fields, checking for constraint violations, and compiling results into a comprehensive report listing flagged items and their locations.

When to use

When you have loaded a project JSON document from the Pairing Omics Data Platform and need to identify and document constraint violations (such as whitespace in URL fields) defined in the JSON schema. Use this skill when systematic reporting of field-level validation issues is required for quality assurance, user feedback, or data curation workflows.

When NOT to use

  • When you need to auto-correct violations rather than report them — this skill documents issues without modifying the source data.
  • When validation constraints are not yet defined in the schema — the skill depends on schema field type metadata.
  • When you need real-time streaming validation of incoming data rather than batch validation of stored documents.

Inputs

  • project JSON document (conforming to app/public/schema.json structure)
  • JSON schema definition with field type and constraint annotations

Outputs

  • validation report (structured list of flagged fields with violation details)
  • warning messages indexed by field name and document location

How to apply

Load the project JSON document and the schema definition (app/public/schema.json) that describes field types and constraints. Iterate through each field in the JSON document that corresponds to a URL type in the schema. For each URL field, apply the validation constraint (e.g., check for whitespace characters including spaces, tabs, and newlines). When a violation is detected, record the field name, the offending value, and generate a descriptive warning message. Compile all flagged items into a structured report that lists each violation with its location within the document hierarchy, enabling downstream processes or human reviewers to assess and remediate issues.

Related tools

  • npm (test runner and package manager for validating that existing tests still pass after schema or validation logic changes)
  • JSON schema validator (implied by app/public/schema.json) (defines field types, constraints, and structure against which validation rules are evaluated) — https://github.com/iomega/paired-data-form

Evaluation signals

  • All URL fields in the schema are checked; no schema-defined URL fields are skipped in the report.
  • For each reported violation, the field name, offending value, and location path in the JSON document are present and accurate.
  • Whitespace detection correctly identifies spaces, tabs, newlines, and other whitespace characters per the constraint definition.
  • The report is deterministic and reproducible — running the validation on the same input document produces an identical report.
  • The warning message format is consistent and provides sufficient context for a user or curator to locate and understand each issue.

Limitations

  • The skill detects only constraints that are explicitly defined in the schema; undocumented or implicit constraints cannot be validated.
  • Whitespace detection is character-level and does not apply semantic or context-aware rules (e.g., distinguishing structural whitespace from content whitespace).
  • The skill operates on static documents and does not validate dynamic constraints such as referential integrity across multiple project files.
  • As noted in GitHub issue #75, the platform has historically lacked robust URL validation, meaning some projects may contain numerous violations.

Evidence

  • [other] The platform stores paired omics data projects using a JSON schema format (app/public/schema.json) that defines project structure, which serves as the basis for implementing field-level validation rules including URL format constraints.: "The platform stores paired omics data projects using a JSON schema format (app/public/schema.json) that defines project structure, which serves as the basis for implementing field-level validation"
  • [other] Iterate through each URL field and check for the presence of whitespace characters (spaces, tabs, newlines). For each URL containing whitespace, record the field name, the offending URL value, and generate a warning message. Compile validation results into a report listing all flagged URLs and their locations within the document.: "For each URL containing whitespace, record the field name, the offending URL value, and generate a warning message. Compile validation results into a report listing all flagged URLs and their"
  • [readme] The JSON schema (app/public/schema.json) describes the format of an project.: "The JSON schema (app/public/schema.json) describes the format of an project."
  • [discussion] Warning to not include spaces in urls ([#75]: "Warning to not include spaces in urls ([#75]"

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 328,083. 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.