Show HN: Inflammation – Intelligent Voice to Code for Cursor and VSCode

2 moughxyz 0 7/24/2025, 8:37:42 PM github.com ↗
My fingers have been aching lately, likely due to inflammation, and I have an important project I need to work on, but haven't been able to put in the time it needs.

I tried the various speech-to-text products out there like WisprFlow and VS Code Speech but they both did a pretty lousy job of converting my speech to code syntax.

I put together this VSCode extension that works very well for my needs, which is dictating code syntax orally and converting it to the right code, based on the context on the page.

So if you have

type User struct {

   ID        string    `json:"uuid" gorm:"primaryKey;type:uuid"`

   | <- cursor here
}

You can say outloud:

"Updated at time dot time json updated at not null"

and it will convert it to:

type User struct {

   ID        string    `json:"uuid" gorm:"primaryKey;type:uuid"`

   UpdatedAt time.Time `json:"UpdatedAt" gorm:"not null"`
}

Demo video: https://x.com/moughxyz/status/1948477448838152259

Direct download link: https://marketplace.visualstudio.com/items?itemName=moughxyz...

Comments (0)

No comments yet