-
Notifications
You must be signed in to change notification settings - Fork 120
Description
Component
Instruction Files
Bug Description
In this documentation page: https://github.com/microsoft/hve-core/blob/main/docs/getting-started/methods/peer-clone.md
Step 2: Update VS Code Settings
Create or update .vscode/settings.json in your project:
{
"chat.agentFilesLocations": { "../hve-core/.github/agents": true },
"chat.promptFilesLocations": { "../hve-core/.github/prompts": true },
"chat.instructionsFilesLocations": { "../hve-core/.github/instructions": true }
}
need to be updated to the current project folder structure. e.g.
"chat.agentFilesLocations": { "../hve-core/.github/agents/hve-core": true },
"chat.promptFilesLocations": { "../hve-core/.github/prompts/hve-core": true },
"chat.instructionsFilesLocations": { "../hve-core/.github/instructions/hve-core": true }
Expected Behavior
Documentation bug. The agents do not open until you fix the paths as below:
"chat.agentFilesLocations": { "../hve-core/.github/agents/hve-core": true },
"chat.promptFilesLocations": { "../hve-core/.github/prompts/hve-core": true },
"chat.instructionsFilesLocations": { "../hve-core/.github/instructions/hve-core": true }
Steps to Reproduce
No response
Additional Context
No response