As Boris said, you shouldn't be manually prompting anymore but asking the AI to prompt itself, in the form of workflows. I usually have 3 to 5 different sessions running at once all autonomously.
IMO asking the AI to prompt itself, remind it to clean up other agents, tell it to monitor something and just hang there for hours, etc gets old really fast. If I had to pay the API rate to have one LLM rewrite what I just told it to another one, then have the main one get busy or start waiting for subagents rather than be something I actively steer, and come back to the subagent being either gone or left hanging for…
Ask HN: Is anyone experimenting with different ways of using LLMs for coding?
211–220 of 247 posts
Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?
#212As Boris said, you shouldn't be manually prompting anymore but asking the AI to prompt itself, in the form of workflows. I usually have 3 to 5 different sessions running at once all autonomously.
Funny but how do you then maintain orientation context? Except you’ve set strict parameters which then gets feed into the loop and which it uses to make decisions?
Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?
#213Orchestration works very well for me, but not in the way most people seem to be pushing for, with middlemen scoring and routing every request. For coding, the routing is mostly solved at the config level. The harness lets you pin models per role, and that covers most of what a per request router promises. On your actual question though, I think the loop you're describing does break the flow and gets very frustrating,…
Can you explain more how you 'pin models per role' 'at the config level'? And what a prompt looks like that uses that?
Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?
#214Earlier quoted context omitted.
Well no, you don't check it, you have notifications set up so it notifies you when it's waiting for you. If you don't want to hikevibecode, don't. No one's forcing you, who are you to yuck someone else's yum?
Isn’t yucking the yum of others the foundation of human society?
Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?
#215Orchestration works very well for me, but not in the way most people seem to be pushing for, with middlemen scoring and routing every request. For coding, the routing is mostly solved at the config level. The harness lets you pin models per role, and that covers most of what a per request router promises. On your actual question though, I think the loop you're describing does break the flow and gets very frustrating,…
Can you explain more how you 'pin models per role' 'at the config level'? And what a prompt looks like that uses that?
You're not choosing a model every time you prompt. It's already set in your config. The main shift in the mind is writing prompts to a role rather than to a specific model.
Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?
#216Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?
#217TL;DR got meningitis in Nov 2020 and went from healthy old grey beard to acting like an 85 yr old with alzheimer's, I knew what I wanted to say but could not say it, fast forward to Nov 2022 and chatgpt came out, now I could hint at what I wanted and it filled in the blanks total game changer...
MY idea is: I bring the intent, the judgment, and the been-there context. The AI/llm fills the gaps I used to fill myself.
Now this old IT greybeard still can't compete with my old self but I will be damned if I can't get stuff done now..
My workflow is short notes, ideas, possible solutions, open questions to myself, I fill in my own answers to my own question (basic note taking 101)
Then I create a concrete goal of what I want and give my notes as "additional notes/data" and most of the time I have something that can be used with a few more tweaks or corrects then create a "/Plan" or "/grillme" session which aligns all the loose ends
Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?
#218Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?
#219That's how I code nowadays: 1. Start a session. 2. Grill my requirements. 3. Write an ADR, then either start implementing or separate into pieces. 4. Review the code on pyor.review, compared to Github, Pyor allows me to categorize the files and changes then review the important stuff and skim the noise it identifies. 5. Since I can do local reviews with Pyor, I can do that with Claude and feed back my comments to be…
whats the catch on pyor, how is it free?