ML-MLOps-Portfolio: Skill for Claude Code

.devin/skills/release-checklist/SKILL.md

release-checklist is a skill for Claude Code from DuqueOM/ML-MLOps-Portfolio. It costs 17 tokens per session (1,648 once invoked), scanned A, original, MIT.

A release checklist for machine-learning services deployed across Google Cloud and AWS, two cloud computing platforms.

In plain words
What is it for?
It helps verify tests, coverage, model quality, fairness, data leakage, infrastructure plans, security scans, documentation, version tags, and container images before release.
Why use it?
It reduces the chance of releasing code, models, infrastructure, or documentation with missing checks or unexpected changes.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions AGENTS.md.

This is DuqueOM/ML-MLOps-Portfolio's own configuration. It tells Claude Code how to work on ML-MLOps-Portfolio itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ML-MLOps-Portfolio configures →

Reuse

Borrowing it

Nothing to install: this file belongs to DuqueOM/ML-MLOps-Portfolio. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/DuqueOM/ML-MLOps-Portfolio/main/.devin/skills/release-checklist/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/DuqueOM/ML-MLOps-Portfolio

Made for: Claude Code.

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 release-checklist

README.md
[![agentmods](https://agentmods.dev/badge/skills/duqueom/ml-mlops-portfolio/release-checklist.svg)](https://agentmods.dev/skills/duqueom/ml-mlops-portfolio/release-checklist)
Your own site
<a href="https://agentmods.dev/skills/duqueom/ml-mlops-portfolio/release-checklist"><img src="https://agentmods.dev/badge/skills/duqueom/ml-mlops-portfolio/release-checklist.svg" alt="Measured on agentmods" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,648 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00017 $0.01648
Opus 5 $0.00009 $0.00824
Sonnet 5 $0.00003 $0.00330
Haiku 4.5 $0.00002 $0.00165

Measured 8d ago against content hash 67372e71625d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

release-checklist scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- Bash(curl:*)
.devin/skills/release-checklist/SKILL.md · 188 lines

How it starts

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

Release Checklist

Pre-Release Verification

Code Quality

  • All CI checks passing (lint, test, build)
  • Coverage >= 90% lines, >= 80% branches
  • No TODO/FIXME items in critical paths
  • Type hints on all public functions

Model Quality

  • Quality gates passing for all services
  • Fairness checks passed (DIR >= 0.80)
  • SHAP consistency verified
  • No data leakage detected

Infrastructure

  • Terraform plan shows no unexpected changes
  • tfsec/checkov clean (no HIGH/CRITICAL findings)
  • Secrets rotated if approaching expiry

Documentation

  • ADRs up to date for any new decisions
  • Service READMEs updated with new metrics
  • AGENTS.md updated if new invariants
  • CHANGELOG.md updated

Version Tagging

# Update version
export VERSION=v{MAJOR}.{MINOR}.{PATCH}

# Tag and push
git tag -a ${VERSION} -m "Release ${VERSION}: {summary}"
git push origin ${VERSION}

Build and Push Images

# For each service
for SERVICE in service-a service-b service-c; do
  # GCP Artifact Registry
  docker build -t ${GCP_REGISTRY}/${SERVICE}:${VERSION} ${SERVICE}/
  docker push ${GCP_REGISTRY}/${SERVICE}:${VERSION}

  # AWS ECR
  docker build -t ${AWS_REGISTRY}/${SERVICE}:${VERSION} ${SERVICE}/
  docker push ${AWS_REGISTRY}/${SERVICE}:${VERSION}
done

Deploy to GCP

# Update overlays (production environment for release)
# k8s/overlays/gcp-prod/kustomization.yaml → newTag: ${VERSION} (CI replaces with @sha256 digest)
kubectl apply -k k8s/overlays/gcp-prod/
kubectl rollout status deployment --all -n {namespace} --timeout=300s

Deploy to AWS

# Update overlays (production environment for release)
# k8s/overlays/aws-prod/kustomization.yaml → newTag: ${VERSION} (CI replaces with @sha256 digest)
kubectl apply -k k8s/overlays/aws-prod/
kubectl rollout status deployment --all -n {namespace} --timeout=300s

Post-Deploy Verification

Both Clouds

  • /health returning 200 on all services
  • /predict returning valid predictions
  • /metrics being scraped by Prometheus
  • Grafana dashboards showing new version
  • No P1/P2 alerts in AlertManager
  • HPA functioning (correct replica counts)

Read the full file on GitHub · 188 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. 8d ago First seen · 188 lines · 17 tokens per session scan A 67372e71625d

Subscribe to this mod's changes

release-checklist is a skill published in the GitHub repository DuqueOM/ML-MLOps-Portfolio (5 stars, last pushed today), licensed MIT. It adds 17 tokens to every session and 1,648 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.