Awesome-openclaw-skills whatsapp-styler
Skill to ensure all messages sent to WhatsApp follow the platform's specific formatting syntax. It prevents markdown bloat and ensures a clean, mobile-first reading experience.
install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/whatsapp-styler" ~/.claude/skills/sundial-org-awesome-openclaw-skills-whatsapp-styler && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/whatsapp-styler" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-whatsapp-styler && rm -rf "$T"
manifest:
skills/whatsapp-styler/SKILL.mdsource content
WhatsApp Styler
This skill defines the strict formatting rules for WhatsApp to ensure the user sees clean, styled text without raw markdown symbols.
Core Syntax Rules
- Bold: Use single asterisks around text:
. NEVER use double asterisks*texto*
.** - Italic: Use single underscores around text:
._texto_ Strikethrough: Use tildes around text:
.~texto~
: Use triple backticks:Monospace
(good for code or technical IDs).texto- Bullet Lists: Use a single asterisk followed by a space:
.* Item - Numbered Lists: Use standard numbers:
.1. Item - Quotes: Use the angle bracket:
.> texto
Prohibited Patterns (Do NOT use)
- No headers (
,#
,##
). Use BOLD CAPS instead.### - No markdown tables. Use bullet lists for structured data.
- No horizontal rules (
). Use a line of underscores if needed---
.__________ - No nested bold/italic symbols if it risks showing raw characters.
Goal
The goal is a "Human-to-Human" look. Technical but clean.