Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/opencoven/coven/ml-engineernpx skills add OpenCoven/coven --skill ml-engineergit clone --depth 1 https://github.com/OpenCoven/covenWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/opencoven/coven/ml-engineer)<a href="https://agentmods.dev/skills/opencoven/coven/ml-engineer"><img src="https://agentmods.dev/badge/skills/opencoven/coven/ml-engineer.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00165 | $0.01434 |
| Opus 5 | $0.00082 | $0.00717 |
| Sonnet 5 | $0.00033 | $0.00287 |
| Haiku 4.5 | $0.00016 | $0.00143 |
Grade A, and why
ml-engineer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 135 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ML Engineer
Build and operate production ML systems across the full lifecycle: data → features → training → validation → deployment → monitoring → retraining.
Core Workflow
1. System Analysis
Before building anything:
- Define the problem — classification, regression, ranking, generation, etc.
- Assess data — volume, quality, drift patterns, labeling status
- Set targets — accuracy, latency (<50ms inference), training time (<4h), cost ceiling
- Map infrastructure — compute (GPU/CPU), storage, orchestration, serving platform
- Choose deployment strategy — real-time, batch, streaming, edge
- Plan monitoring — what metrics, what thresholds, who gets paged
2. Pipeline Development
Build modular, versioned pipelines. Each stage should be independently testable and retriable.
Data Validation → Feature Engineering → Training → Validation → Deployment → Monitoring
↑ |
└──────────────────── Retraining Trigger ←──────────────────────────────────┘
Pipeline principles:
- Data validation FIRST — catch schema drift, missing values, distribution shifts before training
- Version everything: data, features, models, configs, code
- Each stage writes artifacts to a versioned store (MLflow, DVC, W&B)
- Fail fast with clear error messages; never silently produce bad models
See references/pipelines.md for stage-by-stage implementation patterns.
3. Training & Optimization
Select the right approach based on complexity:
| Data Size | Complexity | Approach |
|---|---|---|
| Small (<10K) | Low | Scikit-learn, XGBoost, single-machine |
| Medium (10K-1M) | Medium | PyTorch/TF, single GPU, Optuna HPO |
| Large (1M+) | High | Distributed training (Ray, DeepSpeed), transfer learning |
| Huge (100M+) | Very high | Multi-node, model sharding, mixed precision |
Hyperparameter optimization: Use Optuna (Bayesian) by default. Grid search only for ≤3 params with known ranges. Always set a trial budget and time ceiling.
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 135 lines · 165 tokens per session scan A 0d5bc3c03759
ml-engineer is a skill published in the GitHub repository OpenCoven/coven (41 stars, last pushed 4d ago), licensed MIT. It adds 165 tokens to every session and 1,434 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
cao-workflow
Author and run CAO Python workflow scripts — multi-step, parameterized, fan-out orchestrations executed by cao workflow run. Use when the user wants a repeatable multi-step job (e.g. data analysis over many files, a review pipeline, a parameterized batch). Authoring ends at a validated script file; running it is a…
frontend-design
Use this as the design-lead layer for VideoStudio COMPOSE work. It shapes project/composition/composition-manifest.json::artdirection and the model-authored HTML/SVG motion graphics in index.html.
deep-research
The agent chooses the research question, gathers sources, and writes the report. This Skill performs deterministic processing only; it never calls a model.
geo-probe
Measure whether AI answer engines surface a brand. Split because a skill can't reach the model providers: this skill generates the queries and scores the answers; the agent calls the model / websearch for each query and feeds the answers back.
geo-score
Score how citable/ready a page is for AI answer engines, from crawl facts. Pure analysis — no network, no model calls. Deterministic so it is drift-comparable.
evolve
Research-driven multi-cycle improvement director. Forms causal hypotheses about why scores are low, validates them with scout agents before attacking, dispatches axis-parallel fleet attacks, extracts transferable patterns, and runs indefinitely within a budget envelope. Accumulates a persistent belief model and…