accessibility-patterns
WCAG 2.2 AA compliance, ARIA patterns, keyboard navigation, screen reader optimization
Structured data extraction - tables, pricing, products, API endpoints with schema
$ npx -y skills add vibeeval/vibecosystem --skill harvest-structured --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/harvest-structuredContext preview
The summary Claude sees to decide when to auto-load this skill.
Structured data extraction - tables, pricing, products, API endpoints with schema
name: harvest-structured description: Structured data extraction - tables, pricing, products, API endpoints with schema allowed-tools: [Bash, Read, Write, WebFetch] keywords: [scrape, structured, data, extract, schema, table, pricing, product, json, csv]
Extract structured data from web pages using user-defined schemas. Turns messy HTML into clean JSON/CSV - pricing tables, product listings, API endpoint docs, comparison matrices.
/scrape <url> --schema "<field descriptions>"
# Extract pricing data /scrape https://example.com/pricing --schema "plan_name, price, features[], cta_text" # Extract product listings /scrape https://store.example.com/products --schema "name, price, rating, reviews_count, image_url" # Extract API endpoints /scrape https://docs.api.com/reference --schema "method, path, description, parameters[], response_code"
Define fields as comma-separated names. Use `[]` for arrays:
name → Single text value price → Single value (auto-detects currency) features[] → Array of items description → Long text url → Auto-detects links image_url → Auto-detects image sources
1. Fetch page content 2. Parse schema definition 3. Use CSS selectors or LLM extraction to match fields 4. Validate extracted data against schema 5. Output as JSON (default) or CSV
[
{
"plan_name": "Pro",
"price": "$29/mo",
"features": ["Unlimited projects", "Priority support", "API access"],
"source_url": "https://example.com/pricing"
}
]plan_name,price,features,source_url Pro,"$29/mo","Unlimited projects; Priority support; API access",https://example.com/pricing
Your AI software team. Built on Claude Code. vibecosystem turns Claude Code into a full AI software team — 138 specialized agents that plan, build, review, test, and learn from every mistake. No configuration needed — just install and code.
Repo: vibeeval/vibecosystem
WCAG 2.2 AA compliance, ARIA patterns, keyboard navigation, screen reader optimization
axe-core integration, WCAG 2.2 AA checklist, keyboard navigation testing, screen reader testing, and ARIA pattern validation.
Steam-style achievement system with XP, levels, streaks, and skill trees. Gamifies the development workflow. 25 achievements across 5 categories.
Framework for measuring and tracking agent response quality over time. Detects regressions before they reach production. Use when evaluating agent changes,…
Agent ve skill dosyalarinin yapisal dogrulamasi. Frontmatter kontrol, naming convention, zorunlu bolum kontrolu, tutarlilik denetimi. Yeni agent/skill…