AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Wicked Garden Data

skill-mikeparcewski-wicked-garden-data · by mikeparcewski

|

No reviews yet
0 installs
20 views
0.0% view→install

Install

$ agentstack add skill-mikeparcewski-wicked-garden-data

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-mikeparcewski-wicked-garden-data)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
23d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Wicked Garden Data? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

wicked-garden:data — data engineering, analysis, and ML

Every sub-action runs inline (no dispatch): parse the arguments, pre-read the data where noted, load the Tier-3 rubric from refs/, apply it, and emit structured markdown with tables and prioritized findings. For delegated or parallel worker execution, dispatch the wicked-garden-data-engineer fork skill instead.

Routing

| Sub-action | Use for | Rubric | |------------|---------|--------| | analyze [--focus stats\|quality\|warehouse\|ml] [--context ] [--refresh] [--scenarios] | one-off exploration of a CSV/Excel/data file | [refs/analyze.md](refs/analyze.md) | | profile | dataset structure + quality profile | [refs/data.md](refs/data.md) | | validate --schema --data | schema validation | [refs/data.md](refs/data.md) | | quality | quality report (completeness, uniqueness, validity) | [refs/data.md](refs/data.md) | | ml review | ML model review | [refs/ml.md](refs/ml.md) | | ml pipeline --type | training-pipeline design | [refs/ml.md](refs/ml.md) | | pipeline design --source --target [--frequency ] | ETL pipeline design | [refs/pipeline.md](refs/pipeline.md) | | pipeline review | ETL pipeline review | [refs/pipeline.md](refs/pipeline.md) | | ontology | ontology recommendation for a dataset | inline (§ Ontology) |

Detailed templates and examples: [refs/analysis-templates.md](refs/analysis-templates.md), [refs/ml-templates.md](refs/ml-templates.md), [refs/pipeline-templates.md](refs/pipeline-templates.md), [refs/data-examples.md](refs/data-examples.md).

Analyze — interactive data analysis

Interactive analysis on a CSV/Excel/data file. Use for one-off data exploration. NOT for schema-level checks (use profile / validate / quality) or pipeline review (use pipeline review).

  1. Parse `, --focus` (stats|quality|warehouse|ml, default

stats), --context, --refresh, --scenarios.

  1. Read first rows of the file to capture column names / types / nulls / sample.
  2. Read("${CLAUDE_PLUGIN_ROOT}/skills/data/refs/analyze.md") — the EDA

rubric, quality/warehouse/ml modes, insight pattern, and output format.

  1. Apply the rubric directly for the chosen --focus mode and emit the analysis.

Profile / Validate / Quality — core data engineering ops

Schema-level engineering ops on a dataset. NOT for interactive exploration (use analyze) or ML pipeline review (use ml).

  1. Parse the sub-action (profile|validate|quality) and its args (``,

--schema for validate).

  1. Read the data file head/tail to capture columns / types / nulls / sample.
  2. Read("${CLAUDE_PLUGIN_ROOT}/skills/data/refs/data.md") — the profile,

validate, and quality rubrics with output formats and quality thresholds.

  1. Apply the rubric for the requested sub-action and emit structured markdown

with tables and prioritized findings.

Optional scripted paths (deterministic profiling/validation):

sh "${CLAUDE_PLUGIN_ROOT}/scripts/_python.sh" "${CLAUDE_PLUGIN_ROOT}/scripts/data/data_profiler.py" \
  --input data.csv --output profile.json
sh "${CLAUDE_PLUGIN_ROOT}/scripts/_python.sh" "${CLAUDE_PLUGIN_ROOT}/scripts/data/schema_validator.py" \
  --schema schemas/expected.json \
  --data data/actual.csv

For files >1GB, use the analyze sub-action for efficient SQL-based profiling via DuckDB.

ML — model review and training-pipeline design

ML model review and training-pipeline design. NOT for ETL pipeline design (use pipeline) or data profiling (use profile).

  1. Parse the sub-action (review|pipeline) and args (`` for review,

--type for pipeline).

  1. For review, read model files at ``.
  2. Read("${CLAUDE_PLUGIN_ROOT}/skills/data/refs/ml.md") — the model review

checklist, pipeline design template, deployment readiness checklist, and MLOps standards.

  1. Apply the rubric for the requested sub-action and emit structured markdown.

Pipeline — data pipeline design and review

Data pipeline design and review. NOT for ML training pipelines (use ml pipeline) or one-off file analysis (use analyze).

  1. Parse the sub-action (design|review) and args. For review, read pipeline

files at `. For design, capture --source, --target, --frequency`.

  1. Read("${CLAUDE_PLUGIN_ROOT}/skills/data/refs/pipeline.md") — the design

checklist, review rubric with P1/P2/P3 findings, pattern selection, and engineering standards.

  1. Apply the rubric for the requested sub-action and emit structured markdown.

Ontology — recommend ontologies for a dataset

Sample a dataset (CSV/Excel/Parquet/JSON) and recommend matching public ontologies (Schema.org, Dublin Core, DCAT, FOAF, GoodRelations, SKOS) or a custom shape. Use this for ontology mapping. NOT for interactive analysis (use analyze) or quality reports (use quality).

  1. Arg parse — extract file-path from the arguments.
  2. Run recommender:

``bash cd "${CLAUDE_PLUGIN_ROOT}" && uv run python scripts/_run.py scripts/data/ontology_recommender.py "${file_path}" ``

  1. Present the script's match table, column-mapping suggestions, and any

custom-ontology fallback inline.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.