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

Tabular Ml Lab

skill-howardxie-dev-ml-agent-skills-tabular-ml-lab · by howardxie-dev

Use when the user wants to use an LLM coding agent such as Codex or Claude Code to run a reproducible machine learning workflow on tabular CSV data, including data profiling, leakage checks, binary classification baselines, evaluation metrics, threshold reports, model cards, and final reports.

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

Install

$ agentstack add skill-howardxie-dev-ml-agent-skills-tabular-ml-lab

✓ 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-howardxie-dev-ml-agent-skills-tabular-ml-lab)

Reliability & compatibility

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

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_classification only.
  • 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.format is csv.
  • task.type is binary_classification.
  • data.path points to an existing CSV.
  • data.target exists in that CSV.
  • run.random_seed is present or defaults to 42.
  • 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.md for end-to-end run order and validation.
  • references/artifact-contract.md for required files and metadata expectations.
  • references/leakage-checklist.md for leakage policy and review rules.
  • references/metrics.md for metrics and threshold report interpretation.
  • references/reporting.md for 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.csv when 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.

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.