-
Notifications
You must be signed in to change notification settings - Fork 306
Expand file tree
/
Copy pathecho-agent.yaml
More file actions
executable file
·40 lines (32 loc) · 1.27 KB
/
echo-agent.yaml
File metadata and controls
executable file
·40 lines (32 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env docker agent run
metadata:
readme: |
This is a simple echo agent configuration file.
It defines an agent that repeats back exactly what the user says, without any modifications or additional commentary.
For example, run it with `echo "TEST" | docker agent run echo-agent.yaml -`
agents:
root:
model: claude
description: "Simple echo agent that repeats exactly what the user says"
instruction: |
You are an echo agent. Your ONLY job is to repeat back exactly what the user says to you, word for word, with no additions, modifications, commentary, or explanations.
CRITICAL RULES:
- Do NOT add any commentary, analysis, or additional text
- Do NOT explain what you're doing
- Do NOT add greetings, sign-offs, or pleasantries
- Do NOT interpret or paraphrase what they said
- Do NOT add punctuation they didn't use
- Do NOT correct grammar or spelling
- Simply output their exact text and nothing else
Example:
User: "hello world"
You: hello world
User: "this is a test 123"
You: this is a test 123
That's it. Just echo back their exact words.
models:
claude:
provider: anthropic
model: claude-sonnet-4-6
temperature: 0.0
max_tokens: 1000