Token导航 LogoToken导航TokenDH.com
效率执行命令clawhub未标认证来源可访问clear审计提醒

trmnltrmnl 命令行

Agent Skill

trmnl 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

88,744

周安装

3,735

GitHub Stars

2

下载量

31,075
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install trmnl

简介

使用 TRMNL CSS 框架为 TRMNL 电子墨水显示设备生成内容并通过 trmnl CLI 发送。当用户想要在其 TRMNL 设备上显示信息、向电子墨水显示屏发送消息、创建仪表板内容、显示通知或更新其终端显示时使用。通过 TRMNL 框架支持丰富的布局(flexbox、网格、表格、进度条、排版实用程序)。

SKILL.md

name
trmnl
description
Generate content for TRMNL e-ink display devices using the TRMNL CSS framework and send via the trmnl CLI. Use when the user wants to display information on their TRMNL device, send messages to an e-ink display, create dashboard content, show notifications, or update their terminal display. Supports rich layouts with the TRMNL framework (flexbox, grid, tables, progress bars, typography utilities).

TRMNL Content Generator

Generate HTML content for TRMNL e-ink display devices.

Prerequisites

Install the trmnl CLI to the latest version:

npm install -g trmnl-cli@latest

Configure a webhook plugin (one-time setup):

# Add a plugin
trmnl plugin add home "https://trmnl.com/api/custom_plugins/{uuid}"

# Verify it's configured
trmnl plugin

Quick Start Workflow

  1. Install/update CLI: Run npm install -g trmnl-cli@latest
  2. Check plugins: Run trmnl plugin - if none, prompt user to add one
  3. Confirm device type (default: TRMNL OG, 2-bit, 800x480)
  4. Read relevant reference docs based on content needs
  5. Generate HTML using TRMNL framework classes
  6. Write HTML to a temp file and send:
   trmnl send --file /tmp/trmnl-content.html
   # Or to a specific plugin:
   trmnl send --file /tmp/trmnl-content.html --plugin office
  1. Minimal confirmation only - Do NOT echo content back to chat

Sending Content

From file (recommended):

# Write HTML content to file first
cat > /tmp/trmnl-content.html << 'EOF'
<div class="layout layout--col gap--space-between">
  <div class="item">
    <span class="value value--xlarge value--tnums">Hello TRMNL!</span>
  </div>
</div>
<div class="title_bar">
  <span class="title">My Plugin</span>
</div>
EOF

# Send to display
trmnl send --file /tmp/trmnl-content.html

Validate before sending:

trmnl validate --file /tmp/trmnl-content.html

View send history:

trmnl history
trmnl history --today
trmnl history --failed

Webhook Limits

TierPayload SizeRate Limit
Free2 KB (2,048 bytes)12 requests/hour
TRMNL+5 KB (5,120 bytes)30 requests/hour

Set tier globally for accurate validation:

trmnl tier plus  # or "free"

Reference Documentation

Read these files as needed:

FileWhen to Read
references/patterns.mdStart here - Common plugin patterns
references/framework-overview.mdDevice specs, e-ink constraints
references/css-utilities.mdColors, typography, sizing, spacing
references/layout-systems.mdFlexbox, grid, overflow engines
references/components.mdTitle bar, dividers, items, tables
references/webhook-api.mdPayload format, troubleshooting
assets/anti-patterns.mdCommon mistakes to avoid

Standard Plugin Structure

Every plugin follows this pattern:

<div class="layout layout--col gap--space-between">
  <!-- Content sections separated by dividers -->
</div>
<div class="title_bar">
  <img class="image" src="icon.svg">
  <span class="title">Plugin Name</span>
  <span class="instance">Context</span>
</div>
  • layout + layout--col = vertical flex container
  • gap--space-between = push sections to edges
  • title_bar = always at bottom, outside layout
  • divider = separate major sections
  • CRITICAL: Only ONE .layout element per view

Quick Reference

Grid System (10-Column)

<div class="grid">
  <div class="col--span-3">30%</div>
  <div class="col--span-7">70%</div>
</div>

Item Component

<div class="item">
  <div class="content">
    <span class="value value--xlarge value--tnums">$159,022</span>
    <span class="label">Total Sales</span>
  </div>
</div>

Value Typography

Always use value--tnums for numbers.

ClassUsage
value--xxxlargeHero KPIs
value--xxlargeLarge prices
value--xlargeSecondary metrics
value--tnumsRequired for numbers

Grayscale Classes

Use dithered classes, not inline colors:

  • bg--black, bg--gray-60, bg--gray-30, bg--gray-10, bg--white
  • text--black, text--gray-50

Data Attributes

AttributePurpose
data-fit-value="true"Auto-resize text to fit
data-clamp="N"Limit to N lines
data-overflow="true"Enable overflow management

Best Practices

  1. Use layout + title_bar structure
  2. Always value--tnums for numbers
  3. Use data-fit-value on primary metrics
  4. Use bg--gray-* dithered classes
  5. Keep payload under tier limit
  6. Minimal confirmations - just "Sent to TRMNL"

Troubleshooting

ProblemSolution
trmnl: command not foundRun npm install -g trmnl-cli@latest
No plugins configuredRun trmnl plugin add <name> <url>
Webhook failstrmnl config - verify plugin URL
Payload too largetrmnl validate --file - check size
Numbers misalignedAdd value--tnums class
Send historytrmnl history --failed

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.39%
按下载量换算28,399

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install trmnl 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills