Skip to main content
ClaudeWave
Skill171 estrellas del repoactualizado 27d ago

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.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/seb1n/awesome-ai-agent-skills /tmp/ml-pipeline-creation && cp -r /tmp/ml-pipeline-creation/ai-ml-operations/ml-pipeline-creation ~/.claude/skills/ml-pipeline-creation
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# 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.
agent-evaluationSkill

Design reproducible evaluations for AI agents with representative task sets, explicit rubrics, appropriate graders, baselines, regression gates, and failure analysis. Use when defining agent quality, comparing prompts or models, validating a release, measuring tool-use reliability, investigating regressions, or deciding whether an agent is ready for production.

agent-observabilitySkill

Design privacy-aware observability for AI agents using traces, spans, structured events, metrics, cost attribution, dashboards, alerts, and investigation workflows. Use when instrumenting an agent, debugging intermittent tool or model failures, defining service-level objectives, analyzing latency or spend, auditing agent decisions, or preparing production monitoring.

human-in-the-loopSkill

Design and verify auditable human oversight, approval gates, escalation paths, and safe state transitions for AI agent workflows. Use when deciding which agent actions require review, adding approve/reject or dual-control flows, preventing unauthorized autonomous effects, creating decision records, reducing rubber-stamping, or recovering safely from rejected, expired, or failed actions.

mcp-server-buildingSkill

Design, implement, harden, and verify Model Context Protocol (MCP) servers with precise tool contracts, least-privilege authorization, safe transports, structured errors, and interoperability tests. Use when creating a new MCP server, exposing an API or data source through MCP, reviewing an MCP server design, adding or revising MCP tools, or preparing an MCP server for production.

multi-agent-orchestrationSkill

Design and operate bounded multi-agent workflows with task decomposition, dependency graphs, ownership, handoff contracts, shared-state controls, approvals, recovery, and synthesis. Use when a task contains genuinely independent workstreams, specialized roles, parallel research or implementation, reviewer-worker loops, or coordination problems that one agent should not execute sequentially.

tool-schema-designSkill

Design and validate model-facing tool definitions with clear names, action-oriented descriptions, bounded JSON Schema parameters, explicit side effects, safe defaults, idempotency, errors, and realistic tests. Use when creating function-calling tools, MCP tools, agent actions, structured tool inputs, or when a model selects the wrong tool, invents arguments, or causes unsafe side effects.

agent-red-teamingSkill

Plan, execute, document, and retest authorized security assessments of AI agents and multi-agent workflows using safe adversarial cases, synthetic identities, canaries, and evidence-based findings. Use when defining red-team rules of engagement, assessing prompt injection or excessive agency, testing tool and identity boundaries, evaluating memory or cross-agent attacks, scoring a campaign, or verifying remediation in an approved environment.

prompt-injection-defenseSkill

Threat-model and harden AI agents, RAG systems, assistants, and tool-using workflows against direct, indirect, stored, cross-agent, and multimodal prompt injection. Use when reviewing an agent architecture, isolating untrusted content, constraining tools and egress, protecting secrets, adding injection-focused tests, investigating a suspected injection incident, or documenting residual prompt-injection risk.