diff --git a/.agents/skills/bug-filing/SKILL.md b/.agents/skills/bug-filing/SKILL.md
index ea9755f5fb3c..e2f80dd62006 100644
--- a/.agents/skills/bug-filing/SKILL.md
+++ b/.agents/skills/bug-filing/SKILL.md
@@ -63,9 +63,10 @@ created under their own account with a chance to review and adjust.
`enter_bug.cgi` field as a `field=value` argument; it URL-encodes the values and
opens the form in the browser (cross-platform, so Linux, macOS, and Windows all work):
```
- python3 .agents/skills/bug-filing/file-bug.py product=
component= \
- bug_type= short_desc= comment=
+ python3 .agents/skills/bug-filing/file-bug.py 'product=' 'component=' \
+ 'bug_type=' 'short_desc=' 'comment='
```
+ - Single-quote every `field=value` argument.
- Write `short_desc` and `comment` as plain text, with markdown backticks around
code identifiers; the script does all the encoding.
- Any form field works, so add more as the bug needs them, e.g. `blocked=`
diff --git a/.claude/skills/bug-filing/SKILL.md b/.claude/skills/bug-filing/SKILL.md
index ea9755f5fb3c..e2f80dd62006 100644
--- a/.claude/skills/bug-filing/SKILL.md
+++ b/.claude/skills/bug-filing/SKILL.md
@@ -63,9 +63,10 @@ created under their own account with a chance to review and adjust.
`enter_bug.cgi` field as a `field=value` argument; it URL-encodes the values and
opens the form in the browser (cross-platform, so Linux, macOS, and Windows all work):
```
- python3 .agents/skills/bug-filing/file-bug.py product= component= \
- bug_type= short_desc= comment=
+ python3 .agents/skills/bug-filing/file-bug.py 'product=' 'component=' \
+ 'bug_type=' 'short_desc=' 'comment='
```
+ - Single-quote every `field=value` argument.
- Write `short_desc` and `comment` as plain text, with markdown backticks around
code identifiers; the script does all the encoding.
- Any form field works, so add more as the bug needs them, e.g. `blocked=`