Generate responsive CSS grid layouts from a column/gap spec.
Scanned 9/3/2026
Install to Claude Code
npx -y skills add anton-abyzov/vskill --skill anton-grid --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Anton Grid?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/anton-abyzov-anton-grid)More formats (shields.io, HTML) on the badges page.
---
name: anton-grid
description: "Generate responsive CSS grid layouts from a column/gap spec."
version: "1.0.0"
allowed-tools: Read,Write
model: claude-sonnet-4-5
---
# anton-grid
A small CSS-grid helper skill. Turns a plain-language layout request into a
ready-to-paste `display: grid` block with sensible responsive defaults.
## Workflow
1. Read the requested column count and gap.
2. Emit a `.grid` rule with `grid-template-columns: repeat(N, minmax(0, 1fr))`.
3. Add a mobile breakpoint that collapses to a single column.
## Example
```css
.grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
}
@media (max-width: 640px) {
.grid {
grid-template-columns: 1fr;
}
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!