searching-mlflow-docs

Retrieves MLflow documentation pages and code examples from the official docs site.

Updated Mar 5, 2026
One-click install
npx skills add https://github.com/FMurray/mlfts --skill searching-mlflow-docs-fmurray
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: searching-mlflow-docs
Source: https://github.com/FMurray/mlfts/tree/main/.agents/skills/searching-mlflow-docs
Command: npx skills add https://github.com/FMurray/mlfts --skill searching-mlflow-docs-fmurray

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Finding accurate, up-to-date MLflow documentation is difficult when web searches return outdated or third-party content. This Skill retrieves documentation directly from the official MLflow docs site using its llms.txt index, ensuring answers come from current first-party sources with verbatim code examples. ## Core Features & Use Cases - Index-driven lookup: Fetches the official llms.txt index to locate the correct documentation page before retrieving content, avoiding guessed or broken URLs. - Verbatim code retrieval: Pulls raw Markdown source files so code examples are returned exactly as published, without summarization. - Use Case: When you ask "how do I use MLflow tracing with LangChain", the Skill locates the relevant integration page in the index and returns the official code samples for your implementation. ## Quick Start Ask how to use an MLflow feature or integration, such as "find the MLflow docs for autologging with OpenAI".

Frequently Asked Questions about searching-mlflow-docs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find official MLflow documentation for a specific feature?

Start from the llms.txt index at mlflow.org/docs/latest/llms.txt to locate the relevant page path, then fetch the corresponding .md file. This guarantees the content comes from the official docs rather than outdated third-party sources.

How do I get MLflow code examples without summarization?

Fetch the .md source of the documentation page with a prompt like "Return all code blocks verbatim. Do not summarize." Vague prompts such as "extract the documentation" allow the fetcher to summarize and drop code.

Does the MLflow llms.txt index cover all documentation topics?

No, the llms.txt index covers LLM and GenAI documentation only. For classic ML tracking features, the relevant paths may differ and may not appear in the index.

Why should I avoid WebSearch when looking up MLflow docs?

Web search frequently returns outdated pages or third-party content that may not match the current MLflow API. Starting from the official llms.txt index ensures the retrieved documentation is current and first-party.

Can I fetch a specific older MLflow documentation version?

By default the Skill uses /docs/latest/ paths and avoids versioned URLs like /docs/3.8/. Versioned paths are only used when the user explicitly requests a specific MLflow version.