资源中心
常用配置模板、工具推荐、学习资料
📦 配置模板
基础配置
yaml
# config.yaml
openclaw:
version: "2.0"
agents:
my-agent:
model: gpt-4
skills:
- web-search
- calendar
- email
channels:
- telegram
- discord飞书配置
yaml
# feishu.yaml
channels:
feishu:
enabled: true
app_id: your_app_id
app_secret: your_app_secretSkill 开发模板
javascript
// my-skill/index.js
export default {
name: 'my-skill',
description: '我的第一个 Skill',
async handle(context, params) {
// 你的逻辑
return { result: 'Hello World!' };
}
};🛠️ 工具推荐
开发工具
| 工具 | 用途 | 链接 |
|---|---|---|
| VS Code | 代码编辑器 | https://code.visualstudio.com |
| Node.js | 运行环境 | https://nodejs.org |
| Git | 版本控制 | https://git-scm.com |
AI 模型
| 模型 | 特点 | 价格 |
|---|---|---|
| GPT-4 | 能力强 | $20/月 |
| Claude 3 | 长文本 | $15/月 |
| Gemini | 多模态 | 免费 |
部署平台
| 平台 | 特点 | 价格 |
|---|---|---|
| Vercel | 静态网站 | 免费 |
| Railway | 全栈应用 | $5/月 |
| Fly.io | 全球部署 | 免费 |
📚 学习资源
官方文档
视频教程
(待添加)
博客文章
(待添加)
🔧 常用命令
bash
# 安装 OpenClaw
npm install -g openclaw
# 初始化项目
openclaw init my-agent
# 启动开发
openclaw dev
# 构建发布
openclaw build
# 查看帮助
openclaw --help📥 下载资源
如果你有好的资源推荐,欢迎 提交!