Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

clawdbot-setup爪机器人设置

Agent Skill

clawdbot-setup 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

309

周安装

13

GitHub Stars

公开资料未说明

下载量

108
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:clawdbot-setup(爪机器人设置)
来源仓库:https://github.com/goodrahstar/dailyhackerskills
仓库路径:skills/clawdbot-setup
安装命令:
npx skills add goodrahstar/dailyhackerskills --skill "clawdbot-setup"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add goodrahstar/dailyhackerskills --skill "clawdbot-setup"

简介

clawdbot-setup 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于 Clawdbot 技能初始化和环境配置场景。
  • 通过 npx skills add goodrahstar/dailyhackerskills --skill "clawdbot-setup" 安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或命令执行。
  • 注意检查是否会读写文件或执行外部操作,确保符合安全策略。

SKILL.md

name
clawdbot-setup
description
Complete installation and setup guide for Clawdbot - a personal AI assistant that runs 24/7. Use when the user wants to install Clawdbot from scratch, configure models (Gemini/Claude), set up Telegram bot, connect Gmail via Composio, or install the browser extension.

Clawdbot Complete Setup

Complete guide for installing and configuring Clawdbot, a personal AI assistant that runs 24/7 and integrates with messaging channels, Gmail, and browser automation.

Prerequisites

  • Node.js ≥22 installed
  • npm, pnpm, or bun package manager
  • macOS, Linux, or Windows (WSL2 recommended)
  • Telegram account (for bot setup)
  • Google account (for Gmail integration, optional)
  • Composio API key (for Gmail, optional)

Phase 1: Core Installation

Install Clawdbot

npm install -g clawdbot@latest
# or: pnpm add -g clawdbot@latest

Initialize Configuration

clawdbot setup

This creates:

  • Config: ~/.clawdbot/clawdbot.json
  • Workspace: ~/clawd
  • Sessions directory

Configure Gateway

clawdbot config set gateway.mode local
clawdbot config set gateway.bind loopback
clawdbot config set gateway.port 18789

Install Gateway Daemon

clawdbot onboard --install-daemon --non-interactive --accept-risk

This installs the gateway as a background service (LaunchAgent on macOS, systemd on Linux).

Phase 2: Model Configuration

Option A: Google Gemini (Recommended for Cost)

# Set primary model
clawdbot config set agents.defaults.model.primary "google/gemini-3-pro-preview"

# Configure model aliases
clawdbot config set agents.defaults.models."google/gemini-3-pro-preview".alias "gemini"
clawdbot config set agents.defaults.models."google/gemini-3-flash-preview".alias "gemini-flash"

# Add API key
clawdbot config set env.GEMINI_API_KEY "YOUR_GEMINI_API_KEY"

Get API key: https://aistudio.google.com/apikey

Option B: Anthropic Claude

clawdbot config set agents.defaults.model.primary "anthropic/claude-opus-4-5"
# Then configure credentials:
clawdbot models configure

Get API key: https://console.anthropic.com/

Verify Model

clawdbot models list
clawdbot agent --message "Hello" --agent main

Phase 3: Telegram Bot Setup

Create Telegram Bot

  1. Open Telegram, search @BotFather
  2. Send /newbot
  3. Name your bot (e.g., "MyAssistant")
  4. Choose username ending in "bot" (e.g., "myassistant_bot")
  5. Copy the bot token

Get Your User ID

  1. Search @userinfobot or @useridbot on Telegram
  2. Start the bot
  3. Copy your user ID (numeric)

Configure Telegram Channel

# Add Telegram channel
clawdbot channels add --channel telegram --token "YOUR_BOT_TOKEN"

# Set security (restrict to your user ID)
clawdbot config set channels.telegram.allowFrom '["YOUR_USER_ID"]'
clawdbot config set channels.telegram.dmPolicy "pairing"

Approve Pairing (if needed)

When you first message the bot, you'll get a pairing code. Approve it:

clawdbot pairing approve telegram PAIRING_CODE

Verify Telegram

clawdbot channels status
clawdbot health

Should show: Telegram: ok (@your_bot_name)

Phase 4: Gmail Integration (Composio)

Install Composio SDK

pip3 install composio

Setup Gmail Connection

  1. Get Composio API key from https://platform.composio.dev/
  2. Connect Gmail account on Composio dashboard
  3. Note the connected account ID (starts with ca_)

Create MCP Server

from composio import Composio

composio = Composio(api_key="YOUR_COMPOSIO_API_KEY")

# Create MCP server for Gmail
mcp_server = composio.mcp.create(
    name="clawdbot-gmail-server",
    toolkits=[{"toolkit": "gmail"}],
    allowed_tools=[
        "GMAIL_FETCH_EMAILS",
        "GMAIL_SEND_EMAIL",
        "GMAIL_CREATE_DRAFT",
        "GMAIL_LIST_LABELS",
        "GMAIL_GET_EMAIL"
    ]
)

# Generate user URL
mcp_instance = composio.mcp.generate(
    user_id="clawdbot-user",
    mcp_config_id=mcp_server.id
)

Add Composio to Clawdbot Config

clawdbot config set env.COMPOSIO_API_KEY "YOUR_COMPOSIO_API_KEY"

Alternative: Using gog CLI

# Install gog
brew install steipete/tap/gogcli

# Authorize Gmail
gog auth credentials /path/to/client_secret.json
gog auth add  [email protected]  --services gmail

Phase 5: Browser Extension Setup

Install Extension

