Implements ZenML quick wins to enhance MLOps workflows. Investigates codebase and stack configuration, recommends high-priority improvements, and implements metadata logging, experiment tracking, alerts, scheduling, secrets management, tags, git hooks, HTML reports, and Model Control Plane setup. Use when: user wants to improve their ZenML setup, asks about MLOps best practices, mentions "quick wins", wants to enhance pipelines, or needs help with ZenML features like experiment tracking, alerting, scheduling, or model governance.
View on GitHubFebruary 1, 2026
Select agents to install to:
npx add-skill https://github.com/zenml-io/skills/blob/main/skills/zenml-quick-wins/skills/quick-wins/SKILL.md -a claude-code --skill zenml-quick-winsInstallation paths:
.claude/skills/zenml-quick-wins/# ZenML Quick Wins Implementation
Guides users through discovering and implementing high-impact ZenML features that take ~5 minutes each. Investigates current setup, recommends priorities, and implements chosen improvements.
## Workflow Overview
```
┌─────────────────────┐
│ 1. INVESTIGATE │ Understand current stack + codebase
└──────────┬──────────┘
▼
┌─────────────────────┐
│ 2. CONFIRM │ ⏸️ Check understanding with user
└──────────┬──────────┘
▼
┌─────────────────────┐
│ 3. GATHER CONTEXT │ ⏸️ Get additional context from user
└──────────┬──────────┘
▼
┌─────────────────────┐
│ 4. RECOMMEND │ Prioritize quick wins based on findings
└──────────┬──────────┘
▼
┌─────────────────────┐
│ 5. PREPARE │ ⏸️ Verify branch setup before changes
└──────────┬──────────┘
▼
┌─────────────────────┐
│ 6. IMPLEMENT │ Apply selected quick wins
└──────────┬──────────┘
▼
┌─────────────────────┐
│ 7. VERIFY │ Confirm implementation works
└─────────────────────┘
⏸️ = User checkpoint (uses AskUserQuestion tool)
```
---
## Phase 1: Investigation
**Use subagents to gather information efficiently.** This keeps verbose output out of the main conversation while enabling parallel investigation.
### Recommended: Parallel Subagent Investigation
Spawn **both subagents in parallel** using a single Task tool call with multiple invocations:
```
Use the Task tool to launch BOTH agents simultaneously:
1. zenml-quick-wins:zenml-stack-investigator agent:
- Prompt: "Investigate the ZenML stack configuration for this project.
Run all the ZenML CLI commands to understand stacks, components,
and recent pipeline activity. Return a structured summary."
2. zenml-quick-wins:zenml-codebase-analyzer agent:
- Prompt: "Analyze the Python codebase for ZenML patterns and quick win
opportunities. Search for pipeline definitions, current feature usage,
and areas Issues Found: