HackerTrans
トップ新着トレンドコメント過去質問紹介求人

immortalloom

no profile record

投稿

[untitled]

1 ポイント·投稿者 immortalloom·2 年前·0 コメント

Three quotes that most accurately describe what it's like to build a startup

2 ポイント·投稿者 immortalloom·3 年前·2 コメント

Human body physical responses for various emotional stimuli

npr.org
5 ポイント·投稿者 immortalloom·3 年前·0 コメント

[untitled]

43 ポイント·投稿者 immortalloom·3 年前·0 コメント

Launch HN: Second (YC W23) – AI bots that add features to web apps

260 ポイント·投稿者 immortalloom·3 年前·199 コメント

コメント

immortalloom
·2 年前·議論
Hi folks. The team at Vercel has a great guide for migrating CRA to Next.js manually (https://nextjs.org/docs/app/building-your-application/upgrad...). We converted this guide to STEP so that you can run it as an AI agent automation on Second (https://www.second.dev/).
immortalloom
·3 年前·議論
What are some other ones?
immortalloom
·3 年前·議論
None come to mind - you should give it a go and see how the PR turns out
immortalloom
·3 年前·議論
Yea that's the plan.
immortalloom
·3 年前·議論
Hah yea. But, we use RAG to ensure that the choices made are really good. LLMs on their own can't be trusted, they are just great communicators. LLMs combined with reputable sources (like documentation and code examples) provide really great results! And these data sources actually can be queried, as they are shipped with each module.
immortalloom
·3 年前·議論
Great question! So our AI agents actually use a combination codemods plus generated AI results. We use static analysis and codemods as much as possible, but there are lots of situations where AI is the best tool. We have found that AI is particularly good at transforming EXISTING logic from one state to another, in a fairly predictable and consistent way, so long as the code transformations are individual functions or code files.

In combination with our RAG approach, you will find that if you run the same module multiple times, the generated results are incredibly similar with very little variation. Give it a go for yourself! You can try it for free on codebases up to 2MB, or use any of our example repos.
immortalloom
·3 年前·議論
In general, as our AI agents produce code files, we collect dependencies, and then at the end, use npm to determine the correct version numbers without actually installing on disk
immortalloom
·3 年前·議論
Yea! It turns out that we get this request quite often (Python 2 -> 3). It's on the roadmap.
immortalloom
·3 年前·議論
We use LangChain to crawl documentation and code examples for relevant frameworks and libraries, to make sure that the AI generated PR is up-to-date. We also have a custom dependency resolver that detects which new dependencies need to be added, as well as updating the package.json files with the correct version numbers
immortalloom
·3 年前·議論
Yea! Let me know if we can help your team with any of those. Right now we specialize in AngularJS -> React, CRA -> Next, JS -> TS, and Upgrade Next
immortalloom
·3 年前·議論
Beautiful! Insanely easy to use
immortalloom
·3 年前·議論
Yes today the bots assume you are connecting to a Next.js 13 app. Bad assumption I know! I am working to add repo a scanner (ChatGPT prompts!) to understand the general tech stack of a connected repo. This will be coming soon.
immortalloom
·3 年前·議論
Yes on both!

1) I will certainly work on setting up a show case or gallery of example sites 2) case study blogs are a great idea!
immortalloom
·3 年前·議論
I believe that now is the perfect time. Generative code generation is legit with GPT-3. I am constantly surprised at the results. And it will only get better.
immortalloom
·3 年前·議論
Yea great question! So yes, I used Second to build the foundation, auth, and DB stuff (starter plan stuff). But other parts of my app have not been ported back into modules yet (which will become Pro modules).

At some point I want to do a full rebuild of Second using Second to test out all of the modules together. But I'm not quite there yet!
immortalloom
·3 年前·議論
Correct! Second generates new features from configurable modules in the Second UI. I cannot use a prompt because this would require massive context windows (4k tokens is the limit). I'm using configurations so that I can use a mix of compilers and GPT-3. My compilers construct individual prompts for different tasks.
immortalloom
·3 年前·議論
Yea, this is one of the capabilities I want to support. Auto upgrades. I am very confident it is possible, but it will be later on in my roadmap. Right now, most users and customers are interested in speeding up feature development vs. one time upgrades. But I'm with you!
immortalloom
·3 年前·議論
So the Second UI is based on feature modules. You, the human, choose a feature to add. You configure it and then press "Commit Code" or "Raise PR". You can customize in two ways:

1) I can add more configuration options to the modules 2) you can tweak the results with code! After all, the generated code is yours to keep!
immortalloom
·3 年前·議論
yea!
immortalloom
·3 年前·議論
Agreed, we shall see! I empathize with what you are saying, because personally I am very slow to understand other people's code.

But, because Second builds commodity features, everything is so vanilla that it's actually pretty easy to understand. No weird anti-patterns or anything.