飞书协同任务读取

v1.0.0

飞书端读取USER.md任务清单。当用户说"查看任务"、"我的任务"时触发,实时解析并返回格式化的分类任务列表,让用户快速了解当前所有可用任务和技能。

0· 280·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for 349840432m-dev/feishu-user-md.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "飞书协同任务读取" (349840432m-dev/feishu-user-md) from ClawHub.
Skill page: https://clawhub.ai/349840432m-dev/feishu-user-md
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install feishu-user-md

ClawHub CLI

Package manager switcher

npx clawhub@latest install feishu-user-md
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

📋 Clawdis
latestvk97bcsa78ztxdd3pmxshwzrdch82paax
280downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

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 文件
  • 不进行任何网络请求,不发送数据到外部
  • 不写入任何文件,不存储用户数据
  • 无持久化操作,无后台进程

Comments

Loading comments...