|
2 | 2 | title: Docs for LLMs |
3 | 3 | --- |
4 | 4 |
|
5 | | -This page provides links and guidance for LLM crawlers. |
| 5 | +import { Aside } from '@astrojs/starlight/components'; |
6 | 6 |
|
7 | | -- Spec: https://llmstxt.org/ |
| 7 | +<Aside type="caution"> |
| 8 | +These tools are meant to help AI agents and LLMs apply Feature-Sliced Design concepts more effectively. However, all final architectural decisions must be made by human developers. |
| 9 | +</Aside> |
8 | 10 |
|
9 | | -### Files |
| 11 | +## llms.txt |
10 | 12 |
|
11 | | -- <a href="/llms.txt">llms.txt</a> |
12 | | -- <a href="/llms-small.txt">llms-small.txt</a> |
13 | | -- <a href="/llms-full.txt">llms-full.txt</a> |
| 13 | +[llms.txt](https://llmstxt.org/) provides LLM-friendly information about a website. It helps large language models understand and use site content more accurately. |
14 | 14 |
|
15 | | -### Notes |
| 15 | +This site offers the following files: |
16 | 16 |
|
17 | | -- Files are served from the site root, regardless of the current page path. |
18 | | -- In deployments with a non-root base URL (e.g., `/documentation/`), the links above are automatically prefixed. |
| 17 | +- [llms.txt](/llms.txt) — lists available documentation sets |
| 18 | +- [llms-small.txt](/llms-small.txt) — a compact version of the Feature-Sliced Design documentation, with non-essential content removed |
| 19 | +- [llms-full.txt](/llms-full.txt) — the complete Feature-Sliced Design documentation |
19 | 20 |
|
20 | | -### AI Skills |
| 21 | +All files are served from the site root (`/`) regardless of the current page path. In deployments with a non-root base URL (e.g. `/documentation/`), links are automatically adjusted with the correct prefix. |
21 | 22 |
|
22 | | -[Skills](https://vercel.com/docs/agent-resources/skills) are reusable instruction packages for AI coding agents. Unlike the static llms.txt files above, a Skill can be installed in your project and used when relevant. |
| 23 | +## Skills |
23 | 24 |
|
24 | | -- [Feature-Sliced Design Skill](https://skills.sh/feature-sliced/skills/feature-sliced-design) — A community-maintained Skill based on the official FSD documentation, available for agents that support the Skills standard. |
| 25 | +[Skills](https://vercel.com/docs/agent-resources/skills) are reusable instruction packages designed for AI coding agents (Codex, Claude Code, OpenCode, and others). Unlike static `llms.txt` files, a Skill can be installed directly into your project and activated when relevant. |
| 26 | + |
| 27 | +- [Feature-Sliced Design Skill](https://skills.sh/feature-sliced/skills/feature-sliced-design) — an official, community-driven Skill based on the official FSD documentation. |
| 28 | + |
| 29 | +You can install the Skill using `skills` CLI: |
25 | 30 |
|
26 | 31 | ```bash |
27 | 32 | npx skills add https://github.com/feature-sliced/skills --skill feature-sliced-design |
28 | 33 | ``` |
29 | | - |
30 | | -These resources can help AI systems apply FSD concepts more effectively, but final architectural and design decisions should still be made by your team in the context of your project. |
|
0 commit comments