diff --git a/pr_agent/servers/help.py b/pr_agent/servers/help.py
index 60ba285b..7b4f3ab8 100644
--- a/pr_agent/servers/help.py
+++ b/pr_agent/servers/help.py
@@ -178,21 +178,22 @@ Make sure to provide proper title, and a detailed and well-phrased description f
# extra instructions
output += "
Utilizing extra instructions \n\n"
output += '''\
- The `describe` tool can be configured with extra instructions, which can be used to guide the model to a produce a description with the relevant content or style.
+The `describe` tool can be configured with extra instructions, to guide the model to a feedback tailored to the needs of your project.
- Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Notice that the general structure of the description is already defined by the tool, and cannot be changed.
- What you can change is the content content or style of each sub-section of the description.
+Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Notice that the general structure of the description is fixed, and cannot be changed. Extra instructions can change the content or style of each sub-section of the PR description.
+
+Examples for extra instructions:
+```
+[pr_description]
+extra_instructions="""
+- the PR title should be in the format: ': '
+- ...
+"""
+```
+Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.
+'''
+ output += "\n\n |
\n\n"
- Examples for extra instructions:
- ```
- [pr_description]
- extra_instructions="""
- - the title section should be in the following format: :
- - ...
- """
- ```
- Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.
- '''
# general
output += "\n\n More PR-Agent commands \n\n"
diff --git a/pr_agent/settings/pr_description_prompts.toml b/pr_agent/settings/pr_description_prompts.toml
index 2b0664b9..09d1c6e4 100644
--- a/pr_agent/settings/pr_description_prompts.toml
+++ b/pr_agent/settings/pr_description_prompts.toml
@@ -15,7 +15,7 @@ Your task is to provide a full description for the PR content - files walkthroug
Extra instructions from the user:
=====
-{{ extra_instructions }}
+{{extra_instructions}}
=====
{% endif %}
|