← 返回
未分类 中文

auto-file-sender

Automatically send files from workspace to Feishu/Lark when files are generated or updated. Use when: (1) User creates new documents and wants them delivered...
当工作区中的文件生成或更新时,自动将文件发送至飞书/Lark。适用场景:(1) 用户创建新文档并希望自动送达...
timyljob2011-sudo timyljob2011-sudo 来源
未分类 clawhub v1.0.1 1 版本 99794.2 Key: 无需
★ 0
Stars
📥 485
下载
💾 0
安装
1
版本
#latest

概述

Auto File Sender

Overview

This skill enables automatic file delivery from the workspace to Feishu/Lark users. When files are generated (documents, PDFs, images, etc.), they can be automatically sent to specified recipients without manual intervention.

Key Capabilities:

  • Auto-detect new files in workspace
  • Send via Feishu message with file attachment
  • Support batch sending of multiple files
  • Configurable file type filters and recipient rules

Quick Start

Basic Usage

When a file is ready to send:

// Single file
{
  "action": "send",
  "filePath": "/root/.openclaw/workspace/document.docx",
  "filename": "document.docx",
  "message": "Here's your file!",
  "target": "user_open_id"
}

Auto-Send on File Creation

The skill provides a helper script to watch for new files and auto-send:

# Watch workspace and auto-send new files
python3 scripts/auto_send.py --watch /root/.openclaw/workspace --recipient USER_OPEN_ID

Workflow

Step 1: Identify Files to Send

Check for recently created/modified files:

# List files created in last 10 minutes
find /root/.openclaw/workspace -type f -mmin -10

Step 2: Send Files

Use the message tool with filePath parameter:

{
  "action": "send",
  "filePath": "<absolute-path-to-file>",
  "filename": "<display-filename>",
  "message": "<optional-message>",
  "target": "<recipient-open-id>"
}

Parameters:

  • filePath: Absolute path to the file (required)
  • filename: Display name for the file (optional, defaults to basename)
  • message: Accompanying text message (optional)
  • target: Recipient open_id (defaults to current user if omitted)

Step 3: Confirm Delivery

Check the response for successful delivery:

  • messageId: ID of the sent message
  • chatId: ID of the chat/channel

Supported File Types

TypeExtensionsMax Size
----------------------------
Documents.docx, .doc, .pdf30MB
Images.jpg, .png, .gif, .webp30MB
Spreadsheets.xlsx, .xls, .csv30MB
Archives.zip, .tar.gz30MB
OthersAny30MB

Batch Sending

To send multiple files at once:

// Send files sequentially
for (const file of files) {
  await message.send({
    action: "send",
    filePath: file.path,
    filename: file.name
  });
}

Configuration

Default Settings

  • Source directory: /root/.openclaw/workspace
  • Max file size: 30MB (Feishu limit)
  • Auto-recipient: Current conversation user

Custom Recipient

To send to a specific user:

{
  "action": "send",
  "target": "ou_a65105519c863f8544fb22b40c468063",  // User's open_id
  "filePath": "/path/to/file"
}

Scripts

scripts/auto_send.py

Python script for watching directories and auto-sending files.

Usage:

python3 scripts/auto_send.py [options]

Options:
  --watch PATH       Directory to watch (default: workspace)
  --recipient ID     Target recipient open_id
  --pattern PATTERN  File pattern to match (default: *)
  --once             Send existing files and exit (don't watch)

Examples:

# Watch and auto-send all new PDFs
python3 scripts/auto_send.py --pattern "*.pdf" --recipient USER_ID

# One-time send of all docx files
python3 scripts/auto_send.py --pattern "*.docx" --once

Troubleshooting

File Not Found

  • Ensure file path is absolute
  • Verify file exists: ls -la
  • Check file permissions

Send Failed

  • Verify file size < 30MB
  • Check recipient open_id is correct
  • Ensure bot has permission to send files

Large Files

For files > 30MB:

  1. Compress: zip -r output.zip large_file
  2. Split: split -b 25M large_file part_
  3. Use cloud storage and send link instead

Best Practices

  1. Always verify files exist before sending
  2. Use descriptive filenames for better organization
  3. Batch similar files to reduce API calls
  4. Clean up sent files periodically to save space
  5. Log sent files for tracking (optional)

Examples

Example 1: Send Generated Document

User: "Generate a report and send it to me"

// After generating the report
{
  "action": "send",
  "filePath": "/root/.openclaw/workspace/report_2024.docx",
  "filename": "Annual_Report_2024.docx",
  "message": "Here's your annual report!"
}

Example 2: Send Multiple Files

User: "Send all the PDFs in my workspace"

# Find and send all PDFs
find /root/.openclaw/workspace -name "*.pdf" -exec \
  python3 -c "import sys; print(sys.argv[1])" {} \;

Then send each file using the message tool.

Example 3: Auto-Send on Completion

After a long-running task generates output:

// Task completed, auto-send result
{
  "action": "send",
  "filePath": "/root/.openclaw/workspace/output.pdf",
  "message": "Task completed! Here's your file."
}

版本历史

共 1 个版本

  • v1.0.1 当前
    2026-05-02 13:40 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,099 📥 826,313
ai-agent

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,396 📥 322,578
office-efficiency

ppt-icon-generator

timyljob2011-sudo
为 PowerPoint 演示文稿生成或搜索透明 PNG 图标。使用场景:(1) 需要 PPT 幻灯片图标,(2) 想通过文字提示生成自定义图标,(3) ...
★ 0 📥 584