|
| 1 | +--- |
| 2 | +sidebar_position: 3 |
| 3 | +summary: Documentation files optimized for AI coding assistants to give them context about the Teams SDK. |
| 4 | +--- |
| 5 | + |
| 6 | +# llms.txt |
| 7 | + |
| 8 | +The Teams SDK publishes [llms.txt](https://llmstxt.org) files, plain-text versions of the documentation optimized for AI coding assistants. Point your tool at the right file and it gets the context it needs to help you build Teams apps. |
| 9 | + |
| 10 | +## Available files |
| 11 | + |
| 12 | +### Root |
| 13 | + |
| 14 | +High-level SDK overview with links to reference guides. |
| 15 | + |
| 16 | +``` |
| 17 | +https://microsoft.github.io/teams-sdk/llms_docs/llms.txt |
| 18 | +``` |
| 19 | + |
| 20 | +:::tip |
| 21 | +Instead of manually providing URLs, you can install the [`teams-dev` agent skill](./agent-skills) which automatically gives your coding assistant the right context. |
| 22 | +::: |
| 23 | + |
| 24 | +### Per-language |
| 25 | + |
| 26 | +import Tabs from '@theme/Tabs'; |
| 27 | +import TabItem from '@theme/TabItem'; |
| 28 | + |
| 29 | +<Tabs> |
| 30 | +<TabItem value="typescript" label="TypeScript"> |
| 31 | + |
| 32 | +**Small** — navigation index, the assistant fetches individual pages as needed. |
| 33 | +``` |
| 34 | +https://microsoft.github.io/teams-sdk/llms_docs/llms_typescript.txt |
| 35 | +``` |
| 36 | + |
| 37 | +**Full** — complete documentation in a single file, best for tools with large context windows. |
| 38 | +``` |
| 39 | +https://microsoft.github.io/teams-sdk/llms_docs/llms_typescript_full.txt |
| 40 | +``` |
| 41 | + |
| 42 | +</TabItem> |
| 43 | +<TabItem value="python" label="Python"> |
| 44 | + |
| 45 | +**Small** — navigation index, the assistant fetches individual pages as needed. |
| 46 | +``` |
| 47 | +https://microsoft.github.io/teams-sdk/llms_docs/llms_python.txt |
| 48 | +``` |
| 49 | + |
| 50 | +**Full** — complete documentation in a single file, best for tools with large context windows. |
| 51 | +``` |
| 52 | +https://microsoft.github.io/teams-sdk/llms_docs/llms_python_full.txt |
| 53 | +``` |
| 54 | + |
| 55 | +</TabItem> |
| 56 | +<TabItem value="csharp" label="C#"> |
| 57 | + |
| 58 | +**Small** — navigation index, the assistant fetches individual pages as needed. |
| 59 | +``` |
| 60 | +https://microsoft.github.io/teams-sdk/llms_docs/llms_csharp.txt |
| 61 | +``` |
| 62 | + |
| 63 | +**Full** — complete documentation in a single file, best for tools with large context windows. |
| 64 | +``` |
| 65 | +https://microsoft.github.io/teams-sdk/llms_docs/llms_csharp_full.txt |
| 66 | +``` |
| 67 | + |
| 68 | +</TabItem> |
| 69 | +</Tabs> |
0 commit comments