Transform simple prompts into powerful, context-rich instructions that help GitHub Copilot understand exactly what you need. This extension enhances your prompts by adding relevant technical context, best practices, and specific requirements that lead to better, more accurate responses.
- 🚀 Turn basic prompts into comprehensive instructions
- 💡 Get more accurate and relevant responses from GitHub Copilot
- ⏱️ Save time by automating prompt enhancement
- 🎯 Improve consistency in AI-generated code
- Create or open a
.prompt.md
file in the.github/prompts
folder - Write your basic prompt
- Either:
- Right-click and select "Boost Prompt"
- Use the editor menu and click "Boost Prompt"
- Open VS Code Chat
- Select Agent mode
- Write your prompt and ask Copilot to "boost" it
- Use the enhanced prompt for better results
Basic prompt:
Create a REST API for a todo app
Enhanced prompt:
Create a REST API for a todo app with the following specifications:
- Use Node.js with Express framework
- Implement CRUD operations for todo items
- Include input validation
- Follow RESTful best practices
- Add error handling
- Include API documentation
- Use async/await for database operations
- Implement proper status codes
- Node.js (v20 or later) and npm (v9 or later) https://nodejs.org/
Check your Node versions:
node -v
npm -v
git clone https://github.com/chrisdias/vscode-promptboost.git
cd vscode-promptboost
npm install && code-insiders . -r
Once in VS Code open the Debug View (Ctrl+Shift+D
) and select the Run Extension
target.
The extension will build and then a new instance of VS Code will open with the extension loaded. You can use this instance to test this extension.
Open the Chat View, choose the Agent mode, and write your prompt, asking Copilot to "boost" its power
"I want to create a new "ToDo" web app in node. First, boost this prompt with the prompt boost tool and then write the code for the app"