Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

temporam-skill临时技能

Agent Skill

temporam-skill 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,474

周安装

387

GitHub Stars

公开资料未说明

下载量

3,034
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install temporam-skill

简介

基于 Temporam API 提供临时邮箱收发服务。

  • 可用于注册验证、垃圾邮件过滤等一次性用途。
  • 支持创建新地址与查看已有邮件列表功能。temporam-skill 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 需注册 Temporam 开发者账户获取访问令牌。
  • 临时邮箱有效期有限请及时导出重要信息。

SKILL.md

name
temporam-temp-mail
version
1.1.0
author
Temporam
description
Provides temporary email receiving functionality using the Temporam API. Use for: generating temporary email addresses, listing emails for a given address, retrieving the content of specific emails, and polling the latest email for an address.

Temporam Temporary Mail Skill

This skill enables Manus to interact with the Temporam API to manage temporary email addresses. It can generate new email addresses, check for incoming mail, and retrieve email content, which is useful for tasks requiring email verification or temporary communication.

Capabilities

  • Generate Temporary Email Address: Automatically creates a new, unique email address using an available domain from the Temporam service.
  • List Emails: Retrieves a list of emails received by a specified temporary email address.
  • Get Email Content: Fetches the full content of a specific email using its ID.
  • Get Latest Email: Retrieves the most recent email (with full content) for a specific email address — ideal for polling verification emails without needing to list and then fetch by ID.

Usage Instructions

Prerequisites

To use this skill, you must have a valid Temporam API Key. Set it as an environment variable named TEMPORAM_API_KEY in the sandbox environment before invoking any functions from this skill.

export TEMPORAM_API_KEY="YOUR_API_KEY"

Generating a Temporary Email Address

To generate a new temporary email address, use the generate_random_email function from the client.py script. Manus will automatically select an available domain.

Example Prompt:

"请帮我生成一个临时的邮箱地址。"

Internal Action (Manus will execute):

from skills.temporam-temp-mail.scripts.client import TemporamClient

client = TemporamClient()
email_address = client.generate_random_email()
print(f"Generated temporary email: {email_address}")

Listing Emails for an Address

To list emails received by a specific temporary email address, use the list_emails function. You can specify pagination parameters if needed.

Example Prompt:

"查看 test@example.com 这个邮箱收到了哪些邮件。"

Internal Action (Manus will execute):

from skills.temporam-temp-mail.scripts.client import TemporamClient

client = TemporamClient()
email_address = "test@example.com" # Replace with the actual email address
emails = client.list_emails(email_address, page=1, limit=10)
for email in emails:
    print(f"Subject: {email["subject"]}, From: {email["from_email"]}")

Getting Specific Email Content

To retrieve the full content of a particular email, provide the email ID to the get_email_detail function.

Example Prompt:

"获取 ID 为 12345 的邮件内容。"

Internal Action (Manus will execute):

from skills.temporam-temp-mail.scripts.client import TemporamClient

client = TemporamClient()
email_id = "12345" # Replace with the actual email ID
email_detail = client.get_email_detail(email_id)
if email_detail:
    print(f"Email Subject: {email_detail["subject"]}")
    print(f"Email Content: {email_detail["content"]}")

Getting the Latest Email for an Address

To retrieve the most recent email received by a specific address (including full content), use get_latest_email. This is especially useful for polling scenarios where you just need to wait for the next incoming email.

Example Prompt:

"查看 user@temporam.com 最新收到的邮件。"

Internal Action (Manus will execute):

from skills.temporam-temp-mail.scripts.client import TemporamClient

client = TemporamClient()
latest = client.get_latest_email("user@temporam.com")
if latest:
    print(f"Subject: {latest["subject"]}")
    print(f"From: {latest["from_email"]}")
    print(f"Content: {latest["content"]}")
else:
    print("No emails received yet.")

Workflow Example: Email Verification

When a task requires email verification, Manus can perform the following steps:

Method A: Using get_latest_email (Recommended)

  1. Generate a temporary email address.
  2. Provide this email address to the service requiring verification.
  3. Periodically call get_latest_email to poll for the verification email.
  4. Once received, extract the verification link or code from the content field.
  5. Complete the verification process.

Method B: Using list_emails + get_email_detail

  1. Generate a temporary email address.
  2. Provide this email address to the service requiring verification.
  3. Periodically call list_emails to check for new emails.
  4. Once a verification email is received, extract the verification link or code using get_email_detail.
  5. Complete the verification process.

References

[1]: https://www.temporam.com/docs/api-reference "Temporam API Reference"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.73%
按下载量换算2,358

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills