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

Data Modeling

skill-agentscope-ai-qwenpaw-data-data-modeling · by agentscope-ai

Builds end-to-end predictive modeling pipelines on tabular datasets—data exploration, preprocessing, baseline modeling, and mandatory optimization—producing valid saved predictions in the required output format. Use for any supervised machine learning or data modeling task, including classification and regression on tabular data, Kaggle-style competitions or submission-file challenges, training a…

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

Install

$ agentstack add skill-agentscope-ai-qwenpaw-data-data-modeling

✓ 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-agentscope-ai-qwenpaw-data-data-modeling)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo 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 Data Modeling? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Data Modeling

When users present a data modeling request, start from data understanding and complete the full pipeline—from exploration to output. Run fully automated end-to-end; never pause to ask the user for intermediate decisions.

Core Principles

  • Strictly adhere to task requirements regarding features, preprocessing methods (if specified), and output format.
  • All preprocessing parameters must be fitted on the training set and consistently transformed on the test set.
  • Prioritize efficient methods and models from lightweight libraries like scikit-learn to quickly validate feasibility.
  • Always consider data scale: for large sample sizes or high-dimensional features, implement OOM safeguards (e.g., sampling, streaming processing, avoiding full One-Hot encoding, limiting tree depth, etc.).
  • Ensure outputs are well-structured and logically reproducible; avoid data leakage or dimension mismatches.
  • 🚫 No plotting allowed: You cannot view charts. All feature analysis must be performed through computed statistics only.

Data Exploration

Perform rapid preliminary analysis on the provided data:

  • Check shape: number of samples and features.
  • Identify feature types:
  • Numerical (continuous/discrete)
  • Categorical (nominal/ordinal)
  • Temporal (datetime)
  • Special fields: text, IDs, high-cardinality features, etc.

Implementation Workflow

Modeling Strategy: Start simple, iterate progressively.

✅ Phase 1: Quick Baseline (Mandatory)

Use simple, efficient methods and models to establish an end-to-end pipeline and generate an initial prediction:

  • Essential Preprocessing:
  • Handle missing values: impute with reasonable defaults (e.g., mean, median, mode) based on feature type.
  • Drop irrelevant columns: e.g., IDs, UUIDs, serial numbers, or other unique identifiers.
  • Encoding:
  • Numerical features: standardize if needed.
  • Categorical features:
  • High-cardinality categories (unique values ≥ 10): Avoid One-Hot encoding to prevent dimension explosion. Use compact representations such as Label Encoding, Frequency Encoding, Target Encoding, or Hash Encoding. Choose the encoding method based on data characteristics and model compatibility.
  • Low-cardinality categories (unique values ⚠️ Always balance performance gains against implementation complexity: Do not incur 10× maintenance cost for a 1% improvement.

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.