Skip to content

Commit 3402d26

Browse files
authored
Merge branch 'main' into update-microsoft-docs-skill
2 parents ae7bb2a + d99ba71 commit 3402d26

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Discover our curated collections of prompts, instructions, and agents organized
2626
| [Partners](collections/partners.md) | Custom agents that have been created by GitHub partners | 20 items | devops, security, database, cloud, infrastructure, observability, feature-flags, cicd, migration, performance |
2727

2828

29-
## MCP Server
29+
## How to Install Customizations
3030

31-
To make it easy to add these customizations to your editor, we have created a [MCP Server](https://developer.microsoft.com/blog/announcing-awesome-copilot-mcp-server) that provides a prompt for searching and installing prompts, instructions, agents, and skills directly from this repository. You'll need to have Docker installed and running to run the server.
31+
To make it easy to add these customizations to your editor, we have created an [MCP Server](https://developer.microsoft.com/blog/announcing-awesome-copilot-mcp-server) that provides a prompt for searching and installing prompts, instructions, agents, and skills directly from this repository. You'll need to have Docker installed and running to run the MCP server locally.
3232

3333
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/mcp/vscode) [![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/mcp/vscode-insiders) [![Install in Visual Studio](https://img.shields.io/badge/Visual_Studio-Install-C16FDE?logo=visualstudio&logoColor=white)](https://aka.ms/awesome-copilot/mcp/vs)
3434

@@ -69,7 +69,7 @@ Plugins are installable packages generated from collections. Each plugin contain
6969
First, add the Awesome Copilot marketplace to your Copilot CLI:
7070

7171
```bash
72-
copilot marketplace add github/awesome-copilot
72+
copilot plugin marketplace add github/awesome-copilot
7373
```
7474

7575
Then install any plugin from the collection:

instructions/code-review-generic.instructions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ Explanation of the impact or reason for the suggestion.
242242
### Example Comments
243243

244244
#### Critical Issue
245-
```markdown
245+
````markdown
246246
**🔴 CRITICAL - Security: SQL Injection Vulnerability**
247247

248248
The query on line 45 concatenates user input directly into the SQL string,
@@ -265,10 +265,10 @@ stmt.setString(1, email);
265265
```
266266

267267
**Reference:** OWASP SQL Injection Prevention Cheat Sheet
268-
```
268+
````
269269

270270
#### Important Issue
271-
```markdown
271+
````markdown
272272
**🟡 IMPORTANT - Testing: Missing test coverage for critical path**
273273

274274
The `processPayment()` function handles financial transactions but has no tests
@@ -290,10 +290,10 @@ test('should process full refund when order is cancelled', () => {
290290
expect(result.status).toBe('refunded');
291291
});
292292
```
293-
```
293+
````
294294

295295
#### Suggestion
296-
```markdown
296+
````markdown
297297
**🟢 SUGGESTION - Readability: Simplify nested conditionals**
298298

299299
The nested if statements on lines 30-40 make the logic hard to follow.
@@ -318,7 +318,7 @@ if (!user || !user.isActive || !user.hasPermission('write')) {
318318
}
319319
// do something
320320
```
321-
```
321+
````
322322

323323
## Review Checklist
324324

0 commit comments

Comments
 (0)