Earlier quoted context omitted.
While it's noisy and complicated for humans to read through, this session info is primarily for future AI to read and use as additional input for their tasks. We could have LLMs ingest all these historical sessions, and use them as context for the current session. Basically treat the current session as an extension of a much, much longer previous session. Plus, future models might be able to "understand" the limitati…
Similarly, git logs of existing human code seem to be a good source of info that llms don't look at unless explicitly prompted to do so.
If AI writes code, should the session be part of the commit?
361–370 of 410 posts
Re: If AI writes code, should the session be part of the commit?
#362The way I write code with AI is that I start with a project.md file, where I describe what I want done. I then ask it to make a plan.md file from that project.md to describe the changes it will make (or what it will create if Greenfield). I then iterate on that plan.md with the AI until it's what I want. I then ask it to make a detailed todo list from the plan.md and attach it to the end of plan.md. Once I'm fully sa…
Re: If AI writes code, should the session be part of the commit?
#363Re: If AI writes code, should the session be part of the commit?
#364Earlier quoted context omitted.
Yes, when I first saw this, its exactly what I thought of.
No mention of Agent Trace [0] yet. Interestingly, Entire are not supporting Agent Trace [1] 0. https://agent-trace.dev/ 1. https://github.com/entireio/cli/issues/386
Re: If AI writes code, should the session be part of the commit?
#365The way I write code with AI is that I start with a project.md file, where I describe what I want done. I then ask it to make a plan.md file from that project.md to describe the changes it will make (or what it will create if Greenfield). I then iterate on that plan.md with the AI until it's what I want. I then ask it to make a detailed todo list from the plan.md and attach it to the end of plan.md. Once I'm fully sa…
Re: If AI writes code, should the session be part of the commit?
#366So I like the link's approach quite a bit.
Re: If AI writes code, should the session be part of the commit?
#367It need to be considered as a compiled output of vbc-c, vbc-python, or vbc-ts, or vbc-js.
Keeping the source code (the prompt) is very natural, when compiled binaries “vibecoded” output is lacking _context_ and _motivation_ (which the source code / prompt provides)
Re: If AI writes code, should the session be part of the commit?
#368The way I write code with AI is that I start with a project.md file, where I describe what I want done. I then ask it to make a plan.md file from that project.md to describe the changes it will make (or what it will create if Greenfield). I then iterate on that plan.md with the AI until it's what I want. I then ask it to make a detailed todo list from the plan.md and attach it to the end of plan.md. Once I'm fully sa…
Here’s how I do the same thing, just with a slightly different wrapper: I’m running my own stepwise runtime where agents are plugged into defined slots. I’ll usually work out the big decisions in a chat pane (sometimes a couple panes) until I’ve got a solid foundation: general guidelines, contracts, schemas, and a deterministic spec that’s clear enough to execute without interpretation. From there, the runtime runs a…
Re: If AI writes code, should the session be part of the commit?
#369The way I write code with AI is that I start with a project.md file, where I describe what I want done. I then ask it to make a plan.md file from that project.md to describe the changes it will make (or what it will create if Greenfield). I then iterate on that plan.md with the AI until it's what I want. I then ask it to make a detailed todo list from the plan.md and attach it to the end of plan.md. Once I'm fully sa…
By that time you would’ve written the code yourself, only better.
But it would not be faster.
OP is talking about creating an entire project, from scratch, and having it feature complete at the end.