惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
罗磊的独立博客
B
Blog
博客园_首页
A
About on SuperTechFans
有赞技术团队
有赞技术团队
V
V2EX
U
Unit 42
I
InfoQ
IT之家
IT之家
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
H
Help Net Security

Mintlify Blog

22 UX improvements to the web editor Introducing the Mintlify Help Center Starter Kit Introducing the collaborative editor built for teams and agents Workflows, rebuilt Is your documentation agent-ready? Mintlify raises $45M Series B led by Andreessen Horowitz and Salesforce Ventures 5 things you didn't know you could do in the Mintlify web editor The improved Mintlify CLI Docs on autopilot: From zero to self-maintaining with Mintlify The state of agent traffic in documentation (March 2026) How we built a virtual filesystem for our Assistant We Replaced Our Internal Wiki With a Slack Bot. You Should Too. 8 ways teams use Mintlify to keep docs updated automatically Documentation is your AI interface What three years of watching AI in production taught us Bridging two JSX runtimes: How we solved Astro's React children problem AI agents are shipping faster than anyone can document Knowledge management systems for technical teams Workflows: Automate documentation maintenance Mintlify acquires Helicone to redefine AI knowledge infrastructure Why more product managers are switching to Mintlify Auto-generating documentation sites from GitHub repos Your docs, your frontend, our content engine Take control of your documentation system Almost half your docs traffic is AI, time to understand the agent experience @mintlify for better docs, faster Mintlify for Enterprise Real llms.txt examples from leading tech companies (and what they got right) Mintlify + Claude Opus 4.6: Powering AI-native knowledge management Declaring Clankruptcy: An experiment in agent orchestration
Your docs are now discoverable by agents
Michael Ryaboy · 2026-01-28 · via Mintlify Blog

You can now install skills from any Mintlify documentation site with one command:

npx skills add https://mintlify.com/docs

You don't need to know the file path where the skill is located or anything about how the site is structured. The CLI discovers and installs the skill automatically.

Skills discovery from a URL

This is built on Cloudflare's Agent Skills Discovery RFC, which extends RFC 8615. RFC 8615 defines the /.well-known/ path prefix that powers ACME certificate validation, security.txt, and dozens of other web standards. By putting a resource at a predictable URL, tools can find it without configuration.

Sites publish a JSON index at a predictable path that lists available skills along with their descriptions and files:

https://example.com/docs/.well-known/skills/index.json
{
  "skills": [
    {
      "name": "mintlify",
      "description": "Build and maintain documentation sites with Mintlify.",
      "files": ["SKILL.md"]
    }
  ]
}

When you run npx skills add <url>, the CLI fetches this index, shows you what's available, and installs it to your agents.

Every Mintlify docs site already serves /.well-known/skills/ automatically. Your skill is generated from your documentation and stays up to date on every deploy, so anyone can install your product's skill with just your docs URL.

If you want to customize what agents learn about your product, place a skill.md in the root of your docs repository and it will override the auto-generated version. For guidance on writing effective skills, see our post on skill.md.

Pick any Mintlify-powered docs site and run:

npx skills add <docs-url>

The CLI detects your installed agents (Claude Code, Cursor, Windsurf, and others) and lets you install to all of them at once or select specific ones.

For background on why skills matter and how they complement MCP, see Why do we need MCP if skills exist now?.