Skip to content

Commit aa81518

Browse files
committed
Remove some back slashes from walkthrough doc
1 parent 9f2c12d commit aa81518

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

web/src/content/walkthroughs/creating-your-first-agent.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,16 +96,16 @@ const definition: AgentDefinition = {
9696
spawnerPrompt: 'Spawn when you need to review local code changes',
9797

9898
// System prompt defines the agent's identity
99-
systemPrompt: \`You are an expert software developer specializing in code review.
100-
Your job is to review code changes and provide helpful, constructive feedback.\`,
99+
systemPrompt: `You are an expert software developer specializing in code review.
100+
Your job is to review code changes and provide helpful, constructive feedback.`,
101101

102102
// Instructions for what the agent should do
103-
instructionsPrompt: \`Review code changes by following these steps:
103+
instructionsPrompt: `Review code changes by following these steps:
104104
1. Use git diff to see what changed
105105
2. Read the modified files to understand the context
106106
3. Look for potential issues: bugs, security problems, style violations
107107
4. Suggest specific improvements with examples
108-
5. Highlight what was done well\`,
108+
5. Highlight what was done well`,
109109
}
110110

111111
export default definition
@@ -172,7 +172,7 @@ const definition: AgentDefinition = {
172172
}
173173
```
174174

175-
Replace \`'your-publisher-id'\` with the ID you created in Step 4.
175+
Replace `'your-publisher-id'` with the ID you created in Step 4.
176176

177177
## Step 6: Publish Your Agent
178178

0 commit comments

Comments
 (0)