# Send Fonts to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fonts",
    "name": "Fonts",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/ivangdavila/fonts",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/fonts",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/fonts",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fonts",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "fonts",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T17:18:52.108Z",
      "expiresAt": "2026-05-06T17:18:52.108Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fonts",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fonts",
        "contentDisposition": "attachment; filename=\"fonts-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "fonts"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fonts"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fonts",
    "downloadUrl": "https://openagent3.xyz/downloads/fonts",
    "agentUrl": "https://openagent3.xyz/skills/fonts/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fonts/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fonts/agent.md"
  }
}
```
## Documentation

### Display vs Text Fonts

Display fonts (Abril Fatface, Bebas Neue, Lobster) are for headings 24px+ only—using them for body text destroys readability
If a font looks decorative or has extreme thick/thin contrast, it's display—not for paragraphs
Text fonts (Inter, Roboto, Georgia) are designed for 12-18px—use these for body copy

### Pairing Traps

Two fonts too similar look like a mistake—if you can't tell them apart instantly, use one font
Contrast in category works: serif heading + sans-serif body, or different weights of same family
Two decorative fonts clash—never pair Lobster with Pacifico
Safe pairs: same superfamily (Roboto + Roboto Slab) or proven combos (Playfair Display + Source Sans Pro)

### Weight and Rendering

Thin weights (100-300) render poorly on Windows—avoid for body text, use 400+ for cross-platform
Light fonts on dark backgrounds look thinner—bump weight up one level for dark mode
Faux bold (browser-generated) looks wrong—only use weights the font actually includes
Check font has italic—faux italic (slanted roman) is noticeably worse than true italic

### Line Height and Length

Body text needs 1.4-1.6 line-height—1.0 or 1.2 makes paragraphs unreadable walls
Headings need tighter line-height (1.1-1.3)—large text with 1.5 line-height has awkward gaps
Line length 45-75 characters max—wider than 75 chars causes readers to lose their place
Set max-width on text containers in ch units: max-width: 65ch

### All Caps

ALL CAPS needs increased letter-spacing—without it, letters collide and look cramped
text-transform: uppercase + letter-spacing: 0.05em minimum
Never use all caps for more than a few words—extended caps text is significantly harder to read
Small caps (font-variant: small-caps) only if font supports it—faux small caps look amateurish

### Widows and Orphans

Single word alone on last line of paragraph looks broken—adjust text or container width
text-wrap: balance (CSS) distributes lines more evenly in headings
text-wrap: pretty for body text—prevents orphans in browsers that support it
Manual fix: non-breaking space (&nbsp;) between last two words

### Loading and Performance

font-display: swap prevents invisible text—without it, text is blank until font loads
Subset fonts to characters you need—Latin-only saves 60%+ over full Unicode
WOFF2 is the only format you need—universal support, best compression
Preload critical fonts: <link rel="preload" href="font.woff2" as="font" crossorigin>

### System Font Stack

font-family: system-ui, -apple-system, BlinkMacSystemFont, 
  'Segoe UI', Roboto, sans-serif;

Zero load time, native look per platform—use for UI-heavy apps
system-ui is now widely supported—simpler than listing all fallbacks
Always end with generic fallback (sans-serif, serif, monospace)

### Hierarchy Mistakes

Using too many font sizes—stick to a type scale (1.25 or 1.333 ratio), not random sizes
Headings not distinct enough from body—skip at least one scale step between h1 and body
Overusing bold—if everything is emphasized, nothing is emphasized
Color as only differentiator—size and weight should establish hierarchy before color
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T17:18:52.108Z
- Expires at: 2026-05-06T17:18:52.108Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/fonts)
- [Send to Agent page](https://openagent3.xyz/skills/fonts/agent)
- [JSON manifest](https://openagent3.xyz/skills/fonts/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/fonts/agent.md)
- [Download page](https://openagent3.xyz/downloads/fonts)