A: Run this command:
curl -s https://raw.githubusercontent.com/luoboask/evo-agents/master/install.sh | bash -s my-agentA: Yes! The install script will:
- ✅ Ask for confirmation
- ✅ Backup your workspace automatically
- ✅ Preserve personal files
- ✅ Only update template files
bash -c "$(curl -fsSL https://raw.githubusercontent.com/luoboask/evo-agents/master/install.sh)" -s my-agentA: Try these steps:
- Check your internet connection
- Verify OpenClaw is installed:
openclaw --version - Check Python version:
python3 --version(need 3.10+) - Run with verbose output:
bash -x install.sh my-agent
A: Use the add-agent script:
cd ~/.openclaw/workspace-my-agent
./scripts/core/add-agent.sh assistant "My Assistant" 🤖A: There's no limit! You can create as many as you need.
A: Yes! Sub-agents have a symlink to parent skills:
agents/<agent>/skills → ../../skills
A: Two places:
- Markdown files:
memory/YYYY-MM-DD.md - SQLite database:
data/<agent>/memory/memory_stream.db
They are synced automatically by bridge_sync.py.
A: Use the search script:
python3 skills/memory-search/search.py "your query"A: Yes! Memory is stored in Markdown format:
cat memory/$(date +%Y-%m-%d).mdA: Check the path:
# ✅ Correct
./scripts/core/add-agent.sh
# ❌ Wrong
./add-agent.shA: Make sure you're in the workspace directory:
cd ~/.openclaw/workspace-my-agent
python3 scripts/core/session_recorder.py ...A: Make scripts executable:
chmod +x scripts/core/*.shA: 运行此命令:
curl -s https://raw.githubusercontent.com/luoboask/evo-agents/master/install.sh | bash -s my-agentA: 不会!安装脚本会:
- ✅ 询问确认
- ✅ 自动备份 workspace
- ✅ 保留个人文件
- ✅ 只更新模板文件
bash -c "$(curl -fsSL https://raw.githubusercontent.com/luoboask/evo-agents/master/install.sh)" -s my-agentA: 尝试以下步骤:
- 检查网络连接
- 验证 OpenClaw 已安装:
openclaw --version - 检查 Python 版本:
python3 --version(需要 3.10+) - 使用详细输出运行:
bash -x install.sh my-agent
A: 使用 add-agent 脚本:
cd ~/.openclaw/workspace-my-agent
./scripts/core/add-agent.sh assistant "我的助手" 🤖A: 无限制!可以根据需要创建任意数量。
A: 是的!子 Agent 有符号链接到父 workspace 技能:
agents/<agent>/skills → ../../skills
A: 两个地方:
- Markdown 文件:
memory/YYYY-MM-DD.md - SQLite 数据库:
data/<agent>/memory/memory_stream.db
它们通过 bridge_sync.py 自动同步。
A: 使用搜索脚本:
python3 skills/memory-search/search.py "你的查询"A: 可以!记忆以 Markdown 格式存储:
cat memory/$(date +%Y-%m-%d).mdA: 检查路径:
# ✅ 正确
./scripts/core/add-agent.sh
# ❌ 错误
./add-agent.shA: 确保在 workspace 目录:
cd ~/.openclaw/workspace-my-agent
python3 scripts/core/session_recorder.py ...A: 使脚本可执行:
chmod +x scripts/core/*.sh- Documentation: docs/README.md
- Issues: https://github.com/luoboask/evo-agents/issues
- Discussions: https://github.com/luoboask/evo-agents/discussions