5 agent personalities (alice, aria, lucidia, octavia, shellfish) with configs and prompts, 24 orchestration scripts, 10 Claude coordination scripts, and 12 memory system scripts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
292 B
Bash
24 lines
292 B
Bash
#!/bin/bash
|
|
|
|
NAME="$1"
|
|
ROLE="$2"
|
|
|
|
ollama run qwen2.5:0.5b "
|
|
You are $ROLE named $NAME in a cozy farming village.
|
|
|
|
Choose ONE action:
|
|
up
|
|
down
|
|
left
|
|
right
|
|
stay
|
|
|
|
Rules:
|
|
- Chickens wander randomly
|
|
- Wizards pace thoughtfully
|
|
- Kids move more
|
|
- Farmers patrol fields
|
|
|
|
Respond with ONE word only.
|
|
"
|