Ml Pipeline Creation logo

Ml Pipeline Creation

Community
seb1n
ml-pipeline-creation

Design, implement, and validate reproducible machine-learning pipelines spanning data preparation, training, evaluation, registry, and deployment gates. Use when the user requests an ML pipeline, needs to turn model scripts into an orchestrated workflow, or provides pipeline components that must be connected safely.

Overview

Publisherseb1n
Repositoryawesome-ai-agent-skills
Skill nameml-pipeline-creation
Stars
188
Forks
35
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by seb1n on GitHub. Read the source before you install it.

Installation

Install the Ml Pipeline Creation AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/seb1n/awesome-ai-agent-skills.git /tmp/awesome-ai-agent-skills
mkdir -p .claude/skills
cp -r /tmp/awesome-ai-agent-skills/ai-ml-operations/ml-pipeline-creation .claude/skills/ml-pipeline-creation
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Ml Pipeline Creation in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Ml Pipeline Creation on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Ml Pipeline Creation is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

ML Pipeline Creation

Build reproducible ML workflows whose inputs, outputs, lineage, and promotion criteria are explicit. Prefer the project's existing orchestrator and conventions; do not introduce a platform merely to demonstrate one.

Required Inputs

  • Business objective and measurable model acceptance criteria
  • Data sources, ownership, sensitivity, and expected refresh cadence
  • Existing preprocessing, training, evaluation, and serving code
  • Target environments and available orchestration or CI system
  • Compute, cost, latency, reproducibility, and compliance constraints

If critical details are missing, state assumptions and design a platform-neutral pipeline before selecting an implementation.

Output Contract

Produce:

  1. A dependency graph of pipeline stages and artifacts
  2. A versioned pipeline definition or implementation
  3. Explicit schemas for every stage input and output
  4. Data, model, and environment versioning rules
  5. Evaluation and promotion gates with failure behavior
  6. Observability, retry, backfill, and rollback procedures
  7. A verification record showing how the pipeline was tested

Workflow

  1. Inspect the environment. Identify the repository language, dependency manager, existing orchestration system, model framework, artifact store, and deployment path. Reuse established tools where possible.
  2. Define the contract. Record the objective, data snapshot rules, target metric, baseline, acceptance threshold, resource budget, and deployment constraints. Separate offline evaluation from production health metrics.
  3. Model the DAG. Represent ingestion, validation, splitting, transformation, training, evaluation, registration, and deployment as idempotent stages. Declare every artifact rather than relying on undeclared files or mutable global state.
  4. Implement reproducibility. Pin dependencies, seed stochastic operations where appropriate, version code and data, capture parameters, and store immutable artifacts with provenance. Prevent train/validation leakage by fitting transformations only on training data.
  5. Add quality gates. Validate schemas before training, compare metrics with a baseline, fail closed on missing or invalid artifacts, and require explicit approval before production promotion when consequences are material.
  6. Design operations. Define retries only for transient failures, make reruns idempotent, specify backfill boundaries, emit structured logs and metrics, and document rollback to the last known-good model.
  7. Test incrementally. Run unit tests for components, a small deterministic end-to-end fixture, and a staging or dry-run execution. Confirm that a failed stage cannot silently publish a model.

Example

For a batch classifier, define the artifact flow explicitly:

yaml
pipeline: customer-churn-training
inputs:
  raw_snapshot: data/raw/churn-2026-08-01.parquet
stages:
  - name: prepare-data
    inputs: [raw_snapshot]
    outputs: [train_set, validation_set, test_set, feature_schema]
  - name: train-model
    inputs: [train_set, feature_schema, training_config]
    outputs: [model, training_metrics]
  - name: evaluate-model
    inputs: [model, validation_set, test_set, baseline_metrics]
    outputs: [evaluation_report, promotion_decision]
  - name: register-model
    condition: promotion_decision == "pass"
    inputs: [model, evaluation_report]
    outputs: [registered_model_version]

Require prepare-data to emit every declared split. Reject the run if test_set is absent rather than letting evaluation consume an undeclared path.

Safety Boundaries

  • Treat datasets, credentials, model artifacts, and logs as potentially sensitive.
  • Never copy production data into development without authorization and required de-identification.
  • Do not deploy, replace a registered model, or alter production infrastructure without explicit approval.
  • Present destructive migration or cleanup plans before execution and preserve a rollback path.
  • Flag fairness, privacy, security, or regulatory review requirements instead of claiming compliance from pipeline execution alone.

Verification

  • Re-run the fixture twice and confirm identical stage contracts and expected deterministic outputs.
  • Force one stage to fail and verify downstream stages do not execute.
  • Verify artifact hashes, code revision, parameters, data version, and evaluation results are traceable from the registered model.
  • Test retry and backfill behavior without duplicating records or overwriting immutable artifacts.
  • Confirm the deployment gate rejects a model below threshold and accepts a known-good fixture.

Best Practices

  • Keep components small, idempotent, and independently testable.
  • Separate pipeline orchestration from model business logic.
  • Store configuration as versioned data; do not bury thresholds in code.
  • Prefer immutable artifacts and explicit lineage over mutable “latest” paths.
  • Monitor data quality and model behavior after deployment, not only during training.

Edge Cases

  • Streaming data: Use event-time semantics, checkpointing, and replay-safe sinks.
  • Non-deterministic training: Record seeds and environment details, then validate within an agreed tolerance.
  • Large backfills: Bound the date range, estimate cost, and test one partition before scaling.
  • Schema drift: Quarantine incompatible data and require a reviewed schema migration.
  • Partial promotion: Keep registry, serving configuration, and monitoring changes transactional or explicitly reversible.

Frequently asked questions

What does the Ml Pipeline Creation AI skill do?

Design, implement, and validate reproducible machine-learning pipelines spanning data preparation, training, evaluation, registry, and deployment gates. Use when the user requests an ML pipeline, needs to turn model scripts into an orchestrated workflow, or provides pipeline components that must be connected safely.

Why use Ml Pipeline Creation on TypingMind?

Because you install it once and use it with any model. Ml Pipeline Creation is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Ml Pipeline Creation in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/seb1n/awesome-ai-agent-skills/tree/main/ai-ml-operations/ml-pipeline-creation. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Ml Pipeline Creation?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Ml Pipeline Creation?

As many as you like. As long as a model supports skills, you can use Ml Pipeline Creation with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Ml Pipeline Creation AI skill free?

Yes. It is published on GitHub by seb1n under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