#付録 A: コマンドのチートシート
OpenClaw は豊富なコマンド ライン ツールを提供します。この付録では、公式ドキュメントに基づいて、一般的に使用されるすべてのコマンドを整理します。
クイックナビゲーション
グローバルオプション
bash
openclaw [--dev] [--profile <name>] <command>
--dev # 隔离状态到 ~/.openclaw-dev,并偏移默认端口
--profile <name> # 隔离状态到 ~/.openclaw-<name>
--no-color # 禁用 ANSI 颜色
--update # 简写为 openclaw update(仅源码安装)
-V, --version, -v # 打印版本并退出インストールとアップデート
OpenClaw をインストールする
bash
# 通过 npm 安装(推荐)
npm install -g openclaw@latest
# 或通过 pnpm
pnpm add -g openclaw@latestOpenClaw を更新する
bash
# 检查并更新到最新版本
openclaw update
# 切换到特定频道
openclaw update --channel stable|beta|dev
# 查看当前版本
openclaw --versionOpenClaw をアンインストールする
bash
# 卸载网关服务和本地数据(CLI 保留)
openclaw uninstall
# 指定范围卸载
openclaw uninstall --service --state --workspace --app --all
# 重置配置和状态(保留 CLI)
openclaw reset
openclaw reset --scope config+creds+sessions --yes初期化と構成
初期化ウィザード
bash
# 交互式设置向导(推荐)
openclaw onboard
# 初始化并安装守护进程
openclaw onboard --install-daemon
# 非交互式模式
openclaw onboard --non-interactive --mode local
# 重置后重新初始化
openclaw onboard --reset構成ウィザード
bash
# 交互式配置向导
openclaw configure
# 验证配置
openclaw doctor
openclaw doctor --fix # 自动修复
openclaw doctor --deep # 深度扫描コンソールを開きます
bash
# 启动 Web Dashboard
openclaw dashboardゲートウェイ管理
Gateway は OpenClaw のコア サービスであり、デフォルトでは ws://127.0.0.1:18789 で実行されます。
ゲートウェイの開始
bash
# 前台运行(调试模式)
openclaw gateway --port 18789 --verbose
# 指定绑定地址
openclaw gateway --bind loopback|lan|tailnet|auto|custom
# 使用 Token 认证
openclaw gateway --auth token --token <token>
# 使用密码认证
openclaw gateway --auth password --password <password>
# Tailscale 集成
openclaw gateway --tailscale serve|funnel
# 开发模式
openclaw gateway --devゲートウェイサービス管理
bash
# 查看网关服务状态
openclaw gateway status
# 安装为系统服务
openclaw gateway install
# 卸载服务
openclaw gateway uninstall
# 启动/停止/重启服务
openclaw gateway start
openclaw gateway stop
openclaw gateway restart
# 查看日志
openclaw logs
openclaw logs --limit 100ゲートウェイのヘルスチェック
bash
# 获取网关健康状态
openclaw health
openclaw health --json
openclaw health --verbose
# 网关调用(RPC)
openclaw gateway call <method> --params '<json>'エージェント管理
すべてのエージェントをリストする
bash
openclaw agents list
openclaw agents list --json
openclaw agents list --bindingsエージェントを追加
bash
# 交互式添加
openclaw agents add
# 指定名称添加
openclaw agents add [name]
# 非交互式添加
openclaw agents add my-agent \
--workspace ~/.openclaw/workspace-my-agent \
--model anthropic/claude-sonnet-4-5 \
--bind whatsapp:personal \
--non-interactiveバインディング管理
bash
# 查看绑定
openclaw agents bindings
openclaw agents bindings --agent <id>
# 添加绑定
openclaw agents bind --agent <id> --bind <channel[:accountId]>
# 移除绑定
openclaw agents unbind --agent <id> --bind <channel[:accountId]>
openclaw agents unbind --agent <id> --allエージェントの削除
bash
openclaw agents delete <id>
openclaw agents delete <id> --forceエージェントを実行する
bash
# 单次对话
openclaw agent --message "Hello" --to <dest>
# 指定会话
openclaw agent --message "Hello" --session-id <id>
# 指定思考级别
openclaw agent --message "Hello" --thinking high
# 本地模式(不通过网关)
openclaw agent --message "Hello" --local
# 指定渠道回复
openclaw agent --message "Hello" --channel whatsapp --deliverスキル管理
スキルをリストアップする
bash
openclaw skills list
openclaw skills list --eligible # 仅显示就绪技能
openclaw skills list --json
openclaw skills list -v # 显示缺失需求详情スキルの詳細を表示する
bash
openclaw skills info <name>スキルステータスを確認する
bash
openclaw skills checkヒント:
npx clawhubを使用して、スキルを検索、インストール、同期します。
プラグイン管理
プラグインの一覧表示
bash
openclaw plugins list
openclaw plugins list --jsonプラグインの詳細を表示する
bash
openclaw plugins info <id>プラグインをインストールする
bash
openclaw plugins install <path|.tgz|npm-spec>プラグインを有効/無効にする
bash
openclaw plugins enable <id>
openclaw plugins disable <id>プラグイン診断
bash
openclaw plugins doctorメモリ管理
メモリステータスの表示
bash
openclaw memory statusインデックスメモリ
bash
openclaw memory indexメモリの検索
bash
openclaw memory search "<query>"
openclaw memory search --query "<query>"デバイス管理
デバイスのリストを表示する
bash
openclaw devices list
openclaw devices list --json承認装置
bash
openclaw devices approve [requestId]
openclaw devices approve --latestデバイスを拒否します
bash
openclaw devices reject <requestId>デバイスを削除します
bash
openclaw devices remove <deviceId>デバイスをクリアします
bash
openclaw devices clear --yes
openclaw devices clear --yes --pendingペアリング管理
ペアリング要求をリストする
bash
openclaw pairing list
openclaw pairing list [channel] --channel <channel> --account <id>ペアリングを承認する
bash
openclaw pairing approve <channel> <code>
openclaw pairing approve --channel <channel> <code> --notifyチャネル管理
チャンネルをリストする
bash
openclaw channels list
openclaw channels list --jsonチャンネルのステータスを確認する
bash
openclaw channels status
openclaw channels status --probeチャンネルログを表示する
bash
openclaw channels logs
openclaw channels logs --channel <name> --limit 200チャンネルを追加
bash
# 交互式添加
openclaw channels add
# 非交互式添加 Telegram
openclaw channels add \
--channel telegram \
--account alerts \
--name "Alerts Bot" \
--token $TELEGRAM_BOT_TOKEN
# 非交互式添加 Discord
openclaw channels add \
--channel discord \
--account work \
--name "Work Bot" \
--token $DISCORD_BOT_TOKENチャンネルを削除します
bash
openclaw channels remove --channel <channel> --account <id>
openclaw channels remove --channel <channel> --account <id> --deleteログイン/ログアウト
bash
# WhatsApp Web 登录
openclaw channels login
openclaw channels login --channel whatsapp --account <id> --verbose
# 登出
openclaw channels logout
openclaw channels logout --channel <channel> --account <id>メッセージ送信
メッセージを送信
bash
openclaw message send --target +15555550123 --message "Hello"投票を送信
bash
openclaw message poll \
--channel discord \
--target channel:123 \
--poll-question "Snack?" \
--poll-option Pizza \
--poll-option Sushiその他のメッセージ操作
bash
openclaw message react
openclaw message reactions
openclaw message read
openclaw message edit
openclaw message delete
openclaw message pin
openclaw message unpinモデル管理
モデルのリスト
bash
openclaw models list
openclaw models statusモデルをセットアップする
bash
openclaw models set <model>
openclaw models set-image <model>モデルのエイリアス
bash
openclaw models aliases list
openclaw models aliases add <alias> <model>
openclaw models aliases remove <alias>モデルのロールバック
bash
openclaw models fallbacks list
openclaw models fallbacks add <model>
openclaw models fallbacks remove <model>
openclaw models fallbacks clearモデル認定
bash
openclaw models auth add
openclaw models auth setup-token
openclaw models auth paste-token
openclaw models auth order get|set|clear設定操作
構成を取得する
bash
openclaw config get <path>
openclaw config get agents.defaults.workspace設定の設定
bash
openclaw config set <path> <value>
openclaw config set agents.defaults.heartbeat.every "2h"構成の削除
bash
openclaw config unset <path>設定ファイルのパス
bash
openclaw config file構成を確認する
bash
openclaw config validate
openclaw config validate --jsonシステム管理
システムイベント
bash
openclaw system eventハートビート管理
bash
openclaw system heartbeat last
openclaw system heartbeat enable
openclaw system heartbeat disableオンラインステータス
bash
openclaw system presenceセキュリティ管理
セキュリティ監査
bash
openclaw security audit
openclaw security audit --deep
openclaw security audit --fix鍵管理
bash
openclaw secrets reload
openclaw secrets audit
openclaw secrets configure
openclaw secrets apply --from <plan.json>セッション管理
セッションの一覧表示
bash
openclaw sessions list
openclaw sessions --json
openclaw sessions --verboseステータスを確認する
bash
openclaw status
openclaw status --json
openclaw status --deep
openclaw status --usageブラウザ管理
bash
openclaw browser status
openclaw browser start
openclaw browser stop
openclaw browser reset-profile
openclaw browser tabs
openclaw browser open <url>
openclaw browser screenshot
openclaw browser navigate <url>スケジュールされたタスク
bash
openclaw cron status
openclaw cron list
openclaw cron add
openclaw cron edit <id>
openclaw cron rm <id>
openclaw cron enable <id>
openclaw cron disable <id>
openclaw cron runs
openclaw cron run <id>ショートカット コマンドのエイリアス
効率を向上させるために、よく使用されるコマンドのエイリアスを設定できます。
bash
# 添加到 ~/.bashrc 或 ~/.zshrc
alias oc='openclaw'
alias ocg='openclaw gateway'
alias ocs='openclaw skills'
alias oca='openclaw agents'
alias ocd='openclaw dashboard'
alias ocdr='openclaw doctor'
alias occh='openclaw channels'
# 快速启动别名
alias ocstart='openclaw gateway start && openclaw dashboard'
alias ocstop='openclaw gateway stop'
alias ocrestart='openclaw gateway restart'トラブルシューティングのクイックチェック
| 問題 | 診断コマンド | ソリューション |
|---|---|---|
ゲートウェイを起動できません。 openclaw doctor | ポート占有率を確認し、ログを表示します。 | |
| ダッシュボードにアクセスできません | openclaw gateway status | ゲートウェイが実行されていることを確認し、ファイアウォールをチェックします。 |
| チャネル接続に失敗しました | openclaw channels status --probe | チャネル構成と認証を確認する |
| モデルの接続に失敗しました | openclaw models status | API キーとモデル構成を確認する |
| デバイスのペアリングに失敗しました | openclaw devices list | 保留中のデバイスを承認する |
| 構成の検証に失敗しました | openclaw config validate | エラー プロンプトに従って構成を修復します。 |
さらにヘルプ
bash
# 查看全局帮助
openclaw --help
# 查看子命令帮助
openclaw <command> --help
# 查看具体命令帮助
openclaw gateway --help
openclaw channels add --helpヒント: このチートシートは、OpenClaw の公式ドキュメントに基づいています。最新情報については、docs.openclaw.ai にアクセスすることをお勧めします。