你新安装的小龙虾(OpenClaw)是不是除了聊天,啥也干不了?

你新安装的小龙虾(OpenClaw)是不是除了聊天,啥也干不了?

在新版本的OpenClaw 2026.3.2中,官方对安全权限做了调整,在openclaw.json这个配置文件中,默认的tools->profilemessaging

1
2
3
"tools": {
"profile": "messaging",
}

这是一个深思熟虑的安全权衡,新用户可能没有意识到让 AI 执行系统命令的潜在风险,因此默认限制为安全的聊天功能。如果你了解风险并希望使用完整功能,需要显式启用。最近,工信部提示OpenClaw开源AI智能体安全隐患,所以,在玩的时候,也要注意信息。
alt text

那么,如果你想开启全部权限,把messaging改为full,然后重启即可。

alt text

这样是可以通过OpenClaw来执行很多操作了,但是,还是不够的。现在,我们还需要安装一些Skills,

使用npx clawhub@latest install <技能名>或者clawhub install <技能名>来安装。

ClawHub 是 OpenClaw 的公共 Skills 注册中心。它是一项免费服务:所有 Skills 都是公开的、开放的,所有人都可以查看、共享和复用。Skills 就是一个包含 SKILL.md 文件(以及辅助文本文件)的文件夹。你可以在网页应用中浏览 Skills,也可以使用 CLI 来搜索、安装、更新和发布 Skills,地址:https://clawhub.ai/

npm i -g clawhubpnpm add -g clawhub 任选其一;

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
openclaw@ecm-dbc4:~$ pnpm add -g clawhub

╭───────────────────────────────────────────────╮
│ │
│ Update available! 10.30.3 → 10.31.0. │
│ Changelog: https://pnpm.io/v/10.31.0 │
│ To update, run: corepack use pnpm@10.31.0 │
│ │
╰───────────────────────────────────────────────╯

 WARN  9 deprecated subdependencies found: are-we-there-yet@2.0.0, gauge@3.0.2, glob@10.5.0, glob@7.2.3, inflight@1.0.6, node-domexception@1.0.0, npmlog@5.0.1, rimraf@3.0.2, tar@6.2.1
Packages: +12
++++++++++++
Progress: resolved 756, reused 667, downloaded 12, added 12, done
 WARN  Issues with peer dependencies found
.
└─┬ openclaw 2026.3.2
└─┬ @discordjs/voice 0.19.0
└─┬ prism-media 1.3.5
└── ✕ unmet peer opusscript@^0.0.8: found 0.1.1

/home/openclaw/.local/share/pnpm/global/5:
+ clawhub 0.7.0

╭ Warning ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ │
│ Ignored build scripts: @discordjs/opus@0.10.0, @whiskeysockets/baileys@7.0.0-rc.9, koffi@2.15.1, node-llama-cpp@3.16.2, protobufjs@6.8.8, protobufjs@7.5.4, sharp@0.34.5. │
│ Run "pnpm approve-builds -g" to pick which dependencies should be allowed to run scripts. │
│ │
╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
Done in 10.4s using pnpm v10.30.3

alt text

首先,尽量配置一下clawhub token,不然经常会

1
2
3
openclaw@ecm-dbc4:~$ clawhub install tavily-search
✖ Rate limit exceeded
Error: Rate limit exceeded

注册clawhub,获取到CLI token,配置后,就会顺畅许多

1
2
openclaw@ecm-dbc4:~$ clawhub login --token clh_T6ieSAAY4cTh9XhiH3iOvirWK1oZWnBBOQfPf4-xxxxxxxxx
✔ OK. Logged in as @eyiadmin.

首先,我们需要安装的第一个Skills,是skill-vetter
alt text

它能帮你扫描其他技能的安全性和潜在风险

1
2
3
openclaw@ecm-dbc4:~$ clawhub install skill-vetter
✔ OK. Installed skill-vetter -> /home/openclaw/.openclaw/workspace/skills/skill-vetter

其它的Skills,我们就可以在Clawhub中找找有没有适合自己的

alt text

接下来就安装Tavily Web Search,让OpenClaw具有联网的能力。使用Tavily,还需要去官网注册一个账号,然后获取到API Key。
alt text

1
2
3
openclaw@ecm-dbc4:~$ clawhub install tavily-search
✔ OK. Installed tavily-search -> /home/openclaw/.openclaw/workspace/skills/tavily-search

需要配置TAVILY_API_KEY,
echo 'export TAVILY_API_KEY="tvly-你的完整key"' >> ~/.bashrc && source ~/.bashrc

