重要な基礎概念 / Core Concepts
- 日本語
- English
- 简体中文
OpenClawを使いこなすための4つのキーワード
OpenClawのAIエージェントとスムーズに連携するために、以下の4つの概念を覚えておきましょう。
1. Workspace(仕事部屋)
エージェントが活動する中核となるフォルダ(ディレクトリ)です。AIはこのフォルダの中だけを安全に読み書きします(あなたの許可なく他の大事なフォルダを消したりしないための「箱庭」でもあります)。
- 例: メモの整理、作業用コードの作成、データベースの保存などはすべてここで完結します。
2. Inbox(ポスト・私書箱)
あなた(人間)が、AIに仕事をお願いするための「非同期な」メッセージボックスです。 AIが今休んでいても、Inboxに「このファイルを翻訳しといて」と依頼ファイルを投函しておけば、次回起きた時に順番に処理してくれます。チャットのようにリアルタイムで待たなくて良いのが利点です。
3. Tools & Skills(道具箱)
- Tools(ツール): AIが生まれつき持っている基礎的な能力(ファイルを見る、コマンドを叩く など)。
- Skills(スキル): あなたがAIに教え込んだ「特定の業務フロー」です。「YouTubeの要約の仕方」や「ブログの書き方」など、ルール(
SKILL.md)と必要なスクリプトをセットにしたパッケージです。
4. Subagents(配下の部下エージェント)
プロジェクトが大きくなった時、メインのAIは「これ、時間がかかるから部下にやらせよう」と、自分専用の小さなAI(サブエージェント)を呼び出します。メインAIがマネージャーとなり、複数の部下で並行作業を行うための仕組みです。
The 4 Keywords to Mastering OpenClaw
To interoperate smoothly with OpenClaw AI agents, keep these four fundamental concepts in mind.
1. Workspace
This is the core directory (folder) where the agent operates. The AI will only safely read and write inside this folder (acting as a "sandbox" so it doesn't accidentally delete your crucial files without permission).
- Example: Organizing notes, generating working code, or saving local databases all happen here.
2. Inbox
An asynchronous message box for you (the human) to assign tasks to the AI. Even if the AI is currently "sleeping," you can drop a request like "Please translate this file" into the Inbox. The AI will process it sequentially the next time it wakes up. The advantage is that you don't have to wait in real-time like a chat interface.
3. Tools & Skills
- Tools: The inherent basic abilities the AI possesses (e.g., viewing files, executing terminal commands).
- Skills: "Specific workflows" that you have taught the AI. Packaged routines (like "How to summarize a YouTube video" or "How to write a blog post") consisting of rules (
SKILL.md) and necessary scripts.
4. Subagents
When a project becomes complex, the main AI can spawn smaller, dedicated AIs ("Subagents") and say, "This will take time, I'll delegate it to my subordinates." It's a mechanism where the main AI acts as a manager, coordinating parallel work among multiple subordinate AIs.
掌握 OpenClaw 的 4 个核心关键词
为了与 OpenClaw AI 代理顺畅协作,请牢记以下四个基础概念。
1. Workspace(工作空间 / 办公室)
这是代理开展核心活动的文件夹(目录)。AI 将只在这个文件夹内安全地进行读写操作(它也是一个“沙箱”,防止 AI 未经许可意外删除您其他重要文件)。
- 示例: 整理笔记、编写工作代码或保存本地数据库等所有操作都在这里闭环完成。
2. Inbox(收件箱 / 异步信箱)
这是您(人类)向 AI 委派任务的“异步”消息盒。 即使 AI 此时正在“休眠”,您也可以将“请把这个文件翻译一下”的请求投递到 Inbox 中。AI 在下次苏醒时就会按顺序处理它们。最大的优势在于您不需要像面对实时聊天那样一直在线等待。
3. Tools & Skills(工具与技能包)
- Tools(工具):AI 天生具备的基础能力模块(例如:读取文件、执行终端命令等)。
- Skills(技能):您传授给 AI 的“特定业务工作流”。它是将业务规则(
SKILL.md)和所需的脚本打包在一起的合集(例如:“如何总结 YouTube 视频”或“如何撰写博客文章”)。
4. Subagents(子代理 / 下属)
当面对复杂的项目时,主 AI 会生成专门的小型 AI(子代理)并决定:“这个任务比较耗时,我交由下属去处理。” 这是一种主 AI 充当经理角色,协调多个下属 AI 进行并行作业的机制。