Install any skill in seconds. Free to start, no credit card required.
Get Started Free →BentoML — model serving and deployment. Build prediction services from any ML framework with OpenAPI/Swagger. Containerize, deploy to Kubernetes, AWS, GCP, Azure. Adaptive batching and GPU support.
.claude/skills/mkurman-bentoml/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | -53% | 0% |
| case-06 | ✗→✓ | ▲ Improved | -56% | 0% |
| case-17 | ✗→✓ | ▲ Improved | -73% | 0% |
| case-05 | ✓→✗ | ▼ Worse | 7% | 0% |
| case-07 | ✓→✓ | = Same ✓ | 20% | 0% |
BentoML packages ML models with service definitions, dependencies, environment config, and deployment targets into a portable "Bento." Deploy to Kubernetes (Kserve, Seldon), AWS SageMaker, GCP Vertex AI, or as a standalone Docker container.
bashuv pip install bentoml
pythonimport bentoml from bentoml.io import JSON import numpy as np iris_clf = bentoml.sklearn.get("iris_model:latest") @bentoml.service class IrisClassifier: def __init__(self): self.model = iris_clf.to_runner() self.model.init_local() @bentoml.api(input=JSON(), output=JSON()) def classify(self, input_data): result = self.model.run(np.array([input_data["features"]])) return {"class": int(result[0]), "probabilities": result[1].tolist()}
bashbentoml build # creates a Bento bentoml containerize iris_classifier:latest # Docker image docker run -p 3000:3000 iris_classifier:latest
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 14,234 | 10,343 | -27% | 1 | 1 | 0% | 2,812 | 2,471 | -12% | 0 | 0 | — |
case-02 | fail→fail | 12,499 | 8,886 | -29% | 1 | 1 | 0% | 2,660 | 2,079 | -22% | 0 | 0 | — |
case-03 | fail→pass | 7,039 | 2,162 | -69% | 1 | 1 | 0% | 1,241 | 583 | -53% | 0 | 0 | — |
case-04 | fail→fail | 11,648 | 8,948 | -23% | 1 | 1 | 0% | 1,997 | 1,879 | -6% | 0 | 0 | — |
case-05 | pass→fail | 12,711 | 11,289 | -11% | 1 | 1 | 0% | 2,025 | 2,175 | +7% | 0 | 0 | — |
case-06 | fail→pass | 11,785 | 3,407 | -71% | 1 | 1 | 0% | 2,110 | 922 | -56% | 0 | 0 | — |
case-07 | pass→pass | 3,755 | 2,600 | -31% | 1 | 1 | 0% | 603 | 724 | +20% | 0 | 0 | — |
case-08 | fail→fail | 12,625 | 9,669 | -23% | 1 | 1 | 0% | 2,342 | 2,056 | -12% | 0 | 0 | — |
case-09 | pass→pass | 8,329 | 4,959 | -40% | 1 | 1 | 0% | 1,534 | 1,332 | -13% | 0 | 0 | — |
case-10 | pass→pass | 10,692 | 7,814 | -27% | 1 | 1 | 0% | 2,072 | 1,600 | -23% | 0 | 0 | — |
case-11 | pass→pass | 3,988 | 3,090 | -23% | 1 | 1 | 0% | 658 | 751 | +14% | 0 | 0 | — |
case-12 | pass→pass | 2,888 | 2,739 | -5% | 1 | 1 | 0% | 477 | 778 | +63% | 0 | 0 | — |
case-13 | pass→pass | 3,571 | 2,555 | -28% | 1 | 1 | 0% | 610 | 738 | +21% | 0 | 0 | — |
case-14 | pass→pass | 10,768 | 5,247 | -51% | 1 | 1 | 0% | 1,794 | 1,166 | -35% | 0 | 0 | — |
case-15 | pass→pass | 5,215 | 3,248 | -38% | 1 | 1 | 0% | 713 | 808 | +13% | 0 | 0 | — |
case-16 | pass→pass | 7,150 | 3,871 | -46% | 1 | 1 | 0% | 1,136 | 1,017 | -10% | 0 | 0 | — |
case-17 | fail→pass | 14,503 | 1,904 | -87% | 1 | 1 | 0% | 2,269 | 616 | -73% | 0 | 0 | — |
case-18 | pass→pass | 6,510 | 2,577 | -60% | 1 | 1 | 0% | 1,121 | 729 | -35% | 0 | 0 | — |
case-19 | pass→pass | 14,733 | 7,207 | -51% | 1 | 1 | 0% | 2,488 | 1,503 | -40% | 0 | 0 | — |
case-20 | pass→pass | 12,878 | 9,717 | -25% | 1 | 1 | 0% | 2,615 | 2,354 | -10% | 0 | 0 | — |
case-21 | pass→pass | 11,361 | 9,120 | -20% | 1 | 1 | 0% | 2,184 | 2,362 | +8% | 0 | 0 | — |
case-22 | pass→pass | 12,392 | 7,654 | -38% | 1 | 1 | 0% | 2,362 | 1,837 | -22% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +9 percentage points is the difference between those two pass rates over the 22 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.