library/specializations/data-science-ml/skills/kubeflow-pipeline-executor/SKILL.md
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.
npx skillsauth add a5c-ai/babysitter kubeflow-pipeline-executorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML operations.
{
"type": "object",
"required": ["action"],
"properties": {
"action": {
"type": "string",
"enum": ["compile", "run", "schedule", "list", "get-run", "delete"],
"description": "KFP action to perform"
},
"pipelinePath": {
"type": "string",
"description": "Path to pipeline definition file"
},
"pipelineConfig": {
"type": "object",
"properties": {
"name": { "type": "string" },
"description": { "type": "string" },
"parameters": { "type": "object" }
}
},
"runConfig": {
"type": "object",
"properties": {
"experimentName": { "type": "string" },
"runName": { "type": "string" },
"arguments": { "type": "object" }
}
},
"scheduleConfig": {
"type": "object",
"properties": {
"cron": { "type": "string" },
"maxConcurrency": { "type": "integer" },
"enabled": { "type": "boolean" }
}
}
}
}
{
"type": "object",
"required": ["status", "action"],
"properties": {
"status": {
"type": "string",
"enum": ["success", "error", "running"]
},
"action": {
"type": "string"
},
"pipelineId": {
"type": "string"
},
"runId": {
"type": "string"
},
"runStatus": {
"type": "string",
"enum": ["pending", "running", "succeeded", "failed", "skipped"]
},
"artifacts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"uri": { "type": "string" },
"type": { "type": "string" }
}
}
},
"dashboardUrl": {
"type": "string"
}
}
}
{
kind: 'skill',
title: 'Run ML training pipeline',
skill: {
name: 'kubeflow-pipeline-executor',
context: {
action: 'run',
pipelinePath: 'pipelines/training_pipeline.py',
runConfig: {
experimentName: 'model-training',
runName: 'training-run-v1',
arguments: {
dataPath: 'gs://bucket/data',
modelPath: 'gs://bucket/models',
epochs: 100
}
}
}
}
}
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
tools
Jupyter notebook execution skill for running notebooks programmatically and extracting outputs.