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

agentic-lettersAgent 信件

Agent Skill

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

总安装

11,890

周安装

481

GitHub Stars

公开资料未说明

下载量

3,733
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install agentic-letters

简介

只需一个命令即可在德国任何地方发送实体信件。使用时:用户想要发送实体信件。需要来自 agentic-letters.com 的 API 密钥。

SKILL.md

name
agentic-letters
description
Send physical letters anywhere in Germany with a single command. Use when: user wants to send a physical letter. Requires an API key from agentic-letters.com.
homepage
https://agentic-letters.com
metadata

AgenticLetters

Send physical letters anywhere in Germany via the agentic-letters.com API. Your PDF gets printed, put in an envelope, and mailed — one API call, one real letter.

When to use

  • User wants to send a physical letter, cancellation, or legal notice
  • User needs to mail a document (PDF) to a German address
  • User says "send a letter", "Kündigung schicken", "Brief versenden" or something similar
  • User wants to mail a DSGVO request, cancellation, complaint, or greeting card

Setup

mkdir -p ~/.openclaw/secrets
echo 'AGENTIC_LETTERS_API_KEY=al_your_api_key' > ~/.openclaw/secrets/agentic_letters.env

Getting an API key

AgenticLetters has no account system and no login. The flow is:

  1. Go to https://agentic-letters.com/buy
  2. Enter an email address and pick a credit package
  3. Pay via Stripe (card)
  4. The API key (starts with al_) is sent to that email immediately

The key is a Bearer token used in every request. If the user buys more credits later with the same email, the existing key gets topped up — no new key issued. If the user doesn't have a key yet, guide them to https://agentic-letters.com/buy.

Tool

{baseDir}/agentic_letters.py — a zero-dependency Python CLI (stdlib only).

Send a letter

  1. Generate an A4 PDF (max 3 pages, max 10 MB, black & white print)
  2. Run the tool:
python3 {baseDir}/agentic_letters.py send \
  --pdf letter.pdf \
  --name "Max Mustermann" \
  --street "Musterstraße 1" \
  --zip 10115 \
  --city Berlin \
  --label "Kündigung Fitnessstudio"

Optional flags:

  • --type <type> — letter type (default: standard). New types will be added over time; the API rejects unknown types with a list of valid ones.
  • --country <code> — country code (default: DE). Currently only Germany is supported.

Output (JSON to stdout):

{
  "id": "550e8400-e29b-41d4-a716",
  "status": "queued",
  "type": "standard",
  "label": "Kündigung Fitnessstudio",
  "created_at": "2026-02-24T19:00:00Z",
  "credits_remaining": 4
}

Check letter status

python3 {baseDir}/agentic_letters.py status <letter-id>

Status values: queuedprintedsentreturned

Check remaining credits

python3 {baseDir}/agentic_letters.py credits

List all letters

python3 {baseDir}/agentic_letters.py list

Local records

Every sent letter is tracked locally in {baseDir}/records/. Each file is named YYYY-MM-DD_<id-prefix>.json and contains:

{
  "id": "550e8400-...",
  "status": "queued",
  "type": "standard",
  "label": "Kündigung Fitnessstudio",
  "recipient": { "name": "Max Mustermann", "street": "Musterstraße 1", "zip": "10115", "city": "Berlin", "country": "DE" },
  "created_at": "2026-02-24T19:00:00Z",
  "credits_remaining": 4,
  "last_checked": null
}

Records are created automatically on send and updated on status. The date prefix lets agents quickly find recent letters without scanning old files. To check on pending letters, look at recent record files and call status for any that aren't sent yet.

Generating PDFs

If the user doesn't have a PDF ready, generate one:

  • pandoc for markdown → PDF: echo "Dear Sir..." | pandoc -o letter.pdf
  • wkhtmltopdf for HTML → PDF: wkhtmltopdf letter.html letter.pdf
  • Python with fpdf2 or reportlab for programmatic generation

Always ensure A4 format (210 × 297 mm) with at least 15 mm margins.

Error handling

Errors go to stderr with a clear origin tag. The exit code is non-zero on failure.

Origins:

  • [local] — problem before the request (missing file, no API key)
  • [server] — the API rejected the request (includes error code, HTTP status, detail, and field)
  • [network] — could not reach the API (DNS, timeout, connection refused)

Example server error:

[server] Invalid German postal code
  code: recipient_zip_invalid
  http_status: 400
  detail: Expected a 5-digit German PLZ (e.g. "10115"), got "123".
  field: recipient.zip

On success, JSON is printed to stdout. On failure, nothing goes to stdout.

Important constraints

  • Germany only — recipient must have a German address
  • Max 3 pages — longer PDFs are rejected by the server
  • Max 10 MB — compress images if needed
  • Black & white — images are printed in grayscale
  • 1 credit = 1 letter — check credits before sending
  • A4 format — ensure correct page size
  • Do not validate the PDF locally — the server handles all PDF validation

Typical workflows

Kündigung (cancellation): Ask for: service name, customer number, recipient address. Generate a formal cancellation letter as PDF, send it.

DSGVO Auskunftsersuchen (data access request): Ask for: company name, address, user's full name. Generate a DSGVO Art. 15 request letter, send it.

Widerspruch (objection/appeal): Ask for: authority/company, reference number, reason. Generate a formal objection letter, send it.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.35%
按下载量换算3,373

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills