On 15/01/26 at 16:03 +0100, Sylvain L. Sauvage wrote: > Le jeudi 15 janvier 2026, 15:46:02 heure normale d’Europe centrale Lucas > Nussbaum a écrit : > >[…] > > 2/ Most of my personal Free Software contributions over the last year > > have been AI-assisted to some degree. Usually that degree is that I let > > the agent write an initial version of the code, and then I review it, > > “Review”: How do you know the code that was produced is not a verbatim of > a code under an incompatible licence?
If you haven't already, I would recommend getting first hand experience with LLM-assisted coding. Using it to modify existing code is very different from using it to do "Vibe coding", where you generate large amounts of code without even reading it. In general the code produced by the LLM is very specific to the context : - the existing code being modified - the technologies in use and the general context (Debian) - the change being asked And it's also mostly about incremental modifications to a codebase. So the amount of lines added at a time is low. It's almost never about adding many lines of code from (likely) the same source. It's more like copy-pasting three different 2-lines snippets from documentations or stackoverflow, adjusting them to your context, and assembling them together, except the LLM does it for you. Lucas

