Install
$ agentstack add skill-agentscope-ai-qwenpaw-data-data-modeling ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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.
- Author: agentscope-ai
- Source: agentscope-ai/QwenPaw-Data
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.