An AI coding agent, used to write code, needs to reduce your maintenance costs
1–10 of 126 posts
Re: An AI coding agent, used to write code, needs to reduce your maintenance costs
#2But say you have that. Then you have great profiling. At that point you can measure correctness and performance. Then implementation becomes less of a focal point. And that makes it a lot easier to concede coding to ai
Re: An AI coding agent, used to write code, needs to reduce your maintenance costs
#3For me, if I can make a kickass testing system that people love so much that they actually build features with it and it’s not an afterthought, then maintenance becomes much easier. It’s often called test driven development but I’ve rarely seen it done in such a way that the dev ex is good enough for it to work. But say you have that. Then you have great profiling. At that point you can measure correctness and perfor…
The AI will then be middle layer that will iterate until tests pass.
Layer 1: Specs (Humans)
Layer 2: Code (AI mostly)
Layer 3: Tests (AI + human checks).
Re: An AI coding agent, used to write code, needs to reduce your maintenance costs
#4I wonder if AI could make code reviews more presentable.
for example, with human code reviews, developers learn quickly not to visually change code like reflowing code or comments, changing indent (where the tools can't suppress it), moving functions around or removing lines or other spurious changes.
And don't refactor code needlessly.
also, could break reviews up into two reviews - functional changes and cosmetic changes.
Re: An AI coding agent, used to write code, needs to reduce your maintenance costs
#5Re: An AI coding agent, used to write code, needs to reduce your maintenance costs
#6Re: An AI coding agent, used to write code, needs to reduce your maintenance costs
#7Unfortunately, maintainability is simply bucketed as a "non-functional" requirement.
Maintainability (and similar NFRs) should actually be considered what preserves and enables the delivery of future functional requirements -- in contrast to framing non-functional requirements as simply "how" the software must do what it does vs. the "what"/functional requirements that "actually matter".
From that standpoint, if a steady flow of features/improvements is important for a project, maintainability isn't really a non-functional requirement at all, and amounts to being a functional requirement, in practice, over anything except the shortest of time horizons.
Re: An AI coding agent, used to write code, needs to reduce your maintenance costs
#8For me, if I can make a kickass testing system that people love so much that they actually build features with it and it’s not an afterthought, then maintenance becomes much easier. It’s often called test driven development but I’ve rarely seen it done in such a way that the dev ex is good enough for it to work. But say you have that. Then you have great profiling. At that point you can measure correctness and perfor…
This will probably be how things will work in future: devs will shift to specifying features which will be validate through tests. The AI will then be middle layer that will iterate until tests pass. Layer 1: Specs (Humans) Layer 2: Code (AI mostly) Layer 3: Tests (AI + human checks).