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: src/extension/tools/node/newWorkspace/newWorkspaceTool.tsx
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -142,12 +142,12 @@ export class NewWorkspaceCreationResult extends PromptElement<NewWorkspaceElemen
142
142
143
143
return<>
144
144
<TextChunk>
145
-
Create or update the file `.github/copilot-instructions.md` with the exact content shown below.<br/>
145
+
Create or update the copilot-instructions.md file in the .github directory with the exact content shown below.<br/>
146
146
<br/>
147
147
</TextChunk>
148
148
<UnsafeCodeBlockcode={`
149
149
<!-- Use this file to provide workspace-specific custom instructions to Copilot. For more details, visit https://code.visualstudio.com/docs/copilot/copilot-customization#_use-a-githubcopilotinstructionsmd-file -->
150
-
- [ ] Verify that .github/copilot-instructions.md is created.
150
+
- [ ] Verify that the copilot-instructions.md file in the .github directory is created.
151
151
152
152
- [ ] Clarify Project Requirements
153
153
<!-- Ask for project type, language, and frameworks if not specified. Skip if already provided. -->
@@ -197,8 +197,8 @@ export class NewWorkspaceCreationResult extends PromptElement<NewWorkspaceElemen
197
197
- [ ] Ensure Documentation is Complete
198
198
<!--
199
199
Verify that all previous steps have been completed.
200
-
Verify that README.md and .github/copilot-instructions.md exists and contains current project information.
201
-
Clean up .github/copilot-instructions.md by removing all HTML comments.
200
+
Verify that README.md and the copilot-instructions.md file in the .github directory exists and contains current project information.
201
+
Clean up the copilot-instructions.md file in the .github directory by removing all HTML comments.
202
202
-->
203
203
204
204
<!--
@@ -243,7 +243,7 @@ PROJECT CONTENT RULES:
243
243
TASK COMPLETION RULES:
244
244
- Your task is complete when:
245
245
- Project is successfully scaffolded and compiled without errors
246
-
- .github/copilot-instructions.md exists in the project
246
+
- copilot-instructions.md file in the .github directory exists in the project
247
247
- README.md file exists and is up to date
248
248
- User is provided with clear instructions to debug/launch the project
249
249
@@ -255,8 +255,8 @@ Before starting a new task in the above plan, update progress in the plan.
255
255
`}languageId='markdown'></UnsafeCodeBlock>
256
256
<TextChunk>
257
257
<br/>
258
-
Verify that a .github/copilot-instructions.md file exists and systematically work through each item in the task list.<br/>
259
-
Update the .github/copilot-instructions.md file directly as you complete each step.<br/>
258
+
Verify that a copilot-instructions.md file in the .github directory exists and systematically work through each item in the task list.<br/>
259
+
Update the copilot-instructions.md file in the .github directory directly as you complete each step.<br/>
260
260
<br/>
261
261
If the user asks to "continue," refer to the previous steps and proceed accordingly.
'Follow these rules strictly and do not deviate from them.',
101
101
'1. First, visit https://github.com/modelcontextprotocol to find the correct SDK and setup instructions for the requested language. Default to TypeScript if no language is specified.',
102
102
`2. Use the ${ToolName.FetchWebPage} to find the correct implementation instructions from https://modelcontextprotocol.io/llms-full.txt`,
103
-
'3. Update the `copilot-instructions.md` to include references to the SDK documentation',
103
+
'3. Update the copilot-instructions.md file in the .github directory to include references to the SDK documentation',
104
104
'4. Create an `mcp.json` file in the `.vscode` folder in the project root with the following content: `{ "servers": { "mcp-server-name": { "type": "stdio", "command": "command-to-run", "args": [list-of-args] } } }`.',
105
105
'- mcp-server-name: The name of the MCP server. Create a unique name that reflects what this MCP server does.',
106
106
'- command-to-run: The command to run to start the MCP server. This is the command you would use to run the project you just created.',
0 commit comments