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