
Skill
searching-mlflow-docs
search and retrieve MLflow documentation
Description
Searches and retrieves MLflow documentation from the official docs site. Use when the user asks about MLflow features, APIs, integrations (LangGraph, LangChain, OpenAI, etc.), tracing, tracking, or requests to look up MLflow documentation. Triggers on "how do I use MLflow with X", "find MLflow docs for Y", "MLflow API for Z".
SKILL.md
MLflow Documentation Search
Workflow
- Fetch
https://mlflow.org/docs/latest/llms.txtto find relevant page paths - Fetch the
.mdfile at the identified path - Present results with verbatim code examples
Step 1: Fetch llms.txt Index
WebFetch(
url: "https://mlflow.org/docs/latest/llms.txt",
prompt: "Find links or references to [TOPIC]. List all relevant URLs."
)
Step 2: Fetch Target Documentation
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."
)
Anti-Patterns
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.
More skills from the skills repository
View all 11 skillsagent-evaluation
evaluate and optimize LLM agent output
Jul 14AgentsEvalsMLflowPerformanceanalyzing-mlflow-session
analyze MLflow chat conversation sessions
Jul 14DebuggingMLflowObservabilityTracinganalyzing-mlflow-trace
analyze MLflow traces
Jul 14DebuggingMLflowObservabilityTracingfix-agent-issue
fix and update AI agent behavior
Jul 30AgentsBest PracticesDebuggingEngineering +1instrumenting-with-mlflow-tracing
instrument Python and TypeScript with MLflow Tracing
Jul 20AgentsEvalsMLflowObservability +3mlflow-agent
dispatch MLflow workflows and agent tasks
Jul 14AgentsMLflowMLOpsTracing
More from MLflow
View publishersetup
configure MLflow tracing
mlflow
Jul 14Claude CodeMLflowTracingstatus
display MLflow tracing configuration
mlflow
Jul 14Claude CodeMLflowTracingmlflow-onboarding
onboard users to MLflow workflows
skills
Jul 14MLflowMLOpsOnboardingquerying-mlflow-metrics
fetch trace metrics from MLflow servers
skills
Jul 14AnalyticsMetricsMLflowObservabilityretrieving-mlflow-traces
retrieve and query MLflow traces
skills
Jul 14DebuggingMLflowObservabilityTracingsagemaker-mlflow
connect to SageMaker Managed MLflow
skills
Jul 14AI InfrastructureAWSMLflowMLOps