Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.
Orchestrates Kubeflow ML pipelines for compiling, running, scheduling, and managing Kubernetes-native workflows.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdKubeflow 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
}
}
}
}
}
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.