←back to thread

469 points samuelstros | 1 comments | | HN request time: 0s | source
Show context
alex1138 ◴[] No.44998613[source]
What do people think of Google's Gemini (Pro?) compared to Claude for code?

I really like a lot of what Google produces, but they can't seem to keep a product that they don't shut down and they can be pretty ham-fisted, both with corporate control (Chrome and corrupt practices) and censorship

replies(15): >>44998620 #>>44998621 #>>44998644 #>>44998711 #>>44998731 #>>44998738 #>>44998760 #>>44998831 #>>44998906 #>>44999049 #>>44999169 #>>44999279 #>>45001020 #>>45001779 #>>45003748 #
CuriouslyC ◴[] No.44999169[source]
Gemini is amazing for taking a merge file of your whole repo, dropping it in there, and chatting about stuff. The level of whole codebase understanding is unreal, and it can do some amazing architectural planning assistance. Claude is nowhere near able to do that.

My tactic is to work with Gemini to build a dense summary of the project and create a high level plan of action, then take that to gpt5 and have it try to improve the plan, and convert it to a hyper detailed workflow xml document laying out all the steps to implement the plan, which I then hand to claude.

This avoids pretty much all of Claude's unplanned bumbling.

replies(1): >>45000744 #
seanwessmith ◴[] No.45000744[source]
mind typing this up? i've got a basic GPT -> Claude workflow going for now
replies(1): >>45000826 #
CuriouslyC ◴[] No.45000826{3}[source]
https://gist.github.com/githubcustomerserviceistrash/c716e76...

I should mention I made that one for my research/stats workflow, so there's some specific stuff in there for that, but you can prompt chat gpt to generalize it.

replies(1): >>45006661 #
threecheese ◴[] No.45006661{4}[source]
I mean, damn. Are terms like “executable oracles” and “hermetic boots” related to your domain, or are you using these as terms of art for an agent? Oracle being a source of truth, hermetic meaning no external dependencies or side effects - definitions in furtherance of your request for concise language. Would love to understand more.
replies(1): >>45010016 #
1. CuriouslyC ◴[] No.45010016{5}[source]
This prompt is for scientific research. In general my goal is to instruct the agent to build as much validation scaffolding as possible, so rather than holding its hand I can just give it a series of concrete hurdles and tell it not to come back until they're met. I don't want it finishing the basic tasks and coming back to me saying the app is "production ready," I want to come back after a few hours to the agent having "proven a spec" with a demo or a paper that I can iterate on.