From maestro-economics
SOP for discovering, inspecting, querying, citing, and downloading RA Data datasets through mecon data. Use when the user asks about datasets, catalog search, metadata, citation, samples, Parquet/CSV download, DuckDB queries, signed query URLs, dataset description, schema, coverage, source attribution, or RA Data CLI usage.
How this skill is triggered — by the user, by Claude, or both
Slash command
/maestro-economics:ra-dataThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the task is to find, inspect, query, cite, or download
Use this skill when the task is to find, inspect, query, cite, or download published research datasets. Prefer Parquet as the canonical format; CSV is an export convenience.
head or describe.mecon data list: list available datasets.mecon data list --search <term>: search the catalog.mecon data list --family <family>: filter by dataset family.mecon data info <slug>: show metadata, coverage, version, visibility, and
citation.mecon data cite <slug>: print citation text.mecon data sample <slug>: preview a sample.mecon data head <slug> --rows 20: show first rows.mecon data describe <slug>: inspect profile, row count, columns, and stats.mecon data query-url <slug>: get a signed Parquet URL for DuckDB/httpfs.mecon data query <slug> "select ...": run a local DuckDB query against the
dataset.mecon data download <slug> --format parquet: download canonical data.mecon data download <slug> --format csv: export CSV only when needed.Use --json when another program or agent needs structured output.
For analysis tasks, avoid downloading a full dataset just to inspect it:
mecon data describe <slug>
mecon data head <slug> --rows 20
mecon data query <slug> "select year, count(*) as n from data group by year order by year"
Download after the needed resolution, keys, and time range are clear.
Before using a dataset in downstream analysis, verify:
If metadata is missing or ambiguous, do not invent it. Ask for the dataset page, source note, or maintainer clarification.
When reporting dataset use, include the slug, version, downloaded/query format, date accessed, and citation. Keep user-facing language plain: "I checked the coverage and sample rows before downloading" is better than storage or endpoint details.
npx claudepluginhub maestro-ai-stack/maestro-economics --plugin maestro-economicsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.