Skip to content

资源中心

常用配置模板、工具推荐、学习资料

📦 配置模板

基础配置

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_secret

Skill 开发模板

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

📥 下载资源


如果你有好的资源推荐,欢迎 提交

养虾俱乐部 - OpenClaw 中文社区