一键导入
When the user asks about their inbox — what's there, search for an email, recent unread — use mail.list / mail.search.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
When the user asks about their inbox — what's there, search for an email, recent unread — use mail.list / mail.search.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | |
| description | When the user asks about their inbox — what's there, search for an email, recent unread — use mail.list / mail.search. |
| metadata | {"openape":{"requires_tools":["mail.list"]},"openclaw":{"requires":{"bins":["o365-cli"]}}} |
Read access to the owner's Microsoft 365 inbox via the o365-cli tool on the agent host. The host must have o365-cli installed and authenticated (the owner's CLI session). If it isn't, both tools fail with a clear setup error.
mail.list — recent inbox messages. Optional unread_only: true. Default limit 20.mail.search — keyword/from/subject search. Pass a query string.For writing, archiving, replying, or moving messages: use bash with explicit o365-cli subcommands (see o365-cli mail --help). Those go through the DDISA grant cycle so the owner approves each mutation.
Latest 10 unread:
mail.list({ "limit": 10, "unread_only": true })
Search by sender:
mail.search({ "q": "from:smaurer@deloitte.at", "limit": 20 })
When a task can't be done with the other curated tools (file.read, http.get, tasks.create, mail.list, etc.), use bash — runs any shell command on the agent host through the DDISA grant cycle.
When the user asks you to read, write, or check a file in your home directory, use the file.read / file.write tools — they're $HOME-jailed and safer than bash cat.
When the user asks to fetch a webpage, hit a REST API, or POST JSON to an endpoint, use the http.get / http.post tools — never invent URLs.
When the user wants to see, create, or schedule a task/reminder/wiedervorlage on their personal task list, use tasks.list / tasks.create.
When the user asks for the current time, date, or wants a sanity-check that the runtime is alive, use the time.now tool — never guess.
OpenAPE Shapes — grant-aware CLI wrappers with adapter registry for structured, auditable command execution