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/structured-data" ~/.claude/skills/a5c-ai-babysitter-structured-data && rm -rf "$T"
manifest:
library/specializations/web-development/skills/structured-data/SKILL.mdsource content
Structured Data Skill
Expert assistance for JSON-LD structured data.
Capabilities
- Implement JSON-LD schemas
- Validate structured data
- Configure rich results
- Handle dynamic data
- Test with Google tools
Schema Examples
// Article <script type="application/ld+json"> {JSON.stringify({ "@context": "https://schema.org", "@type": "Article", "headline": title, "author": { "@type": "Person", "name": author.name }, "datePublished": publishedAt, "image": imageUrl })} </script> // Organization { "@context": "https://schema.org", "@type": "Organization", "name": "Company Name", "url": "https://example.com", "logo": "https://example.com/logo.png" }
Target Processes
- structured-data-implementation
- rich-results
- seo-enhancement