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
Copy file name to clipboardExpand all lines: docs/posts/2025/2025-08-31-vibe-coding-cheat-sheet.md
+31-3Lines changed: 31 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,41 @@ date:
14
14
15
15
# Vibe coding cheat sheet
16
16
17
-
Some useful patterns for Vibe coding. This blog will be regularly updated with new tips and tricks.
17
+
Some useful patterns for Vibe coding. This blog will be regularly updated with new tips.
18
18
19
19
<!-- more -->
20
20
21
-
## Github Copilot instructions
21
+
## Github Copilot Instructions
22
22
23
-
[Azure SDK for Python copilot instructions](https://github.com/Azure/azure-sdk-for-python/blob/main/.github/copilot-instructions.md)
23
+
[Custom instructions](https://code.visualstudio.com/docs/copilot/customization/custom-instructions?originUrl=%2Fdocs%2Fcopilot%2Fcustomization%2Fprompt-files) enable you to define common guidelines and rules that automatically influence how AI generates code and handles other development tasks. Instead of manually including context in every chat prompt, specify custom instructions in a Markdown file to ensure consistent AI responses that align with your coding practices and project requirements.
24
+
25
+
VSCode supports:
26
+
27
+
- A single instruction file at `.github/copilot-instructions.md`
28
+
- Multiple instruction files (`domain.instructions.md`) in the `.github/instructions` folder
29
+
30
+
Examples:
31
+
32
+
-[Azure SDK for Python copilot instructions](https://github.com/Azure/azure-sdk-for-python/blob/main/.github/copilot-instructions.md)
33
+
- Example to add multiple instruction files: [microsoft/vscode-jupyter: Component-Specific Instructions](https://github.com/microsoft/vscode-jupyter/blob/main/.github/copilot-instructions.md)
34
+
35
+
## Github Copilot Chat Modes
36
+
37
+
[VSCode chat modes](https://code.visualstudio.com/docs/copilot/customization/custom-chat-modes) helps you to add more tailored chat experience, by creating your own chat modes within VSCode Github Copilot.
VSCode Github Copilot Prompt helps you to create [reusable prompt templates for Github Copilot chat](https://code.visualstudio.com/docs/copilot/customization/prompt-files) in the `.github/prompts` folder.
0 commit comments