You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { RULES_AND_INSTRUCTIONS_PROMPT } from "@site/src/utils/ai-prompts";
13
13
import PromptButton from "@site/src/components/PromptButton";
14
14
15
-
The following documents describe how you can leverage llms.txt and llms-full.txt in AI IDEs, create rules and instructions files, and follow best practices for AI assistant coding.
15
+
The following documents describe:
16
+
17
+
-[How you can leverage llms.txt and llms-full.txt in AI IDEs](#use-llmstxt-and-llms-fulltxt)
18
+
-[Create rules and instructions files](#add-rules)
19
+
-[Best practices for AI assistant coding](#best-practices)
16
20
17
21
### Documentation for LLMs: llms.txt and llms-full.txt
18
22
19
-
Search engines weren't built for Large Language Modals (LLMs), but AI needs context. That's why we created `llms.txt` and `llms-full.txt` for our documentation. These files follow the [growing standard](https://llmstxt.org/) for LLMs consumption.
23
+
Search engines weren't built for Large Language Modals (LLMs), but LLMs needs context. That's why we created `llms.txt` and `llms-full.txt` for our documentation. These files follow the [growing standard](https://llmstxt.org/) for LLMs consumption.
20
24
21
25
Find them here:
22
26
@@ -102,10 +106,10 @@ As the project evolves, you might introduce new things. Always make sure that yo
102
106
103
107
### Best practices
104
108
105
-
-**Small tasks**: Don't ask AI for many tasks at once. Break complex problems into smaller pieces. Solve them step by step.
109
+
-**Small tasks**: Don't ask LLMs for many tasks at once. Break complex problems into smaller pieces. Solve them step by step.
106
110
107
-
-**Iterative approach**: Work iteratively with clear steps. Start with a basic implementation. Improve it based on feedback and testing.
111
+
-**Iterative approach**: Work iteratively with clear steps. Start with a basic implementation and gradually add complexity.
108
112
109
113
-**Versioning**: Version your changes often using git. This lets you track changes, roll back if needed, and maintain a clear history.
110
114
111
-
-**Security**: Don't expose API keys, secrets, or sensitive information in your code or conversations with AI assistants.
115
+
-**Security**: Don't expose API keys, secrets, or sensitive information in your code or conversations with LLM assistants.
0 commit comments