1- # Prompts Sync Extension
1+ # Prompt Vault Extension
22
33> Automatically sync GitHub Copilot prompts from multiple Git repositories to your local VS Code environment.
44
@@ -28,7 +28,7 @@ The Prompts Sync Extension automatically synchronizes the latest GitHub Copilot
2828
2929### Installation
3030
31- 1 . Download the latest ` prompts-sync -extension.vsix` file from the releases
31+ 1 . Download the latest ` prompt-vault -extension.vsix` file from the releases
32322 . Open VS Code
33333 . Press ` Ctrl+Shift+P ` (or ` Cmd+Shift+P ` on macOS) to open the command palette
34344 . Type "Extensions: Install from VSIX" and select it
@@ -38,7 +38,7 @@ The Prompts Sync Extension automatically synchronizes the latest GitHub Copilot
3838### First-Time Setup
3939
40401 . Open VS Code Settings (` Ctrl+, ` or ` Cmd+, ` )
41- 2 . Search for "Prompts Sync "
41+ 2 . Search for "Prompt Vault "
42423 . Configure your preferences (optional - defaults work for most users)
43434 . The extension will automatically perform an initial sync
4444
@@ -48,16 +48,16 @@ The Prompts Sync Extension automatically synchronizes the latest GitHub Copilot
4848
4949| Setting | Description | Default | Type |
5050| ------------------------------- | -------------------------------- | -------------------------------------------------------------------- | ------- |
51- | ` promptsSync .enabled` | Enable/disable automatic syncing | ` true ` | boolean |
52- | ` promptsSync .frequency` | Sync frequency | ` "daily" ` | string |
53- | ` promptsSync .customPath` | Custom prompts directory path | ` "" ` | string |
54- | ` promptsSync .repositories` | List of repository URLs | ` ["https://github.com/MounirAbdousNventive/prompts-logient-nventive"] ` | array |
55- | ` promptsSync .branch` | Repository branch to sync | ` "master" ` | string |
56- | ` promptsSync .syncOnStartup` | Sync when VS Code starts | ` true ` | boolean |
57- | ` promptsSync .showNotifications` | Show sync status notifications | ` true ` | boolean |
58- | ` promptsSync .syncChatmode` | Sync chatmode prompts | ` true ` | boolean |
59- | ` promptsSync .syncInstructions` | Sync instructions prompts | ` true ` | boolean |
60- | ` promptsSync .syncPrompt` | Sync prompt files | ` true ` | boolean |
51+ | ` promptVault .enabled` | Enable/disable automatic syncing | ` true ` | boolean |
52+ | ` promptVault .frequency` | Sync frequency | ` "daily" ` | string |
53+ | ` promptVault .customPath` | Custom prompts directory path | ` "" ` | string |
54+ | ` promptVault .repositories` | List of repository URLs | ` ["https://github.com/MounirAbdousNventive/prompts-logient-nventive"] ` | array |
55+ | ` promptVault .branch` | Repository branch to sync | ` "master" ` | string |
56+ | ` promptVault .syncOnStartup` | Sync when VS Code starts | ` true ` | boolean |
57+ | ` promptVault .showNotifications` | Show sync status notifications | ` true ` | boolean |
58+ | ` promptVault .syncChatmode` | Sync chatmode prompts | ` true ` | boolean |
59+ | ` promptVault .syncInstructions` | Sync instructions prompts | ` true ` | boolean |
60+ | ` promptVault .syncPrompt` | Sync prompt files | ` true ` | boolean |
6161
6262### Sync Frequency Options
6363
@@ -75,7 +75,7 @@ The extension automatically detects the correct prompts directory for your opera
7575- ** Windows** : ` %APPDATA%\Code\User\prompts `
7676- ** Linux** : ` ~/.config/Code/User/prompts `
7777
78- You can override this by setting a custom path in ` promptsSync .customPath` .
78+ You can override this by setting a custom path in ` promptVault .customPath` .
7979
8080### Multiple Repository Configuration
8181
@@ -85,13 +85,13 @@ The extension supports syncing from multiple Git repositories simultaneously. Th
8585
86861 . ** Using VS Code Settings UI** :
8787 - Open Settings (` Ctrl+, ` or ` Cmd+, ` )
88- - Search for "promptsSync .repositories"
88+ - Search for "promptVault .repositories"
8989 - Click "Add Item" to add each repository URL
9090
91912 . ** Using JSON Configuration** :
9292 ``` json
9393 {
94- "promptsSync .repositories" : [
94+ "promptVault .repositories" : [
9595 " https://github.com/your-org/prompts-main" ,
9696 " https://github.com/your-org/prompts-experimental" ,
9797 " https://github.com/another-org/shared-prompts"
@@ -188,7 +188,7 @@ All files are placed directly in the `User/prompts/` directory, removing any sub
188188Enable debug logging:
189189
1901901 . Open VS Code Settings
191- 2 . Search for "promptsSync .debug"
191+ 2 . Search for "promptVault .debug"
1921923 . Enable debug mode
1931934 . Check the "Prompts Sync" output channel for detailed logs
194194
@@ -272,7 +272,7 @@ We welcome contributions to improve the extension! Please see our [Contribution
272272### Version 1.2.0 (Multiple Repository Support)
273273
274274- ✅ ** New Feature** : Support for syncing from multiple Git repositories
275- - ✅ Added ` promptsSync .repositories` array setting for multiple repository URLs
275+ - ✅ Added ` promptVault .repositories` array setting for multiple repository URLs
276276- ✅ Enhanced error handling for repository conflicts and failures
277277- ✅ Improved status display showing multi-repository sync results
278278- ✅ Graceful handling of partial sync success scenarios
@@ -282,9 +282,9 @@ We welcome contributions to improve the extension! Please see our [Contribution
282282### Version 1.1.0 (Selective Sync & Flattened Structure)
283283
284284- ✅ ** New Feature** : Selective sync settings for different prompt types
285- - ✅ Added ` promptsSync .syncChatmode` setting (default: true)
286- - ✅ Added ` promptsSync .syncInstructions` setting (default: true)
287- - ✅ Added ` promptsSync .syncPrompt` setting (default: true)
285+ - ✅ Added ` promptVault .syncChatmode` setting (default: true)
286+ - ✅ Added ` promptVault .syncInstructions` setting (default: true)
287+ - ✅ Added ` promptVault .syncPrompt` setting (default: true)
288288- ✅ Flattened folder structure - all files sync directly to ` User/prompts/ `
289289- ✅ Enhanced status display showing selected sync types
290290- ✅ Improved configurability and user control
0 commit comments