Skip to content

Commit 2898168

Browse files
authored
update llms documentation and translation, remove outdated zh version (#907)
1 parent 9f3ef4d commit 2898168

3 files changed

Lines changed: 41 additions & 41 deletions

File tree

src/content/docs/docs/llms.mdx

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,32 @@
22
title: Docs for LLMs
33
---
44

5-
This page provides links and guidance for LLM crawlers.
5+
import { Aside } from '@astrojs/starlight/components';
66

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>
810

9-
### Files
11+
## llms.txt
1012

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.
1414

15-
### Notes
15+
This site offers the following files:
1616

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
1920

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.
2122

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
2324

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:
2530

2631
```bash
2732
npx skills add https://github.com/feature-sliced/skills --skill feature-sliced-design
2833
```
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.

src/content/docs/ru/docs/llms.mdx

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,32 @@
22
title: Документация для LLM
33
---
44

5-
Эта страница содержит ссылки и инструкции для LLM-краулеров.
5+
import { Aside } from '@astrojs/starlight/components';
66

7-
- Спецификация: https://llmstxt.org/
7+
<Aside type="caution">
8+
Эти инструменты предназначены для того, чтобы помочь ИИ-агентам и LLM более эффективно применять концепции Feature-Sliced Design. Однако все окончательные архитектурные решения должны приниматься разработчиками-людьми.
9+
</Aside>
810

9-
### Файлы
11+
## llms.txt
1012

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/) предоставляет удобную для LLM информацию о сайте. Он помогает большим языковым моделям более точно понимать и использовать содержимое сайта.
1414

15-
### Примечания
15+
Этот сайт предлагает следующие файлы:
1616

17-
- Файлы отдаются из корня сайта, независимо от пути текущей страницы.
18-
- При развертывании с базовым URL, отличным от корневого (например, `/documentation/`), к ссылкам выше автоматически добавляется префикс.
17+
- [llms.txt](/llms.txt) — перечисляет доступные наборы документации
18+
- [llms-small.txt](/llms-small.txt) — компактная версия документации Feature-Sliced Design
19+
- [llms-full.txt](/llms-full.txt) — полная документация Feature-Sliced Design
20+
21+
Все файлы доступны из корня сайта (`/`) независимо от текущего пути страницы. В развёртываниях с некорневым базовым URL (например, `/documentation/`), ссылки автоматически корректируются с правильным префиксом.
22+
23+
## Skills
24+
25+
[Skills](https://vercel.com/docs/agent-resources/skills) — это переиспользуемые инструкции, разработанные для ИИ-агентов (Codex, Claude Code, OpenCode и других). В отличие от статических файлов `llms.txt`, Skill можно установить непосредственно в ваш проект и активировать по мере необходимости.
26+
27+
- [Feature-Sliced Design Skill](https://skills.sh/feature-sliced/skills/feature-sliced-design) — официальный, поддерживаемый сообществом Skill, основанный на официальной документации FSD.
28+
29+
Вы можете установить Skill с помощью CLI `skills`:
30+
31+
```bash
32+
npx skills add https://github.com/feature-sliced/skills --skill feature-sliced-design
33+
```

src/content/docs/zh/docs/llms.mdx

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)