安装find-skills,它会根据根据我们的需求,自己去查找合适的Skills来安装。

1
2
3
4
5
clawhub install find-skills

openclaw@ecm-dbc4:~$ clawhub install find-skills
✔ OK. Installed find-skills -> /home/openclaw/.openclaw/workspace/skills/find-skills

self-improvingevolver ,通过自我反思和纠正,具备自动提升自身能力

1
2
3
4
5
clawhub install self-improving

openclaw@ecm-dbc4:~$ clawhub install self-improving
✔ OK. Installed self-improving -> /home/openclaw/.openclaw/workspace/skills/self-improving

auto-updater 它会每天凌晨4点自动更新已经安装的Skills

1
2
3
openclaw@ecm-dbc4:~$ clawhub install auto-updater
✔ OK. Installed auto-updater -> /home/openclaw/.openclaw/workspace/skills/auto-updater

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
openclaw@ecm-dbc4:~$ openclaw skills list

🦞 OpenClaw 2026.3.2 (85377a2) — I don't have opinions about tabs vs spaces. I have opinions about everything else.

Skills (12/59 ready)
┌───────────┬──────────────────┬─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┬────────────────────┐
│ Status │ Skill │ Description │ Source │
├───────────┼──────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┼────────────────────┤
│ ✓ ready │ 📦 qqbot-cron │ QQ Bot 智能提醒技能。支持一次性提醒、周期性任务、自动降级确保送达。可设置、查询、取消提醒。 │ openclaw-extra │
│ ✓ ready │ 📸 qqbot-media │ QQBot 图片/语音/视频/文件收发能力。用户发来的图片自动下载到本地,发送图片使用 <qqimg> 标签,发送语音使用 <qqvoice> 标签,发送视频使用 <qqvideo> 标签,发送文件使用 <qqfile> │ openclaw-extra │
│ │ │ 标签。所有富媒体标签必须正确闭合,即 <qqXXX>内容</qqXXX> 的格式,未闭合的标签会导致消息无法正确解析。当通过 QQ 通道通信时使用此技能。 │ │
│ ✗ missing │ 🔐 1password │ Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi- │ openclaw-bundled │
│ │ │ account), or reading/injecting/running secrets via op. │ │
│ ✗ missing │ 📝 apple-notes │ Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user │ openclaw-bundled │
│ │ │ asks OpenClaw to add a note, list notes, search notes, or manage note folders. │ │
│ ✗ missing │ ⏰ apple- │ Manage Apple Reminders via remindctl CLI (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain │ openclaw-bundled │
│ │ reminders │ output. │ │
│ ✗ missing │ 🐻 bear-notes │ Create, search, and manage Bear notes via grizzly CLI. │ openclaw-bundled │
│ ✗ missing │ 📰 blogwatcher │ Monitor blogs and RSS/Atom feeds for updates using the blogwatcher CLI. │ openclaw-bundled │
│ ✗ missing │ 🫐 blucli │ BluOS CLI (blu) for discovery, playback, grouping, and volume. │ openclaw-bundled │
│ ✗ missing │ 🫧 bluebubbles │ Use when you need to send or manage iMessages via BlueBubbles (recommended iMessage integration). Calls go through the generic │ openclaw-bundled │
│ │ │ message tool with channel="bluebubbles". │ │
│ ✗ missing │ 📸 camsnap │ Capture frames or clips from RTSP/ONVIF cameras. │ openclaw-bundled │
│ ✓ ready │ 📦 clawhub │ Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new │ openclaw-bundled │
│ │ │ skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm- │ │
│ │ │ installed clawhub CLI. │ │
│ ✗ missing │ 🧩 coding-agent │ Delegate coding tasks to Codex, Claude Code, or Pi agents via background process. Use when: (1) building/creating new features │ openclaw-bundled │
│ │ │ or apps, (2) reviewing PRs (spawn in temp dir), (3) refactoring large codebases, (4) iterative coding that needs file │ │
│ │ │ exploration. NOT for: simple one-liner fixes (just edit), reading code (use read tool), thread-bound ACP harness requests in │ │
│ │ │ chat (for example spawn/run Codex or Claude Code in a Discord thread; use sessions_spawn with runtime:"acp"), or any work in ~/ │ │
│ │ │ clawd workspace (never spawn agents here). Requires a bash tool that supports pty:true. │ │
│ ✗ missing │ 🎮 discord │ Discord ops via the message tool (channel=discord). │ openclaw-bundled │
│ ✗ missing │ 🎛️ eightctl │ Control Eight Sleep pods (status, temperature, alarms, schedules). │ openclaw-bundled │
│ ✗ missing │ ♊️ gemini │ Gemini CLI for one-shot Q&A, summaries, and generation. │ openclaw-bundled │
│ ✗ missing │ 📦 gh-issues │ Fetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh- │ openclaw-bundled │
│ │ │ issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] │ │
│ │ │ [--reviews-only] [--cron] [--dry-run] [--model glm-5] [--notify-channel -1002381931352] │ │
│ ✗ missing │ 🧲 gifgrep │ Search GIF providers with CLI/TUI, download results, and extract stills/sheets. │ openclaw-bundled │
│ ✗ missing │ 🐙 github │ GitHub operations via `gh` CLI: issues, PRs, CI runs, code review, API queries. Use when: (1) checking PR status or CI, (2) │ openclaw-bundled │
│ │ │ creating/commenting on issues, (3) listing/filtering PRs or issues, (4) viewing run logs. NOT for: complex web UI interactions │ │
│ │ │ requiring manual browser flows (use browser tooling when available), bulk operations across many repos (script with gh api), │ │
│ │ │ or when gh auth is not configured. │ │
│ ✗ missing │ 🎮 gog │ Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs. │ openclaw-bundled │
│ ✗ missing │ 📍 goplaces │ Query Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human- │ openclaw-bundled │
│ │ │ friendly place lookup or JSON output for scripts. │ │
│ ✓ ready │ 📦 healthcheck │ Host security hardening and risk-tolerance configuration for OpenClaw deployments. Use when a user asks for security audits, │ openclaw-bundled │
│ │ │ firewall/SSH/update hardening, risk posture, exposure review, OpenClaw cron scheduling for periodic checks, or version status │ │
│ │ │ checks on a machine running OpenClaw (laptop, workstation, Pi, VPS). │ │
│ ✗ missing │ 📧 himalaya │ CLI to manage emails via IMAP/SMTP. Use `himalaya` to list, read, write, reply, forward, search, and organize emails from the │ openclaw-bundled │
│ │ │ terminal. Supports multiple accounts and message composition with MML (MIME Meta Language). │ │
│ ✗ missing │ 📨 imsg │ iMessage/SMS CLI for listing chats, history, and sending messages via Messages.app. │ openclaw-bundled │
│ ✗ missing │ 📦 mcporter │ Use the mcporter CLI to list, configure, auth, and call MCP servers/tools directly (HTTP or stdio), including ad-hoc servers, │ openclaw-bundled │
│ │ │ config edits, and CLI/type generation. │ │
│ ✗ missing │ 📊 model-usage │ Use CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model │ openclaw-bundled │
│ │ │ or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per- │ │
│ │ │ model summary from codexbar cost JSON. │ │
│ ✗ missing │ 🍌 nano-banana- │ Generate or edit images via Gemini 3 Pro Image (Nano Banana Pro). │ openclaw-bundled │
│ │ pro │ │ │
│ ✗ missing │ 📄 nano-pdf │ Edit PDFs with natural-language instructions using the nano-pdf CLI. │ openclaw-bundled │
│ ✗ missing │ 📝 notion │ Notion API for creating and managing pages, databases, and blocks. │ openclaw-bundled │
│ ✗ missing │ 💎 obsidian │ Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli. │ openclaw-bundled │
│ ✗ missing │ 🖼️ openai-image- │ Batch-generate images via OpenAI Images API. Random prompt sampler + `index.html` gallery. │ openclaw-bundled │
│ │ gen │ │ │
│ ✗ missing │ 🎙️ openai- │ Local speech-to-text with the Whisper CLI (no API key). │ openclaw-bundled │
│ │ whisper │ │ │
│ ✗ missing │ ☁️ openai- │ Transcribe audio via OpenAI Audio Transcriptions API (Whisper). │ openclaw-bundled │
│ │ whisper-api │ │ │
│ ✗ missing │ 💡 openhue │ Control Philips Hue lights and scenes via the OpenHue CLI. │ openclaw-bundled │
│ ✗ missing │ 🧿 oracle │ Best practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns). │ openclaw-bundled │
│ ✗ missing │ 🛵 ordercli │ Foodora-only CLI for checking past orders and active order status (Deliveroo WIP). │ openclaw-bundled │
│ ✗ missing │ 👀 peekaboo │ Capture and automate macOS UI with the Peekaboo CLI. │ openclaw-bundled │
│ ✗ missing │ 🗣️ sag │ ElevenLabs text-to-speech with mac-style say UX. │ openclaw-bundled │
│ ✗ missing │ 📜 session-logs │ Search and analyze your own session logs (older/parent conversations) using jq. │ openclaw-bundled │
│ ✗ missing │ 🗣️ sherpa-onnx- │ Local text-to-speech via sherpa-onnx (offline, no cloud) │ openclaw-bundled │
│ │ tts │ │ │
│ ✓ ready │ 📦 skill-creator │ Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets. │ openclaw-bundled │
│ ✗ missing │ 💬 slack │ Use when you need to control Slack from OpenClaw via the slack tool, including reacting to messages or pinning/unpinning items │ openclaw-bundled │
│ │ │ in Slack channels or DMs. │ │
│ ✗ missing │ 🌊 songsee │ Generate spectrograms and feature-panel visualizations from audio with the songsee CLI. │ openclaw-bundled │
│ ✗ missing │ 🔊 sonoscli │ Control Sonos speakers (discover/status/play/volume/group). │ openclaw-bundled │
│ ✗ missing │ 🎵 spotify-player │ Terminal Spotify playback/search via spogo (preferred) or spotify_player. │ openclaw-bundled │
│ ✗ missing │ 🧾 summarize │ Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for “transcribe this YouTube/ │ openclaw-bundled │
│ │ │ video”). │ │
│ ✗ missing │ ✅ things-mac │ Manage Things 3 via the `things` CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local │ openclaw-bundled │
│ │ │ Things database). Use when a user asks OpenClaw to add a task to Things, list inbox/today/upcoming, search tasks, or inspect │ │
│ │ │ projects/areas/tags. │ │
│ ✗ missing │ 🧵 tmux │ Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output. │ openclaw-bundled │
│ ✗ missing │ 📋 trello │ Manage Trello boards, lists, and cards via the Trello REST API. │ openclaw-bundled │
│ ✗ missing │ 🎞️ video-frames │ Extract frames or short clips from videos using ffmpeg. │ openclaw-bundled │
│ ✗ missing │ 📞 voice-call │ Start voice calls via the OpenClaw voice-call plugin. │ openclaw-bundled │
│ ✗ missing │ 📱 wacli │ Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats). │ openclaw-bundled │
│ ✓ ready │ 🌤️ weather │ Get current weather and forecasts via wttr.in or Open-Meteo. Use when: user asks about weather, temperature, or forecasts for │ openclaw-bundled │
│ │ │ any location. NOT for: historical weather data, severe weather alerts, or detailed meteorological analysis. No API key needed. │ │
│ ✗ missing │ 𝕏 xurl │ A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, │ openclaw-bundled │
│ │ │ quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint. │ │
│ ✓ ready │ 📦 auto-updater │ Automatically update Clawdbot and all installed skills once daily. Runs via cron, checks for updates, applies them, and │ openclaw-workspace │
│ │ │ messages the user with a summary of what changed. │ │
│ ✓ ready │ 📦 capability- │ A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained │ openclaw-workspace │
│ │ evolver │ evolution. │ │
│ ✓ ready │ 📦 find-skills │ Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a │ openclaw-workspace │
│ │ │ skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for │ │
│ │ │ functionality that might exist as an installable skill. │ │
│ ✓ ready │ 📦 Self- │ Self-reflection + Self-criticism + Self-learning + Self-organizing memory. Agent evaluates its own work, catches mistakes, and │ openclaw-workspace │
│ │ Improving Agent │ improves permanently. Use before starting work and after responding to the user. │ │
│ │ (Proactive Self- │ │ │
│ │ Reflection) │ │ │
│ ✓ ready │ 📦 skill-vetter │ Security-first skill vetting for AI agents. Use before installing any skill from ClawdHub, GitHub, or other sources. Checks │ openclaw-workspace │
│ │ │ for red flags, permission scope, and suspicious patterns. │ │
│ ✓ ready │ 📦 tavily │ AI-optimized web search via Tavily API. Returns concise, relevant results for AI agents. │ openclaw-workspace │
└───────────┴──────────────────┴─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┴────────────────────┘

Tip: use `npx clawhub` to search, install, and sync skills.

大家可以在使用过程去搜索适合自己的Skills。你也可以让它自己去创建你自己的Skills
alt text

还可以,让它写个简单的代码,

alt text
alt text

有了这个Agent其实还可以做很多有用的事情,在使用中来慢慢摸索吧

你新安装的小龙虾(OpenClaw)是不是除了聊天,啥也干不了?

https://blogs.52fx.biz/posts/3356173791.html

作者

eyiadmin

发布于

2026-03-09

更新于

2026-03-09

许可协议

评论