Babysitter json-schema

JSON Schema validation and API contract design.

install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/library/specializations/web-development/skills/json-schema" ~/.claude/skills/a5c-ai-babysitter-json-schema && rm -rf "$T"
manifest: library/specializations/web-development/skills/json-schema/SKILL.md
source content

JSON Schema Skill

Expert assistance for JSON Schema validation.

Capabilities

  • Write JSON Schemas
  • Validate data
  • Design API contracts
  • Generate documentation
  • Handle complex types

Schema Example

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": { "type": "string", "format": "uuid" },
    "name": { "type": "string", "minLength": 1 },
    "email": { "type": "string", "format": "email" },
    "age": { "type": "integer", "minimum": 0 }
  },
  "required": ["id", "name", "email"],
  "additionalProperties": false
}

Target Processes

  • api-contract-design
  • validation-setup
  • documentation