← Back to Skills Marketplace
飞书协同任务读取
by
349840432m-dev
· GitHub ↗
· v1.0.0
· MIT-0
282
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install feishu-user-md
Description
飞书端读取USER.md任务清单。当用户说"查看任务"、"我的任务"时触发,实时解析并返回格式化的分类任务列表,让用户快速了解当前所有可用任务和技能。
README (SKILL.md)
Feishu User.md Reader - 飞书任务清单查询
实时读取 ~/.openclaw/workspace/USER.md,解析任务清单并格式化为分类列表返回。
核心功能
实时任务解析
从 ~/.openclaw/workspace/USER.md 读取三类数据源:
- 常规任务清单表格 → 提取任务名、频率、技能名、描述
- 日常自动化表格 → 提取定时任务时间和名称
- 手动触发指令表格 → 提取触发词映射
智能分类
任务按用途自动归类:
- 📝 内容创作 — 图片提示词、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 脚本,仅使用内置模块(
fs、path、os),无第三方依赖 - 正则表达式解析 Markdown 表格
- 按关键词自动归类任务
- 每次调用实时读取 USER.md,无缓存
解析流程
readUserMd()— 读取文件内容parseUserMd(content)— 提取常规任务、定时任务、触发指令categorize(tasks)— 按用途关键词分类formatForFeishu(data)— 格式化为飞书消息文本
文件位置
- 技能目录:
skills/feishu-user-md/ - 脚本文件:
skills/feishu-user-md/scripts/feishu-user-md.js - 数据源:
~/.openclaw/workspace/USER.md
注意事项
- 无缓存 — 每次调用都实时读取 USER.md,更新后立即生效
- 动态触发 — 所有触发指令从 USER.md 的"手动触发指令"表格动态读取
- 自动同步 — 新增/删除任务只需修改 USER.md,飞书端自动同步
- 内容动态 — 返回内容根据 USER.md 实际内容生成,不硬编码
Security & Privacy
- 仅读取本地
~/.openclaw/workspace/USER.md文件 - 不进行任何网络请求,不发送数据到外部
- 不写入任何文件,不存储用户数据
- 无持久化操作,无后台进程
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install feishu-user-md - After installation, invoke the skill by name or use
/feishu-user-md - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
feishu-user-md v1.1.0
- 支持实时读取并分类解析 ~/.openclaw/workspace/USER.md 任务清单,输出飞书端格式化任务列表
- 按内容创作、小红书运营、内容发布、工具、新闻与SEO、日常管理等多类自动归类任务
- 动态识别定时自动化、手动触发指令,返回实时数据,无需硬编码
- 提供多种触发指令(如“查看任务”、“我的任务”),方便用户随时获取当前可用任务和技能
- 无缓存,每次均实时读取 USER.md,保证任务信息最新
Metadata
Frequently Asked Questions
What is 飞书协同任务读取?
飞书端读取USER.md任务清单。当用户说"查看任务"、"我的任务"时触发,实时解析并返回格式化的分类任务列表,让用户快速了解当前所有可用任务和技能。 It is an AI Agent Skill for Claude Code / OpenClaw, with 282 downloads so far.
How do I install 飞书协同任务读取?
Run "/install feishu-user-md" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is 飞书协同任务读取 free?
Yes, 飞书协同任务读取 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does 飞书协同任务读取 support?
飞书协同任务读取 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created 飞书协同任务读取?
It is built and maintained by 349840432m-dev (@349840432m-dev); the current version is v1.0.0.
More Skills