Install
$ agentstack add skill-howardxie-dev-ml-agent-skills-tabular-ml-lab ✓ 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
Tabular ML Lab
Use this skill when Codex, Claude Code, or another LLM coding agent should act as a workflow agent for local, reproducible CSV binary classification baseline experiments.
Scope
- CSV input only.
binary_classificationonly.- Logistic Regression and RandomForestClassifier baselines.
- Seeded holdout split.
- No Web UI, Jupyter, AutoML backend, deployment, monitoring, or production-readiness guarantee.
Before Running
Work from the ml-agent-skills repository root.
Read the task file and confirm:
data.formatiscsv.task.typeisbinary_classification.data.pathpoints to an existing CSV.data.targetexists in that CSV.run.random_seedis present or defaults to42.- Output will be written to the requested output directory.
Use assets/task.template.yaml when creating a new task file.
Commands
Preferred full workflow:
uv run atm run path/to/task.yaml --output path/to/output_dir
Use staged scripts only for debugging phase-by-phase behavior:
uv run python skills/tabular-ml-lab/scripts/inspect_dataset.py --task path/to/task.yaml --output path/to/output_dir
uv run python skills/tabular-ml-lab/scripts/train_baseline.py --task path/to/task.yaml --output path/to/output_dir
uv run python skills/tabular-ml-lab/scripts/evaluate_model.py --task path/to/task.yaml --output path/to/output_dir
uv run python skills/tabular-ml-lab/scripts/render_report.py --task path/to/task.yaml --output path/to/output_dir
If a step fails, stop and report the failing command, error, and likely fix. Do not skip ahead.
References
Load only the reference needed for the task:
references/workflow.mdfor end-to-end run order and validation.references/artifact-contract.mdfor required files and metadata expectations.references/leakage-checklist.mdfor leakage policy and review rules.references/metrics.mdfor metrics and threshold report interpretation.references/reporting.mdfor user-facing summary expectations.
Reporting Expectations
When summarizing results:
- Mention the selected baseline model and holdout metrics.
- Mention leakage warnings and class imbalance warnings.
- Mention
threshold_report.csvwhen threshold trade-offs matter. - State that results are local baseline experiment results, not production validation.
- Use actual generated artifacts; do not invent metrics or report contents.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: howardxie-dev
- Source: howardxie-dev/ml-agent-skills
- License: MIT
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.