Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

google-fontsGoogle fonts 效率

Agent Skill

google-fonts 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

533

周安装

22

GitHub Stars

3

下载量

174
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sliday/google-fonts-skill --skill google-fonts

简介

google-fonts 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Auto Google Font

Typography system generator for web projects using Google Fonts. Searches 1,923 fonts enriched with typographic personality tags (geometric, humanist, neo-grotesque, etc.), contrast levels, and body-suitability ratings. Generates complete typographic rhythm systems.

Data Files

  • data/fonts.csv — 1,923 Google Fonts with: Family, Category, Personality, Contrast, Width, Weight_Range, Variable, Body_Suitable, Quality_Tier (A/B/C), Mood, Best_For, CSS_Import
  • data/pairings.csv — 73 proven font pairings with contrast type and scale recommendations
  • data/scales.csv — 8 modular type scales with sizes, line-heights, letter-spacing, margins
  • references/typographic-rhythm.md — Scale math, line-height tiers, spacing rules
  • references/pairing-principles.md — Contrast theory, decision trees, superfamilies

Modes

Single Font (Strict)

One font for headings AND body. Must have weight range covering 400+700. Body-suitable required.

python3 scripts/search.py "modern clean SaaS" --mode single
python3 scripts/search.py "geometric professional" --mode single --tier A

Font Pair (Contrast)

Two fonts with typographic contrast. Searches proven pairings first.

python3 scripts/search.py "elegant editorial luxury" --mode pair
python3 scripts/search.py "tech startup bold" --mode pair

Full System Output

Generate CSS + Tailwind + embed link from font selection + scale choice.

# Single font
python3 scripts/generate-css.py --font "Inter" --scale major-third --format all

# Font pair
python3 scripts/generate-css.py --heading "Playfair Display" --body "Inter" \
  --scale perfect-fourth --format all

# Custom weights and base size
python3 scripts/generate-css.py --heading "Space Grotesk" --body "DM Sans" \
  --heading-weights "400,700" --body-weights "300,400,500,700" \
  --scale minor-third --base 16 --format css

Workflow

  1. Understand context — Ask: product type, mood, content density, existing brand
  2. Search fonts — Run search.py with relevant keywords and mode
  3. Present top 3 — Show Family, Personality, Contrast, Quality Tier, Weight Range
  4. Generate system — Run generate-css.py with chosen font(s) and appropriate scale
  5. Deliver — Provide CSS custom properties, Tailwind config, and embed link

Quick Decision Guide

Project TypeModeScaleSuggested Search
SaaS / Dashboardsinglemajor-second"clean professional geometric"
Blog / Contentpairmajor-third"editorial readable"
Marketing / Landingpairperfect-fourth"bold modern confident"
Luxury / Fashionpairaugmented-fourth"elegant premium serif"
Documentationsingleminor-third"readable accessible humanist"
E-commercepairminor-third"clean friendly conversion"
Portfoliopairperfect-fourth"creative distinctive"
Enterprise / Govsinglemajor-second"trustworthy accessible corporate"

Scale Reference

ScaleRatioBest For
minor-second1.067Dense UI, dashboards
major-second1.125Apps, admin panels
minor-third1.2General purpose
major-third1.25Blogs, content
perfect-fourth1.333Marketing, editorial
augmented-fourth1.414Magazines, expressive
perfect-fifth1.5Display-heavy
golden-ratio1.618Hero sections

Pairing Contrast Types

  • Structure: Serif + Sans (safest, most contrast)
  • Proportion: Geometric sans + Humanist sans (subtle, modern)
  • Era: Old-style serif + Neo-grotesque sans (dramatic)
  • Weight: Single font family, different weights (simplest)

Quality Rules

  1. Always use display=swap in Google Fonts embed
  2. Prefer variable fonts (fewer HTTP requests, full weight flexibility)
  3. Never suggest a single-weight font for body text
  4. Verify Weight_Range covers needed weights before suggesting
  5. For body text: only suggest Body_Suitable=="Yes" fonts
  6. Tier A fonts first, then B, then C
  7. Include preconnect hints for fonts.googleapis.com and fonts.gstatic.com
  8. Max 3 font families per project (heading + body + optional mono)

Output Includes

  • CSS custom properties: font families, sizes, line-heights, letter-spacing, measure
  • Tailwind config: fontFamily, fontSize with lineHeight and letterSpacing
  • Google Fonts <link> embed with preconnect
  • Responsive breakpoint guidance

Showcase Gallery

100 pre-made typography systems applied to fictional projects. Browse at showcase/index.html or reference showcase/showcase.json for programmatic access.

When a user says "show me examples", "pick a style for me", or "what would work for a SaaS app", read showcase/showcase.json and filter by project type to suggest a pre-built system.

Regenerating

python3 scripts/generate-showcase.py

For detailed typographic theory, read references/typographic-rhythm.md. For pairing decision trees, read references/pairing-principles.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.9%
按下载量换算69

Claude

28.39%
按下载量换算49

Cursor

18.5%
按下载量换算32

Gemini CLI

9.87%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills