← 返回 Skills 市场
fairylong

aispeech_ainote

作者 FairyLong · GitHub ↗ · v1.0.5 · MIT-0
cross-platform ✓ 安全检测通过
576
总下载
0
收藏
0
当前安装
5
版本数
在 OpenClaw 中安装
/install aitablet
功能描述
AI办公本 Skill:用于在 OpenClaw 中访问 思必驰AI办公本的会议(笔记、记录)、待办、标签与知识库检索能力。 当用户表达以下意图时优先使用本技能: - 查笔记/看笔记详情/查会议/找记录 - 查待办/新建待办/更新待办/删除待办 - 同步标签/查标签 - 搜索知识库(笔记、待办)
使用说明 (SKILL.md)

\r \r

AI办公本 Skill\r

\r

重要说明(授权方式)\r

\r

  1. authToken(对应 env 为 AIWORK_AUTH_TOKEN)是访问业务接口的必需授权凭证。\r
  2. 首次安装时,在配置文件 ~/.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
安全使用建议
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).
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install aitablet
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /aitablet 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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办公本核心功能。 - 支持笔记的查看、检索、标签同步等操作。 - 提供待办事项的创建、更新、删除与查阅能力。 - 实现知识库检索,覆盖笔记和待办内容。 - 内置接口权限与环境变量配置说明及常见错误处理建议。
元数据
Slug aitablet
版本 1.0.5
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 5
常见问题

aispeech_ainote 是什么?

AI办公本 Skill:用于在 OpenClaw 中访问 思必驰AI办公本的会议(笔记、记录)、待办、标签与知识库检索能力。 当用户表达以下意图时优先使用本技能: - 查笔记/看笔记详情/查会议/找记录 - 查待办/新建待办/更新待办/删除待办 - 同步标签/查标签 - 搜索知识库(笔记、待办). 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 576 次。

如何安装 aispeech_ainote?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install aitablet」即可一键安装,无需额外配置。

aispeech_ainote 是免费的吗?

是的,aispeech_ainote 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

aispeech_ainote 支持哪些平台?

aispeech_ainote 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 aispeech_ainote?

由 FairyLong(@fairylong)开发并维护,当前版本 v1.0.5。

💬 留言讨论