Overview
Copilot Super Powers is a native VS Code extension designed to help developers organize and manage reusable AI agent skills directly inside their editor. By keeping agent configurations context-aware and accessible, it minimizes workspace context switching.
Challenge
VS Code extensions run in a restricted extension host process. Storing and searching through large sets of code snippets or skill instructions quickly requires responsive local database capabilities that do not block the main editor UI threads.
- Developer context switching — developers frequently leave the editor to find or copy prompt configurations
- Local storage limits — storing skills and configurations securely without adding heavyweight dependencies
- Seamless UX — designing an intuitive sidebar and command palette interface that feels native to VS Code
Solution
- VS Code Extension API — Built a native extension using VS Code's extension host API, leveraging Webviews and custom sidebars for a seamless visual experience
- Indexed search & storage — Implemented a lightweight persistent storage system with indexing to enable rapid search and retrieval of saved AI skill blocks
- Context injection — Structured a workflow that allows developers to highlight code and immediately bind it to an AI agent skill command