clawdbot browser extension install

This installs to: ~/.clawdbot/browser/chrome-extension

Load in Chrome

  1. Open Chrome → chrome://extensions
  2. Enable "Developer mode" (top right)
  3. Click "Load unpacked"
  4. Select: ~/.clawdbot/browser/chrome-extension
  5. Pin the extension to toolbar

Use Extension

  1. Open the tab you want to control (e.g., Gmail)
  2. Click the Clawdbot extension icon
  3. Badge shows "ON" when attached
  4. Bot can now control that tab

Browser Status

clawdbot browser status

Should show:

  • profile: chrome
  • enabled: true
  • controlUrl: http://127.0.0.1:18791
  • cdpUrl: http://127.0.0.1:18792

Phase 6: Verification & Testing

Check System Status

clawdbot status
clawdbot health
clawdbot doctor

Test Telegram Bot

Message your bot on Telegram:

  • "Hello, are you working?"
  • "check my last 10 emails"
  • "what can you do?"

Test Gmail Access

With browser extension attached to Gmail tab:

  • "check my last 10 emails"
  • "show me unread emails"
  • "which emails need a response?"

Common Issues & Fixes

Gateway Won't Start

Error: hooks.enabled requires hooks.token

Fix: Disable hooks if not using webhooks:

clawdbot config set hooks.enabled false
clawdbot gateway restart

Telegram Not Responding

Check:

  1. Gateway is running: clawdbot health
  2. Bot token is correct: clawdbot channels status
  3. User ID is in allowlist: clawdbot config get channels.telegram.allowFrom
  4. Pairing was approved: Check ~/.clawdbot/credentials/telegram-pairing.json

Fix: Restart gateway and verify config:

clawdbot gateway restart
clawdbot channels status

Browser Extension Shows "!"

Error: Extension badge shows "!" (relay not reachable)

Fix:

  1. Ensure gateway is running: clawdbot health
  2. Check browser status: clawdbot browser status
  3. Verify relay is running (auto-started by gateway on port 18792)

Model Not Responding

Check:

  1. API key is set: clawdbot config get env.GEMINI_API_KEY (or ANTHROPIC_API_KEY)
  2. Model is configured: clawdbot models list
  3. Test directly: clawdbot agent --message "test" --agent main

Fix: Verify API key and restart gateway:

clawdbot config set env.GEMINI_API_KEY "YOUR_KEY"
clawdbot gateway restart

Gmail Not Accessible

Check:

  1. Composio account is connected: Check Composio dashboard
  2. MCP server is created: Verify in Composio dashboard
  3. Browser extension is attached: Badge shows "ON" on Gmail tab

Fix: Re-attach extension to Gmail tab and verify connection

Configuration Files

  • Main config: ~/.clawdbot/clawdbot.json
  • Workspace: ~/clawd/
  • Credentials: ~/.clawdbot/credentials/
  • Logs: ~/.clawdbot/logs/gateway.log

Useful Commands

# Status and health
clawdbot status
clawdbot health
clawdbot doctor

# Gateway control
clawdbot gateway restart
clawdbot gateway status

# Channel management
clawdbot channels status
clawdbot channels list

# Agent interaction
clawdbot agent --message "Your message" --agent main

# Browser control
clawdbot browser status
clawdbot browser extension path

# Configuration
clawdbot config get <key>
clawdbot config set <key> <value>

# Logs
clawdbot logs --follow
tail -f ~/.clawdbot/logs/gateway.log

Security Best Practices

  1. Telegram Security:

- Always set allowFrom with your user ID - Use dmPolicy: "pairing" for additional security - Run clawdbot doctor to check for security issues

  1. Browser Extension:

- Only attach when needed - Detach when done - Consider using a dedicated Chrome profile

  1. API Keys:

- Store in config (encrypted by system keyring) - Never commit to git - Rotate if compromised

  1. Gateway:

- Keep on loopback (127.0.0.1) for local use - Use Tailscale Serve/Funnel for remote access - Require token authentication

Next Steps After Setup

  1. Test basic functionality: Message bot on Telegram
  2. Connect Gmail: Set up Composio or gog CLI
  3. Install browser extension: For web automation
  4. Add more channels: WhatsApp, Slack, Discord
  5. Configure skills: Install additional capabilities
  6. Set up automation: Cron jobs, webhooks

Resources

  • Documentation: https://docs.clawd.bot
  • Getting Started: https://docs.clawd.bot/start/getting-started
  • Configuration Reference: https://docs.clawd.bot/gateway/configuration
  • Troubleshooting: https://docs.clawd.bot/help/troubleshooting
  • GitHub: https://github.com/clawdbot/clawdbot

Quick Setup Checklist

  • [ ] Clawdbot installed globally
  • [ ] Gateway daemon installed and running
  • [ ] Model configured (Gemini or Claude) with API key
  • [ ] Telegram bot created and configured
  • [ ] User ID added to allowlist
  • [ ] Pairing approved (if required)
  • [ ] Gmail connected (Composio or gog)
  • [ ] Browser extension installed and loaded in Chrome
  • [ ] Extension attached to Gmail tab (badge shows "ON")
  • [ ] Test messages working on Telegram
  • [ ] Gmail access tested and working

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

openclaw

29.66%
按下载量换算32

clawdbot

24.07%
按下载量换算26

trae

17.86%
按下载量换算19

OpenCode

11.52%
按下载量换算12

Cursor

6.78%
按下载量换算7

Codex

3.37%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills