← 返回 Skills 市场
349840432m-dev

飞书协同任务读取

作者 349840432m-dev · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
282
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install feishu-user-md
功能描述
飞书端读取USER.md任务清单。当用户说"查看任务"、"我的任务"时触发,实时解析并返回格式化的分类任务列表,让用户快速了解当前所有可用任务和技能。
使用说明 (SKILL.md)

Feishu User.md Reader - 飞书任务清单查询

实时读取 ~/.openclaw/workspace/USER.md,解析任务清单并格式化为分类列表返回。

核心功能

实时任务解析

~/.openclaw/workspace/USER.md 读取三类数据源:

  1. 常规任务清单表格 → 提取任务名、频率、技能名、描述
  2. 日常自动化表格 → 提取定时任务时间和名称
  3. 手动触发指令表格 → 提取触发词映射

智能分类

任务按用途自动归类:

  • 📝 内容创作 — 图片提示词、API图片、知识漫画、信息图
  • 📕 小红书运营 — 完整运营、发布、卡片生成
  • 📤 内容发布 — 微信公众号、Markdown转HTML
  • 🔧 工具 — 翻译、图片压缩、网页抓取、数据导出
  • 📰 新闻与SEO — 添加/撰写新闻、SEO文章
  • 📂 日常管理 — 对话归档、Token统计、周报、日历
  • 📁 其他 — 未匹配的任务

输出格式

注意:返回内容动态读取 USER.md 实际内容,不硬编码。

📋 您的任务清单(共N项)

【定时自动化】
• 0:00 对话记录自动归档
• 9:00 Token日报生成

【内容创作】
• 图片提示词生成 - 说"生成图片提示词"
• API图片生成 - 说"生成图片"

💡 直接发送任务关键词即可触发

触发指令

指令 说明
查看任务 基础触发指令
我的任务 简写形式
有什么技能 查看可用技能
帮助 / ? 帮助信息

使用方法

node scripts/feishu-user-md.js read   # 格式化输出
node scripts/feishu-user-md.js json   # JSON 输出

技术实现

  • Node.js 脚本,仅使用内置模块(fspathos),无第三方依赖
  • 正则表达式解析 Markdown 表格
  • 按关键词自动归类任务
  • 每次调用实时读取 USER.md,无缓存

解析流程

  1. readUserMd() — 读取文件内容
  2. parseUserMd(content) — 提取常规任务、定时任务、触发指令
  3. categorize(tasks) — 按用途关键词分类
  4. formatForFeishu(data) — 格式化为飞书消息文本

文件位置

  • 技能目录: skills/feishu-user-md/
  • 脚本文件: skills/feishu-user-md/scripts/feishu-user-md.js
  • 数据源: ~/.openclaw/workspace/USER.md

注意事项

  1. 无缓存 — 每次调用都实时读取 USER.md,更新后立即生效
  2. 动态触发 — 所有触发指令从 USER.md 的"手动触发指令"表格动态读取
  3. 自动同步 — 新增/删除任务只需修改 USER.md,飞书端自动同步
  4. 内容动态 — 返回内容根据 USER.md 实际内容生成,不硬编码

Security & Privacy

  • 仅读取本地 ~/.openclaw/workspace/USER.md 文件
  • 不进行任何网络请求,不发送数据到外部
  • 不写入任何文件,不存储用户数据
  • 无持久化操作,无后台进程
安全使用建议
This skill is coherent and small, but before installing: (1) review the USER.md file and avoid storing secrets there — the skill will read and return that content and the platform will forward it to Feishu; (2) confirm you trust the platform's Feishu integration (the script itself does not contact Feishu); (3) optionally inspect the included scripts/feishu-user-md.js (it's short and uses only fs/path/os) to verify it matches your expectations.
功能分析
Type: OpenClaw Skill Name: feishu-user-md Version: 1.0.0 The skill is designed to read and format a task list from a local Markdown file (~/.openclaw/workspace/USER.md) for display in Feishu. The Node.js script (scripts/feishu-user-md.js) uses only built-in modules, contains no network or execution-related risks, and strictly follows its stated purpose without any signs of malicious intent or data exfiltration.
能力评估
Purpose & Capability
Name/description claim: read ~/.openclaw/workspace/USER.md and produce a categorized task list for Feishu. The package requests only filesystem permission in claw.json and the code only reads that fixed path using built-in Node modules — this is proportionate to the stated purpose.
Instruction Scope
SKILL.md and script both state the script will 'read USER.md and format output'. The script is a local CLI that prints formatted text or JSON; it does not itself contact Feishu. Platform integration (routing the output to Feishu when a trigger is used) is external to the skill and is expected, but users should note that any content read from USER.md will be returned and (when invoked via Feishu) sent to the remote chat, so sensitive contents could be exposed.
Install Mechanism
No install spec and no external downloads. The skill is instruction + a small JS script that uses only built-in Node modules; nothing is written to disk at install time beyond placing the skill files, which is consistent with an instruction-only/embedded script approach.
Credentials
The skill declares no environment variables, no credentials, and no config paths beyond the explicit USER.md path. There are no requests for unrelated secrets or services.
Persistence & Privilege
always is false, the skill does not spawn background processes or persist state, and it does not modify other skills or system-wide agent configs. Its filesystem access is read-only and limited to a single, documented file path.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install feishu-user-md
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /feishu-user-md 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
feishu-user-md v1.1.0 - 支持实时读取并分类解析 ~/.openclaw/workspace/USER.md 任务清单,输出飞书端格式化任务列表 - 按内容创作、小红书运营、内容发布、工具、新闻与SEO、日常管理等多类自动归类任务 - 动态识别定时自动化、手动触发指令,返回实时数据,无需硬编码 - 提供多种触发指令(如“查看任务”、“我的任务”),方便用户随时获取当前可用任务和技能 - 无缓存,每次均实时读取 USER.md,保证任务信息最新
元数据
Slug feishu-user-md
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

飞书协同任务读取 是什么?

飞书端读取USER.md任务清单。当用户说"查看任务"、"我的任务"时触发,实时解析并返回格式化的分类任务列表,让用户快速了解当前所有可用任务和技能。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 282 次。

如何安装 飞书协同任务读取?

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

飞书协同任务读取 是免费的吗?

是的,飞书协同任务读取 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

飞书协同任务读取 支持哪些平台?

飞书协同任务读取 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 飞书协同任务读取?

由 349840432m-dev(@349840432m-dev)开发并维护,当前版本 v1.0.0。

💬 留言讨论