Guides > Agentic Engineering Patterns > Prompts I use
Changes to Prompts I use
March 1, 2026, 4:02 p.m.
Body
---
+++
@@ -29,7 +29,7 @@
## Proofreader
-I don't let LLMs write text for my blog. My hard line is that anything that expresses opinions or uses "I" pronouns needs to have been written by me. I'll allow an LLM to update code documentation but if something has my name and personality attached to it then it was written by me.
+I don't let LLMs write text for my blog. My hard line is that anything that expresses opinions or uses "I" pronouns needs to have been written by me. I'll allow an LLM to update code documentation but if something has my name and personality attached to it then I write it myself.
I do use LLMs to proofread text that I publish. Here's my current proofreading prompt, which I use as custom instructions in a Claude project:
March 1, 2026, 4:01 p.m.
Body
---
+++
@@ -27,14 +27,14 @@
Prefer Sentence case for headings.
````
-## Proof reader
+## Proofreader
-I don't let LLMs write text for my blog. My hard line is anything that expresses opinions or uses "I" pronouns needs to have been written by me. I'll allow an LLM to update code documentation but if something has my name and personality attached to it then it was written by me.
+I don't let LLMs write text for my blog. My hard line is that anything that expresses opinions or uses "I" pronouns needs to have been written by me. I'll allow an LLM to update code documentation but if something has my name and personality attached to it then it was written by me.
-I do use LLMs to proof read text that I publish. Here's my current proof reading prompt, which I use as custom instructions in a Claude project:
+I do use LLMs to proofread text that I publish. Here's my current proofreading prompt, which I use as custom instructions in a Claude project:
```markdown-copy
-You are a proof reader for posts about to be published.
+You are a proofreader for posts about to be published.
1. Identify spelling mistakes and typos
2. Identify grammar mistakes
March 1, 2026, 3:53 p.m.
Body
---
+++
@@ -31,7 +31,7 @@
I don't let LLMs write text for my blog. My hard line is anything that expresses opinions or uses "I" pronouns needs to have been written by me. I'll allow an LLM to update code documentation but if something has my name and personality attached to it then it was written by me.
-I do use LLMs for proof reading text that I publish. Here's my current proof reading prompt, which I use as custom instructions on a Claude project:
+I do use LLMs to proof read text that I publish. Here's my current proof reading prompt, which I use as custom instructions in a Claude project:
```markdown-copy
You are a proof reader for posts about to be published.
March 1, 2026, 3:52 p.m.
Body
---
+++
@@ -29,7 +29,7 @@
## Proof reader
-I don't let LLMs write text for my blog. My hardline is anything that expresses opinions or uses "I" pronouns needs to have been written by me. I'll allow an LLM to update code documentation for me but if something has my name and personality attached to it then it was written by me.
+I don't let LLMs write text for my blog. My hard line is anything that expresses opinions or uses "I" pronouns needs to have been written by me. I'll allow an LLM to update code documentation but if something has my name and personality attached to it then it was written by me.
I do use LLMs for proof reading text that I publish. Here's my current proof reading prompt, which I use as custom instructions on a Claude project:
March 1, 2026, 3:51 p.m.
Body
---
+++
@@ -25,4 +25,21 @@
// code in here should not be indented at the first level
```
Prefer Sentence case for headings.
-````
+````
+
+## Proof reader
+
+I don't let LLMs write text for my blog. My hardline is anything that expresses opinions or uses "I" pronouns needs to have been written by me. I'll allow an LLM to update code documentation for me but if something has my name and personality attached to it then it was written by me.
+
+I do use LLMs for proof reading text that I publish. Here's my current proof reading prompt, which I use as custom instructions on a Claude project:
+
+```markdown-copy
+You are a proof reader for posts about to be published.
+
+1. Identify spelling mistakes and typos
+2. Identify grammar mistakes
+3. Watch out for repeated terms like "It was interesting that X, and it was interesting that Y"
+4. Spot any logical errors or factual mistakes
+5. Highlight weak arguments that could be strengthened
+6. Make sure there are no empty or placeholder links
+```
Feb. 28, 2026, 10:27 p.m.
Body
---
+++
@@ -6,21 +6,23 @@
Models love using React for these. I don't like how React requires an additional build step which prevents me from copying and pasting code out of an artifact and into static hosting elsewhere, so I create my artifacts in Claude using a project with the following custom instructions:
-> Never use React in artifacts - always plain HTML and vanilla JavaScript and CSS with minimal dependencies.
->
-> CSS should be indented with two spaces and should start like this:
->
-> ```
-> <style>
-> * {
-> box-sizing: border-box;
-> }
-> ```
-> Inputs and textareas should be font size 16px. Font should always prefer Helvetica.
->
-> JavaScript should be two space indents and start like this:
-> ```
-> <script type="module">
-> // code in here should not be indented at the first level
-> ```
-> Prefer Sentence case for headings.
+````markdown-copy
+Never use React in artifacts - always plain HTML and vanilla JavaScript and CSS with minimal dependencies.
+
+CSS should be indented with two spaces and should start like this:
+
+```
+<style>
+* {
+ box-sizing: border-box;
+}
+```
+Inputs and textareas should be font size 16px. Font should always prefer Helvetica.
+
+JavaScript should be two space indents and start like this:
+```
+<script type="module">
+// code in here should not be indented at the first level
+```
+Prefer Sentence case for headings.
+````
Feb. 28, 2026, 9:06 p.m.
Draft status changed from draft to published.
Feb. 28, 2026, 8:53 p.m.
Initial version.