惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 司徒正美
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
WordPress大学
WordPress大学
罗磊的独立博客
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
S
SegmentFault 最新的问题
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
D
DataBreaches.Net
雷峰网
雷峰网
GbyAI
GbyAI
宝玉的分享
宝玉的分享

f2h2h1's blog

使用yii3实现一个微框架 计算机网络基础知识 定时任务 ACME的使用经验 magento2加上varnish缓存 开发Magento2的模块 在magento2中使用persisted-query socket编程 一些开发笔记 一段CSDN文章主要内容的油猴脚本 电子邮件的不完整总结 git的笔记 在Windows下配置PHP服务器 终端,控制台和外壳 PHP各种运行方式的不完整总结 把网页导出成PDF 和颜色相关的笔记 HTTP认证方式的不完整总结 SEO的经验 密码学入门简明指南 文件的上传和下载 用纯CSS3实现的滑动按钮 在VSCode里调试PHP Linux的GUI 关于字符编码的一些坑 nc的使用和原理 在Windows下安装Magento2 对JS原型链的理解 使用docker-compose部署magento2 浏览器和服务器通讯方式的不完整总结
claw养殖技术
2026-03-17 · via f2h2h1's blog

claw分类

openclaw安装和使用

docker镜像 debian:12

docker run -it --rm debian:12 /bin/bash

apt update;
apt install -y vim net-tools socat procps bsdmainutils curl git;
apt install -y python3 python3-pip;
ln -s /usr/bin/python3 /usr/bin/python;

curl -fsSL https://openclaw.ai/install.sh | bash nodejs npm openclaw npm install -g openclaw@latest 第一次启动openclaw时的命令 openclaw onboard --install-daemon

nanobot安装和使用

docker镜像 debian:12

apt update;
apt install -y vim net-tools socat procps bsdmainutils curl git;
apt install -y python3 python3-pip;
ln -s /usr/bin/python3 /usr/bin/python;
python -m pip install nanobot-ai --break-system-packages;

nanobot --version

nanobot onboard

vim ~/.nanobot/config.json

{ "providers": { "custom": { "apiKey": "", "apiBase": "" } }, "agents": { "defaults": { "workspace": "~/.nanobot-telegram/workspace", "model": "" } }, "channels": { "matrix": { "enabled": false, "homeserver": "https://matrix.org", "userId": "@nanobot:matrix.org", "accessToken": "syt_xxx", "deviceId": "NANOBOT01", "e2eeEnabled": true, "allowFrom": ["@your_user:matrix.org"], "groupPolicy": "open", "groupAllowFrom": [], "allowRoomMentions": false, "maxMediaBytes": 20971520 } }, "gateway": { "port": 18790 } }

nanobot agent -m "Hello"

nanobot/
├── .nanobot/      
│   ├── config.json
└── workspace/        
│   ├── defaults
│   │   ├──memory
│   │   ├──sessions
│   │   ├──skills
│   │   ├──AGENTS.md
│   │   ├──HEARTBEAT.md
│   │   ├──SOUL.md
│   │   ├──TOOLS.md
│   │   └──USER.md
└── └── test1
│   │   ├──memory
│   │   ├──sessions
│   │   ├──skills
│   │   ├──AGENTS.md
│   │   ├──HEARTBEAT.md
│   │   ├──SOUL.md
│   │   ├──TOOLS.md
└── └── └──USER.md

这种写法可能无法读取skill 会提示 file not found python -m nanobot agent --config ./.nanobot/config.json -w "./workspace/test1" -m "hello"

这种写法可以读取skill python -m nanobot agent --config ./.nanobot/config.json -w "workspace/test1" -m "hello"

matrix安装和使用

服务端

客户端

web 安卓

chatmail安装和使用

服务端

客户端

web 安卓