←back to thread

634 points david927 | 1 comments | | HN request time: 0.234s | source

What are you working on? Any new ideas that you're thinking about?
Show context
skp1995 ◴[] No.41346716[source]
We are working on https://aide.dev/ an editor forked from VSCode which allows you to utilize LLMs to speed up coding.

Our approach is a bit different since unlike making a better copilot or a chat experience we are building workflows which encourage engineers to work alongside AI and not just offload tasks to AI.

replies(2): >>41346833 #>>41350822 #
3np ◴[] No.41346833[source]
Is there some technical limitation that forced you to make Aide as a fork, rather than a VSCode extension?
replies(1): >>41352802 #
1. skp1995 ◴[] No.41352802[source]
oh I could write a book on this lol, lots of limitations. One of the core reasons being: extensions by design are super limited in the functionality they can provide.

We did have an extension which worked okay while we were still learning the ropes but after 2 months developing it we realized that we didn't have access to many of the APIs which we wanted to tinker with or change the UX dynamically!

This made us look for 2 options: - either move out of the editor and become a cloud blackbox AI engineer (not a big fan, I don't want to spend my time just reviewing code) - or own the editor where people code

We chose the editor route and didn't look back after. Over that time we have changed the UX of the editor completely can better play into the APIs which are hidden in VSCode and really build something which I personally could use daily :)