docs: use Alice and Bob as example agent names throughout
Replace Amber/Karen with Alice/Bob in all README examples for consistency. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
717bb76ad7
commit
0c856de32d
1 changed files with 15 additions and 15 deletions
30
README.md
30
README.md
|
|
@ -69,17 +69,17 @@ Run multiple Telegram bots from a single picoclaw instance, each connected to a
|
||||||
"channels": {
|
"channels": {
|
||||||
"telegram_bots": [
|
"telegram_bots": [
|
||||||
{
|
{
|
||||||
"id": "amber",
|
"id": "alice",
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"token": "AMBER_BOT_TOKEN",
|
"token": "ALICE_BOT_TOKEN",
|
||||||
"allow_from": ["YOUR_TELEGRAM_USER_ID"],
|
"allow_from": ["YOUR_TELEGRAM_USER_ID"],
|
||||||
"typing": { "enabled": true },
|
"typing": { "enabled": true },
|
||||||
"placeholder": { "enabled": true, "text": "Thinking... 💭" }
|
"placeholder": { "enabled": true, "text": "Thinking... 💭" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "karen",
|
"id": "bob",
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"token": "KAREN_BOT_TOKEN",
|
"token": "BOB_BOT_TOKEN",
|
||||||
"allow_from": ["YOUR_TELEGRAM_USER_ID"],
|
"allow_from": ["YOUR_TELEGRAM_USER_ID"],
|
||||||
"typing": { "enabled": true },
|
"typing": { "enabled": true },
|
||||||
"placeholder": { "enabled": true, "text": "Thinking... 💭" }
|
"placeholder": { "enabled": true, "text": "Thinking... 💭" }
|
||||||
|
|
@ -88,12 +88,12 @@ Run multiple Telegram bots from a single picoclaw instance, each connected to a
|
||||||
},
|
},
|
||||||
"bindings": [
|
"bindings": [
|
||||||
{
|
{
|
||||||
"agent_id": "amber",
|
"agent_id": "alice",
|
||||||
"match": { "channel": "telegram-amber" }
|
"match": { "channel": "telegram-alice" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"agent_id": "karen",
|
"agent_id": "bob",
|
||||||
"match": { "channel": "telegram-karen" }
|
"match": { "channel": "telegram-bob" }
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
```
|
```
|
||||||
|
|
@ -106,23 +106,23 @@ Define each agent in `agents.list` with its own workspace, model, and personalit
|
||||||
"agents": {
|
"agents": {
|
||||||
"list": [
|
"list": [
|
||||||
{
|
{
|
||||||
"id": "amber",
|
"id": "alice",
|
||||||
"name": "Amber",
|
"name": "Alice",
|
||||||
"default": true,
|
"default": true,
|
||||||
"workspace": "~/.picoclaw/agents/amber",
|
"workspace": "~/.picoclaw/agents/alice",
|
||||||
"model": {
|
"model": {
|
||||||
"primary": "claude-cli",
|
"primary": "claude-cli",
|
||||||
"fallbacks": ["gemini-cli"]
|
"fallbacks": ["gemini-cli"]
|
||||||
},
|
},
|
||||||
"subagents": {
|
"subagents": {
|
||||||
"allow_agents": ["karen"]
|
"allow_agents": ["bob"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "karen",
|
"id": "bob",
|
||||||
"name": "Karen",
|
"name": "Bob",
|
||||||
"default": false,
|
"default": false,
|
||||||
"workspace": "~/.picoclaw/agents/karen",
|
"workspace": "~/.picoclaw/agents/bob",
|
||||||
"model": {
|
"model": {
|
||||||
"primary": "claude-cli",
|
"primary": "claude-cli",
|
||||||
"fallbacks": ["gemini-cli"]
|
"fallbacks": ["gemini-cli"]
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue