mlops-collaboration

mlops-collaboration is a skill for Claude Code, Codex from MLOps-Courses/mlops-coding-skills. It costs 50 tokens per session (1,484 once invoked), scanned A, original, MIT.

A checklist and setup guide for making a private software repository ready for public collaboration. It covers project rules, contributor documentation, standard templates, and tagged releases on GitHub.

In plain words
What is it for?
Use it to add a license and code of conduct, configure branch rules, write README and contribution guidance, standardize workflows, and prepare releases.
Why use it?
It fills in the legal, governance, documentation, and release practices that contributors need before working on an open-source project.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/mlops-courses/mlops-coding-skills/mlops-collaboration
Any agent
npx skills add MLOps-Courses/mlops-coding-skills --skill mlops-collaboration
Clone the repo
git clone --depth 1 https://github.com/MLOps-Courses/mlops-coding-skills

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for mlops-collaboration

README.md
[![agentmods](https://agentmods.dev/badge/skills/mlops-courses/mlops-coding-skills/mlops-collaboration.svg)](https://agentmods.dev/skills/mlops-courses/mlops-coding-skills/mlops-collaboration)
Your own site
<a href="https://agentmods.dev/skills/mlops-courses/mlops-coding-skills/mlops-collaboration"><img src="https://agentmods.dev/badge/skills/mlops-courses/mlops-coding-skills/mlops-collaboration.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,484 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00050 $0.01484
Opus 5 $0.00025 $0.00742
Sonnet 5 $0.00010 $0.00297
Haiku 4.5 $0.00005 $0.00148

Measured 4d ago against content hash 1ca655c2e24a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

mlops-collaboration 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 4d 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.

mlops-collaboration/SKILL.md · 79 lines

How it starts

The opening of the file, as written. The whole thing — 79 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MLOps Collaboration

Goal

To transform a private project into a public, collaborative resource by establishing Governance (License, Code of Conduct, branch rulesets), Documentation (README, AGENTS, Contributing), Standardization (Templates, Workstations), and Release Management.

Prerequisites

  • Language: Python 3.14
  • Platform: GitHub
  • Context: Open sourcing or team collaboration.

Instructions

1. Repository Governance

Set the rules of engagement.

  1. License: Pick an SPDX identifier and commit the full text. Declare it in pyproject.toml as license = "MIT" plus license-files = ["LICENSE.txt"] (PEP 639), and make sure the file itself carries its title and copyright line — a bare license body with no Copyright (c) <year> <author> is legally ambiguous.
  2. Code of Conduct: Add CODE_OF_CONDUCT.md to foster a safe community.
  3. Branch Protection (concretely): commit .github/rulesets/main.json and apply it with mise run install:rulesets. A ruleset in the repository is reviewable, diffable, and restorable; a setting clicked in the web UI is none of those. A useful baseline blocks deletion and non-fast-forward pushes, requires linear history, requires a pull request, and requires the CI status check to pass.
    • Make the task idempotent: look the ruleset up by name and PUT over it when it exists, POST only when it does not. A plain POST creates a duplicate ruleset on every run.
    • The required status check must name the CI job id exactly. If you rename the job, the ruleset waits forever for a context that no longer reports.
  4. Review: Automate preliminary reviews with tools like Gemini Code Assist (.gemini/config.yaml).
  5. Ignore: Comprehensive .gitignore (exclude secrets, data, virtualenvs, and local MLflow state such as mlflow.db and mlartifacts/).

2. Comprehensive Documentation

Make the project usable and understandable.

  1. README.md: The landing page for humans (Badges, Hook, Quickstart, commands).
  2. AGENTS.md: The landing page for AI assistants — project overview, setup and core commands, definition of done, conventions and idioms, repository layout, in that order. Keep both files in sync with reality; when a command changes, both change in the same commit.
  3. Describe the real stack: state the versions a newcomer will actually install — Python 3.14, MLflow 3.15 on a SQL tracking store (sqlite:///mlflow.db locally, not the deprecated file store), Ruff 0.16, ty 0.0.69, uv, mise. A README that documents last year's stack costs more time than no README.
  4. MkDocs: Use for full documentation sites (API ref, tutorials) when README.md gets too long.
  5. CONTRIBUTING.md: Guide for developers — environment setup, branch naming, PR process, and the exact local gate (mise run all) they must pass before opening a pull request.
  6. CHANGELOG.md: Generate from Conventional Commits with git-cliff (replaces Commitizen); commit the rendered file.

Read the full file on GitHub · 79 lines

Changes

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.

  1. 4d ago First seen · 79 lines · 50 tokens per session scan A 1ca655c2e24a

Subscribe to this mod's changes

mlops-collaboration is a skill published in the GitHub repository MLOps-Courses/mlops-coding-skills (22 stars, last pushed 25d ago), licensed MIT. It adds 50 tokens to every session and 1,484 once invoked, about $0.0003 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.