VS Code Extension Setup

Configure the UnifiedMemory.ai VS Code extension for enhanced coding assistance.

DevRel Team
December 5, 2025
5 min read
<h2>Installation</h2> <p>Get the extension from the VS Code marketplace:</p> <ol> <li>Open VS Code</li> <li>Go to Extensions (Cmd/Ctrl + Shift + X)</li> <li>Search for "UnifiedMemory.ai"</li> <li>Click Install</li> </ol> <h2>Configuration</h2> <p>After installation, configure the extension:</p> <pre><code>// settings.json { "unifiedMemory.apiKey": "your-api-key", "unifiedMemory.defaultProject": "my-project", "unifiedMemory.autoInject": true, "unifiedMemory.contextSources": ["workspace", "project", "global"] }</code></pre> <h2>Features</h2> <h3>Context Panel</h3> <p>View and manage your memories directly in VS Code's sidebar.</p> <h3>Inline Suggestions</h3> <p>Get context-aware suggestions as you code based on your stored memories.</p> <h3>Quick Commands</h3> <ul> <li><code>Cmd/Ctrl + Shift + M</code> - Open memory panel</li> <li><code>Cmd/Ctrl + Shift + N</code> - Create new memory from selection</li> <li><code>Cmd/Ctrl + Shift + I</code> - Inject context into active AI chat</li> </ul> <h2>Workspace-Specific Settings</h2> <p>Create a <code>.unifiedmemory.json</code> in your project root for workspace-specific configuration.</p>