Get familiar with the Semantic Line Braks principle @https://sembr.org/
For every adoc document in the project, perform the following 2 steps:
remove all the nonsemantic line wraps
add new line breaks as defined by @https://sembr.org/
Never change any code examples within the documents, only prose.
You must not ever change anything else than newlines and spaces.
Particularly, do not replace any other characters, such as apostrophes or quotes.
As the AI created a regex based Python script to break lines after certain characters, I followed with:
Go trough all the adoc files once again and manually inspect them for correctness,
adding more semantic newlines where the script did not do that.
Then I used git diff --word-diff to locate some undesired changes in apostrophes and quotes
(the AI insisted on replacing the Unicode ones with ASCII ones, but only in some of the files).
The overall diff is quite horrible to review.
I propose this as is for consideration, but it was not yet completely reviewed by me.
Overall, I think this is not worth it.
Using the claude-4-sonnet-1m model.
Prompt:
As the AI created a regex based Python script to break lines after certain characters, I followed with:
Then I used
git diff --word-diffto locate some undesired changes in apostrophes and quotes(the AI insisted on replacing the Unicode ones with ASCII ones, but only in some of the files).
The overall diff is quite horrible to review.
I propose this as is for consideration, but it was not yet completely reviewed by me.
Overall, I think this is not worth it.