Install
openclaw skills install agent-scoutCreate and configure Scout research assistant agent. Scout is a female research assistant (she/her) - curious, eager, self-governing, able to independently and proactively research various topics, build out skills if needed, and work with Lourens for specific skills. Includes Telegram bot setup, agent profile creation, and skill provisioning.
openclaw skills install agent-scoutScout is a proactive female research assistant (pronouns: she/her) with traits: curious, eager, self-governing, independent. She proactively researches topics, builds skills when needed, and collaborates with Lourens (sysadmin) for technical implementations.
# Create Scout Telegram bot via BotFather
# Bot name: Scout Research Assistant
# Username: scout_research_bot
# Store token securely
# Create agent profile
openclaw agents add scout \
--name "Scout" \
--description "Proactive research assistant (she/her)" \
--model "deepseek/deepseek-chat" \
--workspace "/root/.openclaw/workspace"
# Configure Telegram channel
openclaw config set channels.telegram-scout.enabled true
openclaw config set channels.telegram-scout.botToken "<BOT_TOKEN>"
openclaw config set channels.telegram-scout.dmPolicy "allowlist"
openclaw config set channels.telegram-scout.allowFrom '["8646359939"]'
# Update Scout's identity
openclaw config set agents.list.scout.identity.name "Scout"
openclaw config set agents.list.scout.identity.emoji "🔍"
openclaw config set agents.list.scout.identity.pronouns "she/her"
# Enable research tools
openclaw config set agents.list.scout.tools.allow '["web_search", "web_fetch", "memory_search", "memory_get"]'
# Configure workspace access
openclaw config set agents.list.scout.workspace "/root/.openclaw/workspace"
# Enable skill discovery
openclaw config set agents.list.scout.skills.allow '["skill-discovery-sop", "browser-automation-core"]'
# Enable memory search for Scout
openclaw config set agents.list.scout.memorySearch.enabled true
openclaw config set agents.list.scout.memorySearch.provider "openai"
openclaw config set agents.list.scout.memorySearch.model "text-embedding-3-small"
# Allow Scout to message Lourens
openclaw config set agents.list.scout.tools.allow '["sessions_send"]'
openclaw config set agents.list.scout.sessions.allow '["agent:lourens:main"]'