Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

harmonize-whitespace协调空白

Agent Skill

harmonize-whitespace 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

188

周安装

8

GitHub Stars

2

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/blunotech-dev/agents --skill harmonize-whitespace

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更进行整理。
  • 通过 GitHub 安装,需结合来源仓库和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 涉及敏感操作时,应先确认最小权限和操作边界。

SKILL.md

Harmonize Whitespace

This skill enforces a strict 4pt/8pt spatial grid. Every padding, margin, gap, and size value snaps to a multiple of 4px. No arbitrary values like 13px, 22px, or 37px — ever.


The Rule

All spacing is a multiple of 4. Prefer multiples of 8 for major spacing.

The 4pt grid is the foundation. The 8pt grid (every other step) handles most layout spacing. The 4pt steps exist for tight, fine-grained control (icon padding, badge insets, input inner spacing).


The Scale

Define this token set at the root of every project:

:root {
  --space-1:  4px;   /* micro — icon padding, badge insets */
  --space-2:  8px;   /* xs — tight inline gaps, input padding */
  --space-3:  12px;  /* sm — compact component padding */
  --space-4:  16px;  /* md — standard component padding (base unit) */
  --space-5:  20px;  /* — use sparingly, prefer 16 or 24 */
  --space-6:  24px;  /* lg — card padding, section gaps */
  --space-8:  32px;  /* xl — between components */
  --space-10: 40px;  /* 2xl — section padding */
  --space-12: 48px;  /* 3xl — large section gaps */
  --space-16: 64px;  /* 4xl — page-level vertical rhythm */
  --space-20: 80px;  /* 5xl — hero/feature sections */
  --space-24: 96px;  /* 6xl — major page sections */
}
Note on --space-5 (20px): It's on the 4pt grid but not the 8pt grid. Use it only when 16px is too tight and 24px is too loose — typically for asymmetric padding (e.g., 20px horizontal, 16px vertical on buttons). Prefer 8pt steps everywhere else.

Tailwind Users

If using Tailwind, the default spacing scale is already 4pt-based. Use these classes:

TokenpxTailwind class
14p-1, m-1, gap-1
28p-2, m-2, gap-2
312p-3, m-3, gap-3
416p-4, m-4, gap-4
624p-6, m-6, gap-6
832p-8, m-8, gap-8
1040p-10, m-10, gap-10
1248p-12, m-12, gap-12
1664p-16, m-16, gap-16
2080p-20, m-20, gap-20
2496p-24, m-24, gap-24

Never use arbitrary Tailwind values like p-[13px], mt-[22px], or gap-[7px].


Application Rules by Context

Component Padding

Component typeRecommended padding
Compact / dense (tables, badges, tags)--space-1 / --space-2 (4–8px)
Buttons (small)8px 12pxvar(--space-2) var(--space-3)
Buttons (default)12px 20px or 12px 24pxvar(--space-3) var(--space-5/6)
Buttons (large)16px 32pxvar(--space-4) var(--space-8)
Input fields8px 12px or 12px 16px
Cards (small)--space-4 (16px) all sides
Cards (default)--space-6 (24px) all sides
Cards (large / feature)--space-8 to --space-10
Modals / dialogs--space-8 (32px)
Page horizontal padding--space-6 to --space-16 depending on breakpoint

Gap / Layout Spacing

ContextRecommended gap
Inline icon + text--space-2 (8px)
Form field stack--space-4 to --space-6 (16–24px)
Card grid--space-6 to --space-8 (24–32px)
Section stack on page--space-12 to --space-20 (48–80px)
Hero / CTA sections--space-16 to --space-24 (64–96px)

Vertical Rhythm (Typography)

Line heights and paragraph spacing should also snap to the grid:

/* Body text: 16px size, 24px line-height (both on grid) */
body { font-size: 16px; line-height: 24px; }

/* Headings */
h1 { font-size: 48px; line-height: 56px; margin-bottom: 24px; }
h2 { font-size: 32px; line-height: 40px; margin-bottom: 16px; }
h3 { font-size: 24px; line-height: 32px; margin-bottom: 12px; }
h4 { font-size: 20px; line-height: 28px; margin-bottom: 8px; }

/* Paragraph spacing */
p + p { margin-top: 16px; }

Common Anti-Patterns to Fix

❌ Arbitrary values

/* Bad */
padding: 13px 17px;
margin-top: 22px;
gap: 7px;
border-radius: 6px; /* OK — border-radius has its own conventions, see below */
/* Good */
padding: 12px 16px;
margin-top: 24px;
gap: 8px;

❌ Inconsistent asymmetry

/* Bad — random asymmetry */
padding: 14px 20px 10px 18px;
/* Good — intentional asymmetry, all on-grid */
padding: 12px 24px 16px 24px;

❌ Off-grid line heights

/* Bad */
line-height: 1.45; /* resolves to 23.2px at 16px — off-grid */
/* Good */
line-height: 1.5; /* resolves to 24px at 16px — on-grid */

Border Radius

Border radius is not strictly on the spacing grid — it follows its own visual scale. However, use consistent tokens rather than arbitrary values:

:root {
  --radius-sm: 4px;   /* subtle rounding — inputs, badges */
  --radius-md: 8px;   /* default — cards, buttons */
  --radius-lg: 12px;  /* softer — modals, panels */
  --radius-xl: 16px;  /* pronounced — floating elements */
  --radius-full: 9999px; /* pill — tags, toggles */
}

Responsive Scaling

Scale spacing up at larger breakpoints — always staying on-grid:

.container {
  padding: var(--space-4);               /* 16px mobile */
}

@media (min-width: 768px) {
  .container { padding: var(--space-8); } /* 32px tablet */
}

@media (min-width: 1280px) {
  .container { padding: var(--space-16); } /* 64px desktop */
}

Spacing jumps between breakpoints should be at least one full step on the scale — don't change padding from 16px to 20px across breakpoints; go 16px → 24px or 16px → 32px.


Working with Other Skills

  • frontend-design: This skill governs spacing. frontend-design governs layout composition, typography choices, and motion. They are fully compatible — apply both simultaneously.
  • When auditing existing UI: Check every padding, margin, gap, top/right/bottom/left offset, and width/height value against the scale. Flag any value not divisible by 4.

Checklist Before Delivering

  • All padding values are multiples of 4px
  • All margin values are multiples of 4px
  • All gap / grid-gap / column-gap / row-gap values are multiples of 4px
  • All positional offsets (top, left, etc.) are multiples of 4px
  • No arbitrary Tailwind spacing values (p-[Xpx] etc.)
  • Line heights resolve to multiples of 4px at their given font size
  • Spacing scales up correctly across breakpoints (full steps, not micro-bumps)
  • --space-* CSS variables (or Tailwind equivalents) used consistently — no magic numbers inline

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.38%
按下载量换算25

Claude

31.28%
按下载量换算21

Cursor

18.57%
按下载量换算12

Gemini CLI

10.16%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills