layout-spacing-checker
2
总安装量
1
周安装量
#73629
全站排名
安装命令
npx skills add https://github.com/cantagestudio/cosmicatlaspacker --skill layout-spacing-checker
Agent 安装分布
amp
1
opencode
1
cursor
1
kimi-cli
1
codex
1
github-copilot
1
Skill 文档
Layout & Spacing Scale Checker
Validate spacing values against a defined scale and find inconsistencies.
Quick Start
python3 scripts/check_spacing.py --scale spacing.yml --source src/
Issue Types
| Type | Severity | Description |
|---|---|---|
off-scale |
warning | Value not in spacing scale |
inconsistent |
info | Different spacing for similar components |
zero-spacing |
info | Potentially missing spacing |
excessive |
warning | Unusually large spacing value |
Detection Examples
CSS/SCSS
/* off-scale: 17px not in scale */
.card { padding: 17px; }
/* Suggested: 16px (md) or 20px */
SwiftUI
// off-scale: 15 not in scale
.padding(15)
// Suggested: .padding(16) or spacing token .md