Agent skill · Data & Analytics

harvest-structured

Structured data extraction - tables, pricing, products, API endpoints with schema

vibeevalgithub.com/vibeevalGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add vibeeval/vibecosystem --skill harvest-structured --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Allowed tools: BashReadWriteWebFetch
Path: skills/harvest-structured/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 521
Language: C#

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Harvest Structured 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. ## Usage ``` /scrape <url> --schema "<field descriptions>" ``` ## Examples ```bash # 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" ``` ## Schema Definition 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 ``` ## How It Works 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 ## Output Format ### JSON (default) ```json [ { "plan_name": "Pro", "price

What's inside
Steps it walks through
  1. Usage
  2. Examples
  3. Schema Definition
  4. How It Works
  5. Output Format
  6. JSON (default)
  7. CSV
  8. Integration
  9. Rules
Commands it runs
Extract pricing data
Extract product listings
Extract API endpoints
More from vibecosystem
All skills →
About this skill
What does the harvest-structured skill do?

Structured data extraction - tables, pricing, products, API endpoints with schema

How do I install it?

Run `npx skills add vibeeval/vibecosystem --skill harvest-structured --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going