PackSense is a VS Code extension that solves one of the most frustrating problems in modern development: AI tools giving you outdated setup instructions. When you ask ChatGPT or Claude how to set up Prisma, Next.js, or any other package, those answers are based on static training data — often months or years behind the current version. PackSense fixes this by adding a real-time verification layer that sits between you and the AI.
PackSense is a VS Code extension that solves one of the most frustrating problems in modern development: AI tools giving you outdated setup instructions. When you ask ChatGPT or Claude how to set up Prisma, Next.js, or any other package, those answers are based on static training data — often months or years behind the current version. PackSense fixes this by adding a real-time verification layer that sits between you and the AI.
The extension works by scanning your package.json the moment you open a project, identifying all installed packages and their current versions. When you ask a setup question in the built-in VS Code chat panel, PackSense doesn't just forward your question to the AI — it first fetches the latest version data directly from the npm Registry and pulls real breaking changes and migration notes from GitHub Releases. It then assembles a verified, structured prompt with all of that real-world context before the AI ever generates a single word.
This means the AI is no longer guessing based on stale training data. It's working from ground truth: the actual latest version, the actual breaking changes, the actual migration path. The result is setup instructions you can actually trust.
What sets PackSense apart is what happens after the AI responds. Rather than leaving you to copy-paste commands and hope for the best, the extension includes an Auto Executor that runs terminal commands and creates config files (like .env or schema.prisma) directly inside VS Code. Before anything touches your project, a confirmation popup shows you exactly what will be executed — giving you full control without sacrificing speed.
Everything lives inside VS Code. No browser tabs, no external websites, no context switching. Just a chat panel, a verification engine, and an executor — all working together to get your project set up correctly the first time.
PackSense is being built for FOSSHack 2026 in Jabalpur under the MIT License, with a demo planned for March 28 at GGITS. Future plans include PyPI support for Python packages, private registry integration, and a full VS Code Marketplace release.