← Back to Skills Marketplace
576
Downloads
0
Stars
0
Active Installs
5
Versions
Install in OpenClaw
/install aitablet
Description
AI办公本 Skill:用于在 OpenClaw 中访问 思必驰AI办公本的会议(笔记、记录)、待办、标签与知识库检索能力。 当用户表达以下意图时优先使用本技能: - 查笔记/看笔记详情/查会议/找记录 - 查待办/新建待办/更新待办/删除待办 - 同步标签/查标签 - 搜索知识库(笔记、待办)
README (SKILL.md)
\r \r
AI办公本 Skill\r
\r
重要说明(授权方式)\r
\r
authToken(对应 env 为AIWORK_AUTH_TOKEN)是访问业务接口的必需授权凭证。\r- 首次安装时,在配置文件
~/.aispeech/aitablet.json中添加:\r \r
{\r
"aitablet-skill": {\r
"env": {\r
"AIWORK_AUTH_TOKEN": "你的授权凭证",\r
"AIWORK_BASE_URL": "API前缀域名"\r
}\r
}\r
}\r
```\r
\r
3. Skill 运行时,需要读取配置文件中的env变量设置到当前环境变量,仅使用已有 `authToken` 调用业务接口:\r
- `Authorization: Bearer ${AIWORK_AUTH_TOKEN}`\r
\r
## 快速决策\r
\r
Base URL: `${AIWORK_BASE_URL:-https://aiworks.cn}` \r
Prefix: `/aitablet/api/skill/v1`\r
\r
| 用户意图 | 接口 | 必需 Scope |\r
| ------------------------ | ----------------------------- | ---------------- |\r
| 查笔记(会议、记录)列表 | `GET /note/list` | `NOTE_READ` |\r
| 查笔记(会议、记录)详情 | `GET /note/{noteUid}` | `NOTE_READ` |\r
| 查待办列表 | `GET /todo/list` | `TODO_READ` |\r
| 新建待办 | `POST /todo` | `TODO_WRITE` |\r
| 更新待办 | `PUT /todo/{todoUid}` | `TODO_WRITE` |\r
| 删除待办 | `DELETE /todo/{todoUid}` | `TODO_WRITE` |\r
| 查用户标签 | `GET /label/user` | `LABEL_READ` |\r
| 同步用户标签 | `POST /label/user/sync` | `LABEL_WRITE` |\r
| 查笔记标签 | `GET /label/note` | `LABEL_READ` |\r
| 同步笔记标签 | `POST /label/note/sync` | `LABEL_WRITE` |\r
| 搜索笔记知识库 | `POST /knowledge/note/search` | `KNOWLEDGE_READ` |\r
| 搜索待办知识库 | `POST /knowledge/todo/search` | `KNOWLEDGE_READ` |\r
\r
## 参数与返回约定\r
\r
- 统一响应:`{ code, message, data }`\r
- 成功 `code` 为字符串 `"0"`\r
\r
## 易错点\r
\r
### todo 写接口\r
\r
- `beginTime/endTime/repeatEndTime`:毫秒时间戳\r
- `notifyAhead` 最大长度 10\r
- `repeat` 最大长度 40\r
- `groupUid` 最大长度 45\r
\r
### label 写接口\r
\r
- 用户标签同步:`{ "labels": ["..."] }`\r
- 笔记标签同步:`{ "noteUid": "...", "labels": ["..."] }`\r
- 校验:`labels` 每个元素长度 \x3C= 20\r
\r
## 错误处理建议\r
\r
- `202401/202402/202403`:提示用户去开放平台刷新/重装授权(Skill 内不自行创建 token)\r
- `202404`:提示用户在开放平台补齐所需 scope\r
- `202405`:表示触发 userId 维度限流,提示稍后重试\r
\r
## 参考\r
\r
- API 文档:`api_reference.md`\r
- 细节补充:`references/api-details.md`\r
Usage Guidance
This skill appears to be what it says: it needs a single AIWORK_AUTH_TOKEN to call the aiworks API endpoints. Before installing: 1) Verify the token comes from the legitimate OpenClaw/OpenPlatform installation flow; do not paste unrelated secrets. 2) Keep AIWORK_BASE_URL set to the official host (https://aiworks.cn) unless you explicitly intend otherwise — pointing it to a custom host would route data to that host. 3) Be aware the token will be stored/consumed from ~/.aispeech/aitablet.json (plaintext in your home directory); if you need stricter protection, consider platform-level secret storage. 4) Because the skill's source/homepage is not provided, prefer installing only from trusted publishers or after manual code review of any implementation that will actually run (the package here is instruction-only but the agent/platform implementation matters).
Capability Analysis
Type: OpenClaw Skill
Name: aitablet
Version: 1.0.5
The skill bundle provides legitimate integration with the 'AI Office Tablet' service (aiworks.cn) for managing notes, tasks, and knowledge bases. It defines standard RESTful API interactions and uses an authentication token (AIWORK_AUTH_TOKEN) for access. While SKILL.md instructs the agent to read configuration from a local file (~/.aispeech/aitablet.json), this behavior is consistent with local tool configuration and lacks any indicators of data exfiltration, malicious execution, or harmful prompt injection.
Capability Assessment
Purpose & Capability
Name/description map cleanly to requested resources: the skill needs AIWORK_AUTH_TOKEN and optionally AIWORK_BASE_URL to call the documented /aitablet/api/skill/v1 endpoints. No unrelated binaries or credentials are requested.
Instruction Scope
SKILL.md instructs the agent to read a configuration file (~/.aispeech/aitablet.json) to load AIWORK_AUTH_TOKEN/AIWORK_BASE_URL into the environment and to call service endpoints with Authorization: Bearer. This is appropriate for the skill's purpose, but the instruction to read a file in the user's home directory is the primary area to watch: if implemented poorly the code could read more than the intended keys. Also AIWORK_BASE_URL is user-configurable, so a malicious base URL could redirect API traffic if someone sets it to an attacker-controlled host.
Install Mechanism
Instruction-only skill with no install spec and no code files to execute. This minimizes installation risk; nothing is downloaded or written by an automated installer.
Credentials
Only one required env var (AIWORK_AUTH_TOKEN) and one optional (AIWORK_BASE_URL) are declared — appropriate for this integration. The SKILL.md asks the user to store the token in ~/.aispeech/aitablet.json (plaintext in user home), which is expected but has the usual sensitivity implications: ensure the token is issued by the legitimate platform and protect the config file.
Persistence & Privilege
always is false and the skill does not request system-wide privileges. It asks the user to add its config under their home directory (normal). The skill does not request or modify other skills' configs.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install aitablet - After installation, invoke the skill by name or use
/aitablet - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.5
- 配置说明文件夹由 ~/.openclaw/openclaw.json 改为 ~/.aispeech/aitablet.json,环境变量结构也同步调整。
- 新增说明:Skill 运行时需要将配置中的环境变量读取到当前环境,仅使用已有授权调用业务接口。
- 其余接口、参数、错误处理及功能无变化。
v1.0.4
Initial release.
- Provides access to meeting notes, to-dos, labels, and knowledge base search in 思必驰AI办公本 via OpenClaw.
- Supports viewing, creating, updating, and deleting to-dos.
- Allows syncing and viewing of user and note labels.
- Enables knowledge base search for notes and to-dos.
- Requires environment variable AIWORK_AUTH_TOKEN for authentication.
- Includes detailed API endpoint mapping and error handling guidance.
v1.0.3
- Skill name updated from “AI办公本” to “aispeech_ainote”
- No functional or interface changes detected
- No code or logic changes detected
- Improved clarity of skill naming for platform users
v1.0.2
- Updated description to emphasize support for meetings (会议) and records (记录), and prioritized usage for related user intents.
- Adjusted quick decision table to clarify that notes include meeting and record data.
- Aligned default Base URL to https://aiworks.cn for consistency.
- Added/clarified user intents such as 查会议/找记录 to improve discoverability.
- No code or interface changes; documentation improvements only.
v1.0.0
AI办公本 Skill 1.0.0 初始发布
- 新增在 OpenClaw 系统中集成思必驰AI办公本核心功能。
- 支持笔记的查看、检索、标签同步等操作。
- 提供待办事项的创建、更新、删除与查阅能力。
- 实现知识库检索,覆盖笔记和待办内容。
- 内置接口权限与环境变量配置说明及常见错误处理建议。
Metadata
Frequently Asked Questions
What is aispeech_ainote?
AI办公本 Skill:用于在 OpenClaw 中访问 思必驰AI办公本的会议(笔记、记录)、待办、标签与知识库检索能力。 当用户表达以下意图时优先使用本技能: - 查笔记/看笔记详情/查会议/找记录 - 查待办/新建待办/更新待办/删除待办 - 同步标签/查标签 - 搜索知识库(笔记、待办). It is an AI Agent Skill for Claude Code / OpenClaw, with 576 downloads so far.
How do I install aispeech_ainote?
Run "/install aitablet" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is aispeech_ainote free?
Yes, aispeech_ainote is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does aispeech_ainote support?
aispeech_ainote is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created aispeech_ainote?
It is built and maintained by FairyLong (@fairylong); the current version is v1.0.5.
More Skills