- Go to the Releases page
- Download the latest
awesome-palette-vscode-*.vsixfile - Open VS Code
- Open the Extensions view (
Ctrl+Shift+Xon Windows/Linux orCmd+Shift+Xon Mac) - Click the "..." menu at the top of the Extensions view
- Select "Install from VSIX..."
- Choose the downloaded
.vsixfile - Reload VS Code when prompted
Once published, you'll be able to:
- Open VS Code Extensions view
- Search for "Awesome Copilot Palette"
- Click Install
For contributors or developers who want to work on the extension:
# Clone the repository
git clone https://github.com/abhishek-dwaraki_hpeprod/awesome-palette.git
cd awesome-palette
# Install dependencies
npm install
# Build all packages
npm run build
# Package the extension
cd packages/vscode
npm run package
# Install the generated .vsix file
code --install-extension awesome-palette-vscode-*.vsixAfter installation, verify the extension is working:
- Look for the "Awesome Copilot Palette" icon in the Activity Bar (left sidebar)
- Click it to open the Catalog view
- You should see available instructions, prompts, agents, and cookbooks
The extension can be configured via VS Code settings. Search for "Awesome Palette" in the settings panel or add to your settings.json:
{
"awesome-palette.remoteRepositories": [
{
"owner": "github",
"repo": "awesome-copilot",
"branch": "main",
"enabled": true
}
],
"awesome-palette.enableOnlineFetching": true,
"awesome-palette.githubToken": "",
"awesome-palette.cache.enabled": true,
"awesome-palette.cache.onlineTtlMs": 10800000,
"awesome-palette.cache.enhancedTtlMs": 1800000
}- Reload VS Code (Command Palette → "Developer: Reload Window")
- Check that your VS Code version is 1.85.0 or higher
- Check if online fetching is enabled in settings
- Verify network connectivity
- Try refreshing the catalog (Command Palette → "Awesome Palette: Refresh Catalog")
- Add a GitHub Personal Access Token in settings under
awesome-palette.githubToken - This increases your GitHub API rate limit from 60 to 5000 requests/hour
- Open Extensions view
- Find "Awesome Copilot Palette"
- Click the gear icon → Uninstall
- Reload VS Code
For issues or questions, please open an issue on the GitHub repository.