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

推荐订阅源

雷峰网
雷峰网
D
Darknet – Hacking Tools, Hacker News & Cyber Security
P
Proofpoint News Feed
Spread Privacy
Spread Privacy
C
Cisco Blogs
L
Lohrmann on Cybersecurity
宝玉的分享
宝玉的分享
I
Intezer
aimingoo的专栏
aimingoo的专栏
Cisco Talos Blog
Cisco Talos Blog
The Register - Security
The Register - Security
GbyAI
GbyAI
C
CERT Recently Published Vulnerability Notes
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
Cyberwarzone
Cyberwarzone
爱范儿
爱范儿
I
InfoQ
博客园_首页
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
量子位
P
Palo Alto Networks Blog
Microsoft Azure Blog
Microsoft Azure Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
腾讯CDC
阮一峰的网络日志
阮一峰的网络日志
NISL@THU
NISL@THU
T
Threatpost
T
The Blog of Author Tim Ferriss
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
Schneier on Security
Security Latest
Security Latest
Martin Fowler
Martin Fowler
H
Help Net Security
小众软件
小众软件
The Hacker News
The Hacker News
Know Your Adversary
Know Your Adversary
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
T
The Exploit Database - CXSecurity.com
Jina AI
Jina AI
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
P
Proofpoint News Feed
IT之家
IT之家
WordPress大学
WordPress大学
S
Securelist

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 浏览器和服务器通讯方式的不完整总结 观察网站性能 一些关于Linux的笔记 telnet的不完整总结 在Windows下安装pear MySQL的时间类型和时间相关的函数 Windows下通过PEB读取进程的环境变量 关于 在VSCode里使用Xdebug远程调试PHP 在Windows下搭建git服务 关于环境变量的不完整总结 使用shell实现的kv数据库 如何完成以xx管理系统为选题的毕业设计 数字号码资源 各种标记语言 使用PowerShell实现的http服务器 kind相关经验 DNSSEC简介 nginx+ffmpeg+websocket实现的直播例子 使用Tesseract识别字符验证码 使用docker部署nuxt FirstData后台的设置 paypal,firtdata,支付宝的不完整接入指南 微信支付的不完整接入指南 用docker-compose部署lnmp环境 mongodb分片 练习
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 安卓