AgentStack
SKILL verified MIT Self-run

Minimalist Ui

skill-mud-mos23-nstup-taste-minimalist · by mud-mos23

UI éditoriale sobre (vibes Notion/Linear). Palette monochrome, structure nette, typographie contrastée, bento grids, aucune décoration superflue.

No reviews yet
0 installs
1 views
0.0% view→install

Install

$ agentstack add skill-mud-mos23-nstup-taste-minimalist

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

Are you the author of Minimalist Ui? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Minimaliste — L'Éditorial Digital

Pas de décorum. Pas d'effet de style. Juste du contenu, bien rangé.


1. Philosophie

  1. Le contenu est roi — l'UI disparaît pour laisser parler le contenu
  2. Fonction > forme — si ça n'a pas d'utilité, ça n'existe pas
  3. Un pixel de trop — si tu peux enlever un élément sans casser l'expérience, enlève-le
  4. Inspirations — Notion, Linear, Bear, iA Writer, Readwise

2. Palette

:root {
  --bg: #f8f7f4;
  --bg-secondary: #f0efe8;
  --text: #2d2d2d;
  --text-secondary: #8a8a8a;
  --accent: #3b6ea5;
  --border: #e5e3de;
  --selection: rgba(59, 110, 165, 0.15);
}

Mode sombre

[data-theme='dark'] {
  --bg: #1a1a1a;
  --bg-secondary: #222;
  --text: #e8e8e8;
  --text-secondary: #777;
  --accent: #5b9fd4;
  --border: #2a2a2a;
  --selection: rgba(91, 159, 212, 0.25);
}

3. Typographie

:root {
  --font-heading: 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
}

Pour le minimaliste, Inter est autorisé car c'est un standard éditorial. Mais préférer :

| Titres | Corps | |--------|-------| | Satoshi | Outfit | | Cabinet Grotesk | Sora | | DM Sans | Figtree |


4. Layout

Structure de page

.page {
  max-width: 720px;
  margin-inline: auto;
  padding: var(--space-2xl) var(--space-lg);
}

Grille de contenu

.content-grid {
  display: grid;
  grid-template-columns: 1fr min(65ch, 100%) 1fr;
}

.content-grid > * {
  grid-column: 2;
}

.content-grid > .full {
  grid-column: 1 / -1;
  padding-inline: 0;
}

5. Composants Minimalistes

Carte


  {category}
  
    {title}
  
  {excerpt}
  
    {date}
    ·
    {readTime} min de lecture
  

Bouton


  {label}

Navigation


  {links.map(l => (
    
      {l.label}
    
  ))}

6. Règles Strictes

  • ❌ Ombres portées
  • ❌ Coins arrondis (sauf 4px pour les inputs)
  • ❌ Dégradés
  • ❌ Icônes inutiles (seulement fonctionnelles)
  • ❌ Images décoratives sans contexte
  • ❌ Plus de 2 niveaux de fond
  • ❌ Bordures épaisses
  • ❌ Animations décoratives
  • ❌ Layout à plus de 2 colonnes
  • ❌ Tout ce qui ressemble à un template SaaS

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.