Pulls MLflow documentation straight from the source by querying their llms.txt index and fetching the raw markdown files. You'd use this when working with MLflow's LLM tracking, tracing, or integrations and need accurate code examples without wading through search results or outdated Stack Overflow posts. The workflow is strict about avoiding HTML files and web search, which makes sense since MLflow's docs are well-structured and versioned. One thing to note is the llms.txt index only covers GenAI topics, so if you're working with classic ML tracking features, you might need to supplement with direct doc browsing. The emphasis on verbatim code blocks is smart since summarized examples tend to skip the details that actually matter.
npx -y skills add mlflow/skills --skill searching-mlflow-docs --agent claude-codeInstalls into .claude/skills of the current project.
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.
supercent-io/skills-template
supercent-io/skills-template
huangjia2019/claude-code-engineering
reactjs/react.dev
reactjs/react.dev