Install
$ agentstack add skill-serejaris-personal-corp-skills-design-minimal ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
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
Design Minimal
Generate one standalone HTML page with a restrained minimal visual system: clear hierarchy, strong spacing, explicit structure, limited palette, and no decorative effects.
Language
- Match the visible interface language to the user's language and artifact context.
- For Russian pages, write visible UI labels, headings, section names, status explanations, and footer copy in Russian.
- Keep English only for file paths, commands, code identifiers, schema fields, API names, model/tool names, and literal values that must remain copyable.
- If an English technical term is useful for teaching, pair it with a plain-language local label once, then use the local label in the interface.
Hard Contract
- Use one self-contained HTML file.
- Use Tailwind CDN only for layout and component styling.
- Do not write custom CSS rules for components, layout, typography, states, cards, grids, buttons, headers, or sections.
- The only allowed CSS is design tokens as CSS variables in
:root. - Do not add mobile adaptation: no responsive Tailwind prefixes (
sm:,md:,lg:,xl:,2xl:), no media queries, no alternate mobile layout. - Do not use external fonts, JavaScript frameworks, icon libraries, SVG icons, gradients, shadows, rounded corners, or accent colors.
- Use typography, color, spacing, and layout through Tailwind classes plus token variables.
Allowed `` shape:
:root {
--bg: #f5f4ef;
--ink: #1a1a1a;
--muted: #77736b;
--hair: #d4d2cc;
--paper-soft: #eeece4;
--font-main: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
--font-mono: ui-monospace, "SF Mono", Menlo, monospace;
}
Forbidden CSS shape:
.card { ... }
@media (...) { ... }
body { ... }
button:hover { ... }
Tailwind Usage
Use Tailwind classes directly on elements. Reference tokens through arbitrary values:
BRIEF 042 · INTERNAL
Page Title
Use fixed desktop-oriented widths such as w-[960px], w-[1120px], max-w-[1200px], grid-cols-[...], min-h-[...]. Do not add mobile fallbacks. One-column, two-column, and dense multi-panel layouts are allowed when the content benefits from them.
Visual Vocabulary
| Element | Tailwind Pattern | |---|---| | Page | bg-[var(--bg)] text-[var(--ink)] font-[var(--font-main)] text-[14px] leading-[1.55] | | Shell | mx-auto w-[1120px] px-8 py-8 pb-20 | | Grid | grid grid-cols-[1fr_320px] gap-6 or grid grid-cols-3 gap-4 | | Header | border-y-2 border-[var(--ink)] py-4 | | Meta | text-[11px] uppercase tracking-[0.14em] text-[var(--muted)] | | Section label | [ MAIN ] | | Panel | border border-[var(--ink)] p-4 | | Soft panel | border border-dashed border-[var(--ink)] p-4 | | Divider | Text dashes inside HTML, styled with muted mono text | | Entry | border-t border-[var(--hair)] pt-5 mt-5 | | Link | underline decoration-[var(--hair)] underline-offset-4 hover:bg-[var(--ink)] hover:text-[var(--bg)] | | Badge | border border-[var(--hair)] px-1 text-[10px] uppercase text-[var(--muted)] |
Skeleton
:root {
--bg: #f5f4ef;
--ink: #1a1a1a;
--muted: #77736b;
--hair: #d4d2cc;
--paper-soft: #eeece4;
--font-main: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
--font-mono: ui-monospace, "SF Mono", Menlo, monospace;
}
Design Minimal
BRIEF 042 · INTERNAL
Page Title
Short one-line description.
[ MAIN ] important
...
[ SIDE ]
...
──── entries ──────────────────────────────
[ 01 / 05 ] signal
Section Title
...
Common Mistakes
- Adding component selectors in `` instead of Tailwind classes.
- Adding
sm:/md:/lg:classes. - Adding
@mediafor mobile. - Importing Google Fonts or icon libraries.
- Using rounded corners, shadows, gradients, or color-coded statuses.
- Using English UI labels in a Russian page when a clear Russian label exists.
- Treating any specific layout pattern as mandatory when the content needs another structure.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: serejaris
- Source: serejaris/personal-corp-skills
- License: MIT
- Homepage: https://github.com/serejaris/personal-corp-skills
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.