Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

upkuajing-email-toolupkujing 邮件工具

Agent Skill

upkuajing-email-tool 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,179

周安装

89

GitHub Stars

公开资料未说明

下载量

705
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:upkuajing-email-tool(upkujing 邮件工具)
来源仓库:https://github.com/upkuajing/upkuajing-email-tool
安装命令:
openclaw skills install upkuajing-email-tool
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install upkuajing-email-tool

简介

发送邮件并跟踪任务状态的自动化邮件工具。upkuajing-email-tool 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 支持邮件模板、任务列表管理及投递状态查询。
  • 适用于客户通知、内部提醒或营销邮件群发场景。
  • 安装前需提供 SMTP 凭证或对接第三方邮件服务商。
  • 注意垃圾邮件过滤规则,建议预热 IP 并优化内容格式。

SKILL.md

name
upkuajing-email-tool
description
Official skill for upkuajing (跨境魔方). Email tool API for sending emails and tracking email task status. Includes email sending, task list, and task record list APIs.
metadata
{"version":"1.0.0","homepage":"https://www.upkuajing.com","clawdbot":{"emoji":"✉️","requires":{"bins":["python"],"env":["UPKUAJING_API_KEY"]},"primaryEnv":"UPKUAJING_API_KEY"}}

UpKuaJing Email Tool

Send emails and track email task status using the UpKuaJing Open Platform API.

Overview

This skill provides access to UpKuaJing's email service through:

  • Email Send (mail_send.py): Send emails to recipients
  • Email Task List (mail_task_list.py): View email task list with time range filter
  • Email Task Record List (mail_task_record_list.py): View detailed records for a specific task

Running Scripts

Environment Setup

  1. Check Python: python --version
  2. Install dependencies: pip install -r requirements.txt

Script directory: scripts/*.py Run example: python scripts/*.py

Important: Always use direct script invocation like python scripts/mail_task_list.py. Do NOT use shell compound commands like cd scripts && python mail_task_list.py.

Three Main APIs

Email Send (mail_send.py)

Send emails to recipients.

Parameters: See Email Send API

Examples:

# Send a simple email
python scripts/mail_send.py \
  --subject "Test Email" \
  --content "This is the email content" \
  --emails '["recipient@example.com"]'

# Send email with reply address
python scripts/mail_send.py \
  --subject "Test Email" \
  --content "This is the email content" \
  --reply_email "support@example.com" \
  --emails '["recipient@example.com"]'

# Send to multiple recipients
python scripts/mail_send.py \
  --subject "Test Email" \
  --content "This is the email content" \
  --emails '["user1@example.com","user2@example.com"]'

Email Task List (mail_task_list.py)

View email task list with optional time range filter.

Parameters: See Email Task List API

Examples:

# Get task list (first page, 10 items)
python scripts/mail_task_list.py --page_no 1 --page_size 10

# Filter by time range
python scripts/mail_task_list.py \
  --start_time 1775812273 \
  --end_time 1775900000 \
  --page_no 1 \
  --page_size 10

# Filter by status (0-待发送 1-发送中 2-发送完成)
python scripts/mail_task_list.py --status 2 --page_no 1 --page_size 10

Email Task Record List (mail_task_record_list.py)

View detailed records for a specific email task.

Parameters: See Email Task Record List API

Examples:

# Get records for task ID 1496
python scripts/mail_task_record_list.py --task_id 1496 --page_no 1 --page_size 10

# Filter by time range and status
python scripts/mail_task_record_list.py \
  --task_id 1496 \
  --start_time 1775812273 \
  --end_time 1775900000 \
  --status 2 \
  --page_no 1 \
  --page_size 10

API Key and UpKuaJing Account

  • API Key: Stored in ~/.upkuajing/.env file as UPKUAJING_API_KEY
  • First check: If not set, prompt user to provide or apply at UpKuaJing Open Platform

API Key Not Set

First check if the ~/.upkuajing/.env file has UPKUAJING_API_KEY; If UPKUAJING_API_KEY is not set, prompt the user to choose:

  1. User has one: User provides it (manually add to ~/.upkuajing/.env file)
  2. User doesn't have one: Guide user to apply at UpKuaJing Open Platform

Wait for user selection;

Account Top-up

When API response indicates insufficient balance, explain and guide user to top up:

  1. Create top-up order (auth.py --new_rec_order)
  2. Based on order response, send payment page URL to user, guide user to open URL and pay, user confirms after successful payment;

Get Account Information

Use this script to get account information for UPKUAJING_API_KEY: auth.py --account_info

Fees

Email sending API calls incur fees, different interfaces have different billing methods. Latest pricing: Users can visit Detailed Price Description Or use: python scripts/auth.py --price_info (returns complete pricing for all interfaces)

Email Send Billing Rules

Email sending is charged — each send request incurs a fee based on the number of recipients.

Task List & Record List Billing Rules

Free of charge — No fees for task list and task record list queries.

Fee Confirmation Principle

Any operation that incurs fees must first inform and wait for explicit user confirmation. Do not execute in the same message as the notification.

Workflow

Decision Guide

User IntentUse API
"Send an email"Email Send
"View my email tasks"Email Task List
"Check email delivery status"Email Task Record List
"Find tasks in a time range"Email Task List (with start_time/end_time)

Email Send Flow

  1. Prepare email content: Subject, content, recipients
  2. Execute send: Use mail_send.py with appropriate parameters
  3. Get response: API returns task result synchronously

Task Check Flow

  1. View task list: Use mail_task_list.py with optional time filter
  2. Get task ID: From the task list response
  3. View task records: Use mail_task_record_list.py with task_id

Error Handling

  • API key invalid/non-existent: Check UPKUAJING_API_KEY in ~/.upkuajing/.env file
  • Insufficient balance: Guide user to top up
  • Invalid parameters: Must first check the corresponding API documentation in references/ directory, get correct parameter names and formats from documentation, do not guess

API Documentation Reference

Notes

  • File paths use forward slashes on all platforms
  • Do not guess parameter names, get accurate parameter names and formats from documentation
  • Prohibit outputting technical parameter format: Do not display code-style parameters in responses, convert to natural language
  • Do not estimate or guess fees — use python scripts/auth.py --price_info to get accurate pricing information
  • Email sending is synchronous submission: The API returns response immediately after submission, but the email server processes asynchronously; the status field in response indicates sending status (0-pending 1-sending 2-completed)

Related Skills

Other UpKuaJing skills you might find useful:

  • upkuajing-global-company-people-search — Global company and people search
  • upkuajing-customs-trade-company-search — Search customs trade companies
  • upkuajing-map-merchants-search — Map-based merchant search
  • upkuajing-contact-info-validity-check — Check contact info validity

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.15%
按下载量换算636

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills