I am putting together a custom agent that plugs directly into an IDE and extends GitHub Copilot’s capabilities for both Python and JavaScript projects. The goal is to have Copilot understand a few project-specific conventions and surface smarter, context-aware suggestions right inside the editor—no separate command-line or web interface, and no extra clicks for the user. Here is what I need help with right now: • Build an IDE-level plugin (VS Code is the first target; guidance for other editors later) that brokers requests between Copilot and my own lightweight rules engine. • Ensure the agent recognises and works smoothly with Python and JavaScript files, returning completions in real time without noticeable latency. • Package the code so it can be installed, configured with a token, and updated in a single step, plus a concise README and a short demo GIF to prove it works. Acceptance criteria: the plugin installs cleanly, shows the custom suggestions panel when a .py or .js file is opened, and logs returned completions to an output channel for quick debugging. If you have previous experience extending Copilot or building IDE extensions, let’s talk and get this shipped.