-
Install the extension:
code --install-extension promptitude-extension-1.0.0.vsix
-
Or install via VS Code UI:
- Open VS Code
- Press
Ctrl+Shift+P(orCmd+Shift+Pon macOS) - Type "Extensions: Install from VSIX"
- Select the
promptitude-extension.vsixfile
- Open in VS Code:
- Press F5 to launch Extension Development Host
-
Check GitHub Authentication:
- Open Command Palette (
Ctrl+Shift+P) - Type "GitHub: Sign In" if not already authenticated
- Open Command Palette (
-
Configure Extension (Optional):
- Go to Settings (
Ctrl+,) - Search for "Promptitude"
- Add a git repository to sync prompts from.
- Adjust settings as needed
- Go to Settings (
- Open Command Palette (
Ctrl+Shift+P) - Type: "Promptitude: Sync Now"
- Check status bar for sync progress indicators
- Verify prompts directory was created and populated
- Open Command Palette (
Ctrl+Shift+P) - Type: "Promptitude: Show Status"
- Review configuration and status information
- Enable debug mode:
- Settings → Search "promptitude.debug" → Enable
- View logs:
- View → Output → Select "Promptitude" channel
- Extension activates automatically
- Status bar shows "Prompts" with cloud icon
- If
syncOnStartupis enabled, performs initial sync - Creates prompts directory structure
- Status bar shows checkmark icon
- Notification appears (if enabled)
- Prompts directory populated with:
prompts/folder with development and code-review contentcopilot-instructions/folderlanguage-guidelines/folder
- macOS:
~/Library/Application Support/Code/User/prompts - Windows:
%APPDATA%\\Code\\User\\prompts - Linux:
~/.config/Code/User/prompts
-
Authentication Error:
- Ensure GitHub is connected in VS Code
- Check repository access permissions
-
Sync Fails:
- Check internet connection
- Verify repository URL in settings
- Check debug logs for detailed error
-
Directory Permissions:
- Ensure VS Code has write permissions to user directory
- Try setting custom path in settings
# Check if extension is loaded
code --list-extensions | grep promptitude
# View extension logs
# Open VS Code → View → Output → Select "Promptitude"
# Reset extension data
# Close VS Code, delete prompts directory, restart VS Code# Build extension
npm run compile
# Watch for changes
npm run watch
# Package extension
npx @vscode/vsce package
# Install locally
code --install-extension promptitude-extension-<version>.vsix
# Uninstall
code --uninstall-extension logient-nventive.promptitude-extensionThe extension should create this structure in your prompts directory:
User/prompts/
├── prompts/
│ ├── development/
│ │ └── react-component.md
│ └── code-review/
│ └── code-review.md
├── copilot-instructions/
│ └── general/
│ └── copilot-instructions.md
└── language-guidelines/
├── README.md
├── general/
├── typescript/
├── javascript/
├── python/
└── csharp/