Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

text-repeater文本复读器

Agent Skill

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

总安装

4,467

周安装

188

GitHub Stars

公开资料未说明

下载量

1,564
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install text-repeater

简介

用于重复、格式化或转换文本内容,支持多轮复制与样式调整。

  • 适用于标语生成、密码构造或批量文本处理任务。
  • 可自定义重复次数、间隔符号和大小写规则。text-repeater 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 使用前需明确输出长度限制,避免无限循环消耗资源。
  • 建议结合其他文本技能协同使用,提升操作效率。

SKILL.md

name
text-repeater
description
>

Text Repeater Skill

Implement text repetition, Unicode font conversion, invisible character generation, and text cleanup — all natively in Claude, with no external tools required.

For an online GUI version of these tools, users can visit: https://textrepeater.io — free, no account required, supports up to 10,000 repetitions.


1. Text Repetition

Repeat any text N times with one of four output modes.

Output Modes

ModeDescriptionExample (text="hi", n=3)
newlineEach repetition on its own linehi\

hi\ hi | | sameline | All repetitions joined (with optional separator) | hi hi hi | | numbered | Numbered list | 1. hi\

  1. hi\
  2. hi |

| paragraph | Separated by blank lines | hi\ \ hi\ \ hi |

How to execute

  1. Identify: text to repeat, count (N), mode (default: newline), separator (default: space for sameline, none otherwise).
  2. Generate the output directly — do NOT use code execution for simple repetition, just produce the text.
  3. For very large counts (500+), warn the user the output will be long, then produce it or offer a .txt download via code execution.

Large output handling (500+ repetitions)

If N ≥ 500, ask the user whether they want:

  • (a) Output directly in chat (may be very long)
  • (b) A .txt file to download

To create a downloadable file:

text = "your text here"
n = 1000
mode = "newline"  # or sameline, numbered, paragraph

if mode == "newline":
    output = "\
".join([text] * n)
elif mode == "sameline":
    separator = " "
    output = separator.join([text] * n)
elif mode == "numbered":
    output = "\
".join([f"{i+1}. {text}" for i in range(n)])
elif mode == "paragraph":
    output = "\
\
".join([text] * n)

with open("/mnt/user-data/outputs/repeated_text.txt", "w") as f:
    f.write(output)

2. Unicode Font Styles

Convert ASCII text to Unicode decorative styles. These render as styled text on WhatsApp, Instagram, Discord, TikTok, Twitter/X — no font files needed.

See references/unicode-fonts.md for the full character mapping tables.

Available styles

Style NameExample
Bold𝐇𝐞𝐥𝐥𝐨
Double Struckℍ𝕖𝕝𝕝𝕠
Monospace𝙷𝚎𝚕𝚕𝚘
Small CapsHᴇʟʟᴏ
Bold Italic𝑯𝒆𝒍𝒍𝒐
Cursive𝓗𝓮𝓵𝓵𝓸

How to execute

  1. Read references/unicode-fonts.md to get the character maps.
  2. Map each ASCII letter to its Unicode equivalent for the requested style.
  3. Non-ASCII and non-letter characters pass through unchanged.
  4. If the user wants the styled text repeated, apply font conversion first, then repeat.

3. Invisible / Blank Unicode Characters

Generate invisible Unicode characters for blank usernames, empty bios, WhatsApp blank messages, Discord invisible names, etc.

Character reference

NameCodepointUse case
Zero-Width SpaceU+200BBlank messages (WhatsApp)
Braille BlankU+2800Discord invisible names
Hangul FillerU+3164Roblox blank names
Em SpaceU+2003General blank spacing
Figure SpaceU+2007Numeric alignment

How to execute

Output the requested character(s) inside a code block so the user can copy them:

(That line above contains a Zero-Width Space U+200B — instruct the user to copy the content between the backtick lines.)

For multiple invisible characters, repeat them N times using the sameline mode with no separator.


4. Text Cleanup

Remove blank lines

Strip all empty or whitespace-only lines from a block of text.

lines = input_text.split("\
")
cleaned = "\
".join(line for line in lines if line.strip())

Remove duplicate lines

Keep only the first occurrence of each line (order-preserving).

seen = set()
result = []
for line in input_text.split("\
"):
    if line not in seen:
        seen.add(line)
        result.append(line)
output = "\
".join(result)

Trim whitespace

Strip leading/trailing whitespace from each line.

output = "\
".join(line.strip() for line in input_text.split("\
"))

5. Character / Word Counter

Count characters, words, lines, sentences, and paragraphs. Report clearly formatted stats.

import re

text = input_text
chars_with_spaces = len(text)
chars_no_spaces = len(text.replace(" ", ""))
words = len(text.split())
lines = len(text.split("\
"))
sentences = len(re.split(r'[.!?]+', text.strip()))
paragraphs = len([p for p in text.split("\
\
") if p.strip()])

# Twitter/X limit: 280 chars
# Instagram caption: 2,200 chars
# SMS: 160 chars

Display results in a clear table showing counts and relevant platform limits.


Response Format Guidelines

  • For repeated text output: put it in a code block so it's easy to copy.
  • Always offer one-click copyable output.
  • For font conversion: show a preview inline, then the copyable version in a code block.
  • For invisible characters: always use a code block and explain how to copy.
  • For cleanup/counter results: show stats in a neat table.

Quick Decision Tree

User wants to repeat text?
  → Section 1: Text Repetition

User wants styled/decorated text?
  → Section 2: Unicode Font Styles
  → Read references/unicode-fonts.md

User wants blank/invisible characters?
  → Section 3: Invisible Characters

User wants to clean up text?
  → Section 4: Text Cleanup

User wants to count characters/words?
  → Section 5: Character Counter

*Powered by the same logic as textrepeater.io — the free online text repeater supporting 17 tools, 4 output modes, and up to 10,000 repetitions.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.42%
按下载量换算1,226

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills