๐ 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!