← 返回 Skills 市场
andyed

iBlipper Expressive Typography - Remember reading is automatic!

作者 andyed · GitHub ↗ · v1.0.1
cross-platform ⚠ suspicious
2029
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install iblipper
功能描述
Generate kinetic typography animations for expressive agent-to-human communication. Use when you want to communicate with visual flair - animated text for announcements, alerts, greetings, dramatic reveals, or any message that deserves more than plain text. Outputs shareable URLs or can display in canvas.
使用说明 (SKILL.md)

iBlipper - Motion Type Synthesizer

Generate animated kinetic typography to communicate with humans in a more expressive, attention-grabbing way.

Base URL: https://andyed.github.io/iblipper2025/

Two Output Options

Option 1: Hyperlink (fast, universal)

Generate a clickable link — recipient sees the animation in their browser.

[▶️ MESSAGE TEXT](https://andyed.github.io/iblipper2025/#text=MESSAGE+TEXT&emotion=emphatic&dark=true&share=yes)

Option 2: GIF Download (requires browser tool)

Generate an animated GIF file that can be attached to messages.

https://andyed.github.io/iblipper2025/?export=gif#text=MESSAGE+TEXT&emotion=emphatic&dark=true

URL Parameters

All parameters go in the hash fragment (#param=value&param2=value2).

Parameter Type Description Default
text string The message to display (URL encoded, spaces as +)
wpm number Words per minute (30-2500) 300
density number Words per frame (0.1-500) 1
fill boolean Auto-scale text to fill screen true
theme number Color theme index (0-3) 0
dark boolean Dark mode true
emotion string Animation style preset (see below) neutral
share string Auto-play on load (yes)

Emotion Presets (Production)

Emotion Vibe Best For
neutral Clean, professional Default, announcements
hurry Fast, urgent, italic Time-sensitive alerts
idyllic Slow, dreamy, airy Poetic, calm messages
question Curious, tilting Questions, pondering
response_required Urgent, pulsing Action needed!
excited Bouncy, energetic Celebrations, enthusiasm
playful Fun, bouncing Jokes, casual fun
emphatic Bold, solid, impactful Important statements
casual Handwritten, relaxed Friendly chat
electric Glitchy, RGB split Cyber aesthetic
wobbly Jelly physics Silly, playful

Note: matrix emotion is pre-release — avoid for now.

Hyperlink Examples

Important announcement:

[▶️ BREAKING NEWS](https://andyed.github.io/iblipper2025/#text=BREAKING+NEWS&emotion=emphatic&dark=true&share=yes)

Friendly greeting:

[▶️ Hey there!](https://andyed.github.io/iblipper2025/#text=Hey+there!&emotion=casual&dark=false&share=yes)

Celebration:

[▶️ Congratulations!](https://andyed.github.io/iblipper2025/#text=Congratulations!&emotion=excited&share=yes)

GIF Export Workflow (Browser Required)

  1. Open the export URL in browser:

    browser action=open targetUrl="https://andyed.github.io/iblipper2025/?export=gif#text=Hello&emotion=emphatic" profile=chrome
    
  2. Wait ~15-20 seconds for render + encode

  3. Find the downloaded GIF:

    ls -t ~/Downloads/iblipper_*.gif | head -1
    
  4. Read/attach the file to your message

Export query parameters:

Parameter Type Description Default
export string Format: gif, apng, png
width number Output width in pixels 480
fps number Frames per second (8, 15, 30) 15

When to Use

Good for:

  • Greetings and introductions
  • Important announcements
  • Celebrating milestones
  • Dramatic reveals
  • Adding personality to messages

Skip for:

  • Long-form content (keep to 1-10 words)
  • Urgent safety alerts (plain text is faster)

CLI Script

For quick URL generation, use the included shell script:

# Basic usage
./scripts/iblipper.sh "Hello World"
# https://andyed.github.io/iblipper2025/#text=Hello+World&emotion=emphatic&dark=true&share=yes

# With emotion
./scripts/iblipper.sh "Breaking News" hurry

# Light mode
./scripts/iblipper.sh "Good Morning" idyllic light

# As markdown link
./scripts/iblipper.sh -m "Click me!" excited
# [▶️ Click me!](https://...)

# GIF export URL
./scripts/iblipper.sh --gif "Export this" playful

Additional Resources

Tips

  • Keep text concise — 1-5 words have the most impact
  • Use hyperlinks by default — faster, works everywhere
  • Use GIF export for Signal/iMessage — inline images look great
  • Always use share=yes in hyperlinks — skips landing page
  • Match emotion to messageexcited for celebrations, emphatic for important stuff
  • Dark mode looks betterdark=true is usually the way to go
  • Use sparingly — if every message is animated, none are special
安全使用建议
What to consider before installing: - Function: The skill simply builds shareable animation URLs for a GitHub Pages site and provides a small shell helper. The helper only prints URLs or markdown and does not exfiltrate data. - Runtime requirements: The shell script calls python3 (for URL encoding) but the manifest lists no required binaries. If you plan to run the included script, ensure python3 is available on your agent host. - GIF export behavior: The GIF workflow requires opening a browser tool and reading your Downloads folder to find the generated file. That means the agent will access your browser and local filesystem when you use export features—only enable those capabilities if you trust the site and the agent's browser integration. - Remote content: The animations are hosted at andyed.github.io. The hash fragment (#...) is client-side and not sent to the server, but the query parameter used for export (?export=gif) is sent to the host and triggers rendering/download behavior. Verify you trust https://andyed.github.io/iblipper2025/ before allowing automated opens/downloads. - Recommendations: If you only need hyperlinks, use the script in its default mode (it only prints URLs). If you use GIF export, run the browser step manually or ensure the agent has explicit permission to open external pages and access downloads. Avoid sending sensitive content through animated links.
功能分析
Type: OpenClaw Skill Name: iblipper Version: 1.0.1 The skill bundle is classified as suspicious due to the presence of shell access capabilities, even though they are used for seemingly benign purposes. Specifically, the `SKILL.md` instructs the agent to execute a shell command (`ls -t ~/Downloads/iblipper_*.gif | head -1`) to locate a downloaded GIF, and the `scripts/iblipper.sh` file is a shell script that utilizes `bash` and `python3` for URL encoding. While these actions are plausibly aligned with the stated purpose of generating and managing animated text, the underlying shell access represents a high-risk capability without clear malicious intent, thus warranting a 'suspicious' classification.
能力评估
Purpose & Capability
Name/description, SKILL.md, examples, and the included shell script all consistently build URLs for an external GitHub Pages animation site (https://andyed.github.io/iblipper2025/). The script only outputs URLs or markdown links and does not itself contact external services, which matches the stated purpose.
Instruction Scope
SKILL.md instructs the agent to open the animation URL in a browser (including a 'browser action=open' example) and to perform a local filesystem command to find downloaded GIFs (ls -t ~/Downloads/iblipper_*.gif). Those actions are reasonable for the GIF export workflow but do require a browser tool and file-system access. The instructions do not request any unrelated secrets or endpoints.
Install Mechanism
No install spec — instruction-only with one helper script included. Nothing is downloaded or executed during an install step, so install risk is low.
Credentials
The manifest declares no required binaries or config-paths, but the included script invokes python3 for URL-encoding and SKILL.md expects access to ~/Downloads to locate GIFs. Those runtime requirements are not declared, creating a mismatch: the skill implicitly requires python3 and permission to read the user's Downloads directory when exporting GIFs.
Persistence & Privilege
Skill is not always-enabled and requests no persistent privileges or credentials. It does not modify other skills or system settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install iblipper
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /iblipper 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
FIRST RELEASE
元数据
Slug iblipper
版本 1.0.1
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

iBlipper Expressive Typography - Remember reading is automatic! 是什么?

Generate kinetic typography animations for expressive agent-to-human communication. Use when you want to communicate with visual flair - animated text for announcements, alerts, greetings, dramatic reveals, or any message that deserves more than plain text. Outputs shareable URLs or can display in canvas. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2029 次。

如何安装 iBlipper Expressive Typography - Remember reading is automatic!?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install iblipper」即可一键安装,无需额外配置。

iBlipper Expressive Typography - Remember reading is automatic! 是免费的吗?

是的,iBlipper Expressive Typography - Remember reading is automatic! 完全免费(开源免费),可自由下载、安装和使用。

iBlipper Expressive Typography - Remember reading is automatic! 支持哪些平台?

iBlipper Expressive Typography - Remember reading is automatic! 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 iBlipper Expressive Typography - Remember reading is automatic!?

由 andyed(@andyed)开发并维护,当前版本 v1.0.1。

💬 留言讨论