By h2oai
Run predictions on tabular data using the TabH2O foundation model API, supporting classification, regression, timeseries forecasting, clustering, and missing value imputation from JSON or CSV input.
A foundation model for tabular data. One API covers classification, regression, time-series forecasting, clustering, and missing-value imputation. No fitting step on your side.
Website · API Docs · Playground · Blog
This is the public companion repo for TabH2O. You will find here:
agentic/skills/tabh2o-predict/SKILL.md) for Claude Code, pi, and similar harnesses.claude-plugin/marketplace.json)integrations/)examples/)Issues and pull requests are welcome.
TabH2O is a foundation model trained on millions of synthetic datasets. You give it a small labeled training set and an unlabeled test set; it returns predictions a few seconds later.
| Task | Example |
|---|---|
classification | Will this customer churn? |
regression | What price will this house sell for? |
regression + time_column | What will sales look like next week? |
The blog post explains the why and the how.
Get a free API key at https://tabh2o.h2oai.com.
Send a request:
export TABH2O_API_KEY=<your-key>
curl -s -X POST https://tabh2o.h2oai.com/api/v1/predict \
-H "Authorization: Bearer $TABH2O_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"train": {
"data": [[25,50000,1,"Yes"],[30,60000,3,"No"],[22,45000,0,"Yes"],[35,70000,8,"No"],[28,55000,2,"Yes"],[40,80000,10,"No"]],
"columns": ["age","income","experience","purchased"]
},
"test": {
"data": [[27,52000,2],[38,75000,7]],
"columns": ["age","income","experience"]
},
"target_column": "purchased",
"task": "classification"
}'
More examples are in examples/. The full reference is at tabh2o.h2oai.com/docs.
A community notebook walks through the Titanic dataset end to end: TabH2O solves Titanic, no training needed on Kaggle.
In this repo:
examples/curl/: one runnable shell script per task typeexamples/python/: plain requests, a CSV-upload script, and a pandas helperagentic/skills/tabh2o-predict/SKILL.md: agent skill in the agentskills.io format. Drops into Claude Code, pi, and other harnesses.integrations/excel/ and integrations/gsheets/: the spreadsheet add-insThis repo doubles as a Claude Code plugins marketplace. Install it once, then pull in any TabH2O skill or plugin from inside Claude Code:
/plugin marketplace add h2oai/tabh2o
/plugin install tabh2o-predict@tabh2o
The same skill is also usable standalone in any harness that reads the agentskills.io format — the marketplace is just one delivery channel.
| Limit | Value |
|---|---|
| Requests per minute | 2 |
| Requests per day | 20 |
| Requests per month | 500 |
| Tasks | Classification, regression |
| Max rows per request | 100,000 |
| Max columns | 100 |
| Max payload | 50 MB |
For higher limits contact us.
Data is processed in memory and discarded after the response. Nothing is stored, logged, cached, or used for training. Column names and category labels can be replaced with arbitrary identifiers (c1, c2, ...) without changing the predictions. Details in agentic/skills/tabh2o-predict/SKILL.md.
Issues and pull requests on the public assets in this repo are welcome. See CONTRIBUTING.md.
Apache 2.0. See LICENSE.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub h2oai/tabh2o --plugin tabh2o-predictComprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
A growing collection of Claude-compatible academic workflow bundles. Covers scientific figures, manuscript writing and polishing, reviewer assessment, citation retrieval, data availability, paper reading, literature search, response letters, paper-to-PPTX conversion, and evidence-grounded Chinese invention patent drafting. Rules are organized as reusable skill folders with explicit workflows and quality checks.
Intelligent draw.io diagramming plugin with AI-powered diagram generation, multi-platform embedding (GitHub, Confluence, Azure DevOps, Notion, Teams, Harness), conditional formatting, live data binding, and MCP server integration for programmatic diagram creation and management.
Persistent file-based planning for AI coding agents. Crash-proof markdown plans (task_plan.md, findings.md, progress.md) that survive context loss and /clear, with an opt-in completion gate and multi-agent shared state. Manus-style. Works with Claude Code, Codex CLI, Cursor, Kiro, OpenCode and 60+ agents via the SKILL.md standard. Includes Arabic, German, Spanish, and Chinese (Simplified and Traditional).
Complete creative writing suite with 10 specialized agents covering the full writing process: research gathering, character development, story architecture, world-building, dialogue coaching, editing/review, outlining, content strategy, believability auditing, and prose style/voice analysis. Includes genre-specific guides, templates, and quality checklists.
Payload Development plugin - covers collections, fields, hooks, access control, plugins, and database adapters.