kubeflow-pipeline-executor
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.
Best use case
kubeflow-pipeline-executor is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.
Teams using kubeflow-pipeline-executor should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/kubeflow-pipeline-executor/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How kubeflow-pipeline-executor Compares
| Feature / Agent | kubeflow-pipeline-executor | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# kubeflow-pipeline-executor
## Overview
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML operations.
## Capabilities
- Pipeline definition and compilation
- Component creation and reuse
- Pipeline versioning
- Artifact tracking and lineage
- Kubernetes resource management
- Pipeline scheduling and triggering
- Caching for component outputs
- Visualization of pipeline runs
## Target Processes
- Model Training Pipeline
- Distributed Training Orchestration
- Model Deployment Pipeline
- ML Model Retraining Pipeline
## Tools and Libraries
- Kubeflow Pipelines
- KFP SDK (v2)
- Kubernetes
- Argo Workflows
## Input Schema
```json
{
"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" }
}
}
}
}
```
## Output Schema
```json
{
"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"
}
}
}
```
## Usage Example
```javascript
{
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
}
}
}
}
}
```Related Skills
cicd-pipeline-generator
Generate CI/CD pipelines for SDK build and release
texture-pipeline
Texture skill for compression, atlasing, and streaming.
pennylane-hybrid-executor
PennyLane integration skill for hybrid quantum-classical machine learning and variational algorithms
braket-executor
Amazon Braket integration skill for multi-vendor quantum hardware access and hybrid workflows
vasp-dft-executor
VASP DFT calculation skill for electronic structure, geometry optimization, and property prediction of nanomaterials
quantum-espresso-executor
Quantum ESPRESSO calculation skill for DFT simulations with pseudopotential management
lammps-md-executor
LAMMPS molecular dynamics skill for nanoscale system simulation with force field management
gromacs-md-executor
GROMACS molecular dynamics skill for nanoparticle-biomolecule interaction simulations
comsol-multiphysics-executor
COMSOL Multiphysics skill for continuum-scale nanomaterial and device modeling
nextflow-pipeline-executor
Nextflow workflow management skill for reproducible bioinformatics pipelines
cicd-pipelines
Multi-platform CI/CD pipeline expertise. Generate GitHub Actions, GitLab CI, Jenkins, and Azure Pipelines configurations. Analyze failures, optimize execution time, validate syntax, and configure matrix builds and caching strategies.
jupyter-notebook-executor
Jupyter notebook execution skill for running notebooks programmatically and extracting outputs.