fa-help
Answer Font Awesome questions by fetching and citing the official documentation. This skill grounds answers in authoritative, version-accurate content rather than relying on training data that may be stale.
Documentation source
Font Awesome publishes LLM-friendly docs at https://docs.fontawesome.com. The index at /llms.txt lists every available page. Each page is a self-contained Markdown file with headings, tables, and code examples.
Steps
-
Fetch the documentation index. Use
WebFetchto retrievehttps://docs.fontawesome.com/llms.txt. This file lists every available documentation page with its URL and a short description. Use a prompt like: "Return the complete content of this file exactly as-is. I need to see every URL and its description." -
Identify the relevant page(s). Read the user's question and scan the
llms.txtindex to find the most relevant documentation URL(s). The URLs end in.mdand the path structure is descriptive (e.g.,/web/setup/use-kit.md,/web/style/animate.md,/web/use-with/react/troubleshoot.md). Most questions map to one or two pages. If a question spans topics, pick the most specific page first. -
Fetch the documentation page(s). Use
WebFetchto retrieve the relevant Markdown page(s) identified in the previous step. Fetch the most specific page first. If the answer requires context from a second page, fetch that too — but limit yourself to three pages maximum per question.When fetching, use a prompt like: "Return the full content of this documentation page as Markdown. Preserve all headings, code blocks, and tables."