Install
$ agentstack add skill-eliasoulkadi-shokunin-responsive-engine ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Responsive Engine
Layouts that work at every screen size without breakpoint spaghetti. Inspired by Ahmad Shadeed (Container Queries), Jen Simmons (Intrinsic Web Design), and the CSS Working Group.
Core Principle
Responsive design is about containers, not viewports. Use Container Queries first, media queries only for global layout shifts and form factor detection.
Container Queries (preferred over media queries)
.card-grid {
container-type: inline-size;
container-name: card-grid;
}
@container card-grid (min-width: 600px) {
.card {
display: grid;
grid-template-columns: 200px 1fr;
}
}
@container card-grid (min-width: 900px) {
.card {
grid-template-columns: 1fr 1fr 1fr;
}
}
Container query length units
.card {
padding: 10cqw; /* 10% of container width */
font-size: 5cqi; /* 5% of container inline size */
margin-block: 2cqb; /* 2% of container block size */
border-radius: 1cqmin; /* 1% of container smaller side */
}
Form Factor Detection
Detect the device type, not just width.
/* Touch vs mouse */
@media (pointer: coarse) {
.button { min-height: 48px; }
}
@media (hover: hover) {
.card:hover { transform: scale(1.02); }
}
@media (hover: none) {
.card:active { transform: scale(0.98); }
}
/* Portrait vs landscape */
@media (orientation: portrait) {
.hero-grid { grid-template-columns: 1fr; }
}
Viewport Unit Decision Tree
| Use case | Unit | Why | |----------|------|-----| | Full-screen hero | min-h-[100dvh] | Adapts to URL bar on mobile. Never 100vh — iOS Safari viewport jumps. | | Minimum safe height | min-height: 100svh | Small viewport height. Fallback for when URL bar is visible. | | Large viewport design | 100lvh | Maximum when URL bar hidden. Only for desktop-like experiences. | | Width-based | dvw | Dynamic viewport width. Avoid on scroll-zooming mobile pages. |
.hero {
height: 100dvh;
min-height: 100svh; /* Fallback: never smaller than smallest viewport */
}
The h-screen ban
h-screen equals 100vh which equals disaster on iOS Safari. The URL bar entering/exiting causes catastrophic layout jumps. Always use min-h-[100dvh].
Fluid Typography
:root {
--text-sm: clamp(0.875rem, 0.8rem + 0.25vw, 1rem);
--text-base: clamp(1rem, 0.9rem + 0.35vw, 1.25rem);
--text-lg: clamp(1.25rem, 1rem + 0.75vw, 1.75rem);
--text-xl: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
--text-2xl: clamp(1.75rem, 1.25rem + 2vw, 3rem);
--text-3xl: clamp(2rem, 1.5rem + 3vw, 4rem);
--text-display: clamp(2.5rem, 1.5rem + 5vw, 6rem);
}
Fluid spacing
:root {
--space-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
--space-sm: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
--space-md: clamp(1rem, 0.8rem + 1vw, 2rem);
--space-lg: clamp(2rem, 1.5rem + 2vw, 4rem);
--space-xl: clamp(3rem, 2rem + 3vw, 6rem);
--space-2xl: clamp(4rem, 3rem + 5vw, 10rem);
}
Subgrid
.card-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1rem;
}
.card {
display: grid;
grid-template-rows: subgrid;
grid-row: span 3;
}
All children across cards align to the same row heights.
Parent-Based Responsive with :has()
/* Sidebar mode: when parent has class .sidebar */
.sidebar:has(.card) .card {
flex-direction: column;
text-align: center;
}
/* Card layout changes based on number of siblings */
.grid:has(> :last-child:nth-child(3)) .item {
grid-column: span 1;
}
/* Detect empty state */
.container:has(.empty-state) {
justify-content: center;
}
Fallback check:
@supports not selector(:has(*)) {
.grid .item { grid-column: span 1; } /* fallback */
}
Touch Target Physics
| Element | Minimum | Recommended | |---------|---------|-------------| | Button | 44×44px | 48×48px | | Link in nav | 44×44px | 48×48px | | Checkbox / radio | 24×24px | 32×32px (invisible hit area) | | Input field | 44px height | 48px height | | Gap between touchable | 8px | 12px |
.interactive {
min-width: 44px;
min-height: 44px;
}
/* Invisible hit area for small controls */
.small-control::after {
content: '';
position: absolute;
inset: -8px; /* expands hit area without visual change */
}
Layout Strategy by Device
Each layout archetype needs a mobile collapse rule.
| Desktop layout | Mobile collapse | |---------------|-----------------| | 3 columns | 1 column stack (grid-cols-1) | | Split screen 50/50 | Full-width stack (w-full) | | Asymmetric grid (2fr 1fr) | grid-template-columns: 1fr, remove all col-span overrides | | Horizontal scroll | Preserve if content is images/cards, restack if text | | Overlapping elements | Remove all negative margins and rotations below 768px | | Sidebar + content | Stack: sidebar collapses to top (or hamburger) |
/* Universal mobile collapse */
@media (max-width: 767px) {
.split-layout { grid-template-columns: 1fr; }
.asymmetric-grid { grid-template-columns: 1fr; }
.overlap-card { margin-top: 0; transform: none; }
[class*="col-span"] { grid-column: span 1; }
}
Breakpoint System (global layout only)
| Name | Width | Target | |------|-------|--------| | sm | 640px | Mobile landscape | | md | 768px | Tablet portrait | | lg | 1024px | Tablet landscape / small desktop | | xl | 1280px | Desktop | | 2xl | 1536px | Large desktop |
Never add a breakpoint "just in case." If you have more than 4 breakpoints, refactor to Container Queries.
Testing Checklist
- [ ] Content does not overflow on 320px width
- [ ] No horizontal scroll on any breakpoint
- [ ] Text readable without zoom (min 16px body)
- [ ] Images scale correctly at all sizes
- [ ] Navigation usable at all breakpoints
- [ ] Forms not broken on mobile
- [ ] Tables have horizontal scroll or responsive variant
- [ ] Container Queries used over media queries where possible
- [ ]
h-screenreplaced withmin-h-[100dvh]everywhere - [ ] Touch targets ≥ 44×44px with 8px gap
- [ ] Fixed widths in px replaced with
clamp(),%,cqi - [ ] Asymmetric layouts collapse to 1 column below
768px - [ ] Overlapping elements separated on mobile
- [ ]
:has()guarded with@supportsfallback
Error Handling
| Problem | Cause | Fix | |---------|-------|-----| | Horizontal scrollbar on mobile | Fixed-width element > viewport | Replace px with clamp(), %, or 100% | | Layout jump on iOS Safari | h-screen used | Replace with min-h-[100dvh] | | Text unreadable on mobile | Body font = 44x44px with 8px gap between interactive elements
Step 5: Add form factor and accessibility guards
- Gate hover effects behind
@media (hover: hover) - Gate fine-pointer interactions behind
@media (pointer: fine) - Add
@supports selector(:has(*))fallbacks for all:has()selectors - Respect
prefers-reduced-motionon all animations - Set minimum body font-size to 16px
Step 6: Verify across devices
- No horizontal scroll at any width from 320px to 2560px
min-h-[100dvh]replaces allh-screeninstances- Touch targets >= 44x44px with 8px gap
- Container Queries used for component responsiveness
- Asymmetric layouts collapse to single column below 768px
- All
:has()selectors guarded with@supportsfallback
Checklist
- [ ] Skill loads without errors in the AI agent
- [ ] YAML frontmatter is valid (description, compatibility, audience)
- [ ] Workflow section provides clear step-by-step instructions
- [ ] Error handling section covers common failure modes
- [ ] All referenced files (references/, scripts/, assets/) exist
- [ ] Skill triggers correctly for intended use cases
- [ ] No broken links or missing resources
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: EliasOulkadi
- Source: EliasOulkadi/shokunin
- License: MIT
- Homepage: https://eliasoulkadi.github.io/shokunin/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.