思必驰办公本助手

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
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & 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 zip
latestvk976ys5bcjmbar51b1gn4yns4x83w6sr

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

EnvAIWORK_AUTH_TOKEN

SKILL.md

AI办公本 Skill

重要说明(授权方式)

  1. authToken(对应 env 为 AIWORK_AUTH_TOKEN)是访问业务接口的必需授权凭证。
  2. 首次安装时,在 ~/.openclaw/openclaw.json 中添加:
{
  "skills": {
    "entries": {
      "aitablet-skill-beta": {
        "env": {
          "AIWORK_AUTH_TOKEN": "你的授权凭证",
          "AIWORK_BASE_URL": "API前缀域名"
        }
      }
    }
  }
}
  1. Skill 运行时仅使用已有 authToken 调用业务接口:
    • Authorization: Bearer ${AIWORK_AUTH_TOKEN}

快速决策

Base URL: ${AIWORK_BASE_URL:-https://aiworks.cn}
Prefix: /aitablet/api/skill/v1

用户意图接口必需 Scope
查笔记(会议、记录)列表GET /note/listNOTE_READ
查笔记(会议、记录)详情GET /note/{noteUid}NOTE_READ
查待办列表GET /todo/listTODO_READ
新建待办POST /todoTODO_WRITE
更新待办PUT /todo/{todoUid}TODO_WRITE
删除待办DELETE /todo/{todoUid}TODO_WRITE
查用户标签GET /label/userLABEL_READ
同步用户标签POST /label/user/syncLABEL_WRITE
查笔记标签GET /label/noteLABEL_READ
同步笔记标签POST /label/note/syncLABEL_WRITE
搜索笔记知识库POST /knowledge/note/searchKNOWLEDGE_READ
搜索待办知识库POST /knowledge/todo/searchKNOWLEDGE_READ

参数与返回约定

  • 统一响应:{ code, message, data }
  • 成功 code 为字符串 "0"

易错点

todo 写接口

  • beginTime/endTime/repeatEndTime:毫秒时间戳
  • notifyAhead 最大长度 10
  • repeat 最大长度 40
  • groupUid 最大长度 45

label 写接口

  • 用户标签同步:{ "labels": ["..."] }
  • 笔记标签同步:{ "noteUid": "...", "labels": ["..."] }
  • 校验:labels 每个元素长度 <= 20

错误处理建议

  • 202401/202402/202403:提示用户去开放平台刷新/重装授权(Skill 内不自行创建 token)
  • 202404:提示用户在开放平台补齐所需 scope
  • 202405:表示触发 userId 维度限流,提示稍后重试

参考

  • API 文档:api_reference.md
  • 细节补充:references/api-details.md

Files

5 total
Select a file
Select a file to preview.

Comments

Loading comments…