From MLflow Skills
Searches and retrieves MLflow documentation from the official docs site using the llms.txt index. Use for MLflow API lookups, integration docs for LangChain/OpenAI, and tracing/tracking features.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mlflow:searching-mlflow-docsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
1. Fetch `https://mlflow.org/docs/latest/llms.txt` to find relevant page paths
https://mlflow.org/docs/latest/llms.txt to find relevant page paths.md file at the identified pathWebFetch(
url: "https://mlflow.org/docs/latest/llms.txt",
prompt: "Find links or references to [TOPIC]. List all relevant URLs."
)
Use the path from Step 1, always with .md extension:
WebFetch(
url: "https://mlflow.org/docs/latest/[path].md",
prompt: "Return all code blocks verbatim. Do not summarize."
)
Do not use .html files — Fetch .md source files only.
Do not use WebSearch — Always start from llms.txt; web search returns outdated or third-party content.
Do not use vague prompts — "Extract complete documentation" allows summarization. Use "Return all code blocks verbatim. Do not summarize."
Do not use versioned paths — Always use /docs/latest/, never /docs/3.8/ or other versions unless the user explicitly requests a specific version.
Do not guess URLs — Always verify paths exist in llms.txt before fetching. Never construct documentation paths from assumptions.
Do not follow external links — Stay within mlflow.org/docs. Do not follow links to GitHub, PyPI, or third-party sites.
Do not mix sources — Use only MLflow docs. Do not combine with LangChain docs, OpenAI docs, or other external documentation.
Do not use llms.txt for non-GenAI topics — The llms.txt index covers LLM/GenAI documentation only. For classic ML tracking features, paths may differ.
npx claudepluginhub mlflow/skillsDetermines a user's MLflow use case (GenAI or traditional ML) and guides them through relevant quickstart tutorials and initial integration steps.
Activates senior ML engineer mode with Leeroopedia KB (27k+ pages on vLLM, SGLang, DeepSpeed, Axolotl) enforcing lookups, citations, and grounding before code in ML/AI discussions.
References Databricks documentation via llms.txt index. Use for unfamiliar features, APIs, configurations, platform capabilities, or when other skills lack coverage.