This is the README for your extension "compilesave". After writing up a brief description, we recommend including the following sections.
Describe specific features of your extension including screenshots of your extension in action. Image paths are relative to this README file.
For example if there is an image subfolder under your extension project workspace:

Tip: Many popular extensions utilize animations. This is an excellent way to show off your extension! We recommend short, focused animations that are easy to follow.
This extension uses a Python helper that calls the Google Gemini (GenAI) API. To enable the AI helper:
- Set the
GEMINI_API_KEYenvironment variable (temporarily in terminal):
export GEMINI_API_KEY="your_api_key_here"- Or add it to your development launcher at
.vscode/launch.jsonunderenv(do NOT commit keys to source control):
"env": {
"GEMINI_API_KEY": "YOUR_API_KEY_HERE"
}- Install the Python dependency (recommended in a virtualenv):
python3 -m pip install google-genaiIf the environment variable or the google-genai package is not available, the extension falls back to an offline message explaining how to configure the API. The extension will prompt you and offer to open this README or your launch.json when it detects the offline fallback.
If you prefer not to use the Gemini API, the extension still provides quick-fix and terminal helpers but will show an offline notice when asked to explain an error.
Include if your extension adds any VS Code settings through the contributes.configuration extension point.
For example:
This extension contributes the following settings:
myExtension.enable: Enable/disable this extension.myExtension.thing: Set toblahto do something.
Calling out known issues can help limit users opening duplicate issues against your extension.
Users appreciate release notes as you update your extension.
Initial release of ...
Fixed issue #.
Added features X, Y, and Z.
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
- Split the editor (
Cmd+\on macOS orCtrl+\on Windows and Linux) - Toggle preview (
Shift+Cmd+Von macOS orShift+Ctrl+Von Windows and Linux) - Press
Ctrl+Space(Windows, Linux, macOS) to see a list of Markdown snippets
Enjoy!