πŸš€ Introducing CodeWhiz: Your AI-Powered Code Commenting Sidekick for VS Code 🧠✨

🧠 CodeWhiz β€” AI-Powered Code Comment Generator for VS Code ⚑

Select code ➀ Press

Ctrl + Win + J

➀ Get clear, short inline comments with emojis πŸͺ„

πŸ”₯ Why I Built CodeWhiz

As a developer, I was tired of:

  • Seeing messy code with zero comments 😡
  • Wasting time writing repetitive explanations
  • Getting lost in my own logic weeks later 🀯

So I built CodeWhiz, a lightweight VS Code extension that:

  • Adds short inline comments to any selected code
  • Uses Google Gemini AI under the hood
  • Supports multiple languages like Python, Java, Go, JS, C++, and more
  • Drops helpful emojis for vibes πŸπŸ“πŸ’‘

from:

To:

πŸ’‘ Features

βœ… AI-generated inline comments

βœ… Works with multiple languages

βœ… Built with Gemini API

βœ… Keyboard shortcut: Ctrl + Win + J

βœ… Open Source on GitHub

βœ… Zero bloat – just select and comment ✨

πŸ§ͺ Example

Before:

func reverse(s string) string {
    r := []rune(s)
    for i, j := 0, len(r)-1; i < j; i, j = i+1, j-1 {
        r[i], r[j] = r[j], r[i]
    }
    return string(r)
}

After

func reverse(s string) string { // Reverse a string πŸ”
    r := []rune(s) // Convert to runes 🧩
    for i, j := 0, len(r)-1; i < j; i, j = i+1, j-1 { // Swap characters πŸ”„
        r[i], r[j] = r[j], r[i]
    }
    return string(r) // Convert back to string πŸ”™
}

Coming soon to marketplace… 🌟

🀝 Looking for Contributors!

Wanna collab? πŸ§‘β€πŸš€ I’m looking for:

Bug squashers 🐞

Feature builders βš™οΈ

Language testers 🌐

Doc lovers πŸ“

Designers who can make it look cooler 🎨

Everything’s here πŸ‘‰ GitHub Repo

Check the Good First Issues and start building!

🌍 Let’s Build Together

CodeWhiz started as a weekend project, but I’d love to make it a dev favorite.
Your feedback, stars ⭐, and PRs are always welcome!

Similar Posts