思必驰办公本助手
AI办公本 Skill:用于在 OpenClaw 中访问 思必驰AI办公本的会议(笔记、记录)、待办、标签与知识库检索能力。 当用户表达以下意图时优先使用本技能: - 查笔记/看笔记详情/查会议/找记录 - 查待办/新建待办/更新待办/删除待办 - 同步标签/查标签 - 搜索知识库(笔记、待办)
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 0 · 108 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description map directly to the declared API endpoints and the single required env var (AIWORK_AUTH_TOKEN). No unrelated environment variables, binaries, or surprising capabilities are requested.
Instruction Scope
SKILL.md only describes calling the service's REST endpoints with Authorization: Bearer ${AIWORK_AUTH_TOKEN}. It instructs adding the token to ~/.openclaw/openclaw.json for installation — this is expected but means the token will be stored in agent config (likely plaintext) and thus accessible to anything with access to that file. SKILL.md does not instruct reading other system files or exfiltrating data.
Install Mechanism
No install spec and no code files to execute — instruction-only skill. No downloads, packages, or extracted artifacts are requested.
Credentials
Only AIWORK_AUTH_TOKEN is required (plus optionally AIWORK_BASE_URL). That matches a service token required to call the described APIs. Note that this single token grants access to the user's notes/todos/labels/knowledge per the service scopes — ensure the token's scopes are limited to what you want to expose.
Persistence & Privilege
always:false (no forced global inclusion). The skill asks the user to place the token into the agent config (~/.openclaw/openclaw.json), which gives persistent local presence of the credential; this is normal for skills but increases the lifetime/availability of the token and therefore its blast radius if the local config is compromised.
Assessment
This skill appears coherent with its purpose. Before installing: (1) Verify the skill source/publisher and that the AIWORK_AUTH_TOKEN will be issued by the official 思必驰/aiworks platform; (2) Only grant the minimal scopes needed (NOTE_READ, TODO_READ/WRITE, LABEL_*, KNOWLEDGE_READ) — prefer least privilege; (3) Be aware the token will be stored in ~/.openclaw/openclaw.json (likely plaintext) and any process/user with access to that file can read it; consider using platform-managed secret storage if available; (4) If you have sensitive data in notes/todos, consider creating a limited account/token and rotate/revoke the token when no longer needed; (5) Because the skill can be invoked by the agent, consider whether autonomous invocation is acceptable in your environment and remove the token if you later distrust the skill.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.2
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
Runtime requirements
EnvAIWORK_AUTH_TOKEN
SKILL.md
AI办公本 Skill
重要说明(授权方式)
authToken(对应 env 为AIWORK_AUTH_TOKEN)是访问业务接口的必需授权凭证。- 首次安装时,在
~/.openclaw/openclaw.json中添加:
{
"skills": {
"entries": {
"aitablet-skill-beta": {
"env": {
"AIWORK_AUTH_TOKEN": "你的授权凭证",
"AIWORK_BASE_URL": "API前缀域名"
}
}
}
}
}
- Skill 运行时仅使用已有
authToken调用业务接口:Authorization: Bearer ${AIWORK_AUTH_TOKEN}
快速决策
Base URL: ${AIWORK_BASE_URL:-https://aiworks.cn}
Prefix: /aitablet/api/skill/v1
| 用户意图 | 接口 | 必需 Scope |
|---|---|---|
| 查笔记(会议、记录)列表 | GET /note/list | NOTE_READ |
| 查笔记(会议、记录)详情 | GET /note/{noteUid} | NOTE_READ |
| 查待办列表 | GET /todo/list | TODO_READ |
| 新建待办 | POST /todo | TODO_WRITE |
| 更新待办 | PUT /todo/{todoUid} | TODO_WRITE |
| 删除待办 | DELETE /todo/{todoUid} | TODO_WRITE |
| 查用户标签 | GET /label/user | LABEL_READ |
| 同步用户标签 | POST /label/user/sync | LABEL_WRITE |
| 查笔记标签 | GET /label/note | LABEL_READ |
| 同步笔记标签 | POST /label/note/sync | LABEL_WRITE |
| 搜索笔记知识库 | POST /knowledge/note/search | KNOWLEDGE_READ |
| 搜索待办知识库 | POST /knowledge/todo/search | KNOWLEDGE_READ |
参数与返回约定
- 统一响应:
{ code, message, data } - 成功
code为字符串"0"
易错点
todo 写接口
beginTime/endTime/repeatEndTime:毫秒时间戳notifyAhead最大长度 10repeat最大长度 40groupUid最大长度 45
label 写接口
- 用户标签同步:
{ "labels": ["..."] } - 笔记标签同步:
{ "noteUid": "...", "labels": ["..."] } - 校验:
labels每个元素长度 <= 20
错误处理建议
202401/202402/202403:提示用户去开放平台刷新/重装授权(Skill 内不自行创建 token)202404:提示用户在开放平台补齐所需 scope202405:表示触发 userId 维度限流,提示稍后重试
参考
- API 文档:
api_reference.md - 细节补充:
references/api-details.md
Files
5 totalSelect a file
Select a file to preview.
Comments
Loading comments…
