AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Typo Taste

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

Typographie française. Hiérarchie, grilles, rythme typographique, ligatures, guillemets français, échelle clamp().

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

Install

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

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

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-mud-mos23-nstup-taste-typo-taste)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Typo Taste? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Typo Taste — La Voix Française

La typographie est l'architecture visible du langage écrit.


1. Principes Fondamentaux

La Hiérarchie par le Contraste

Le rapport entre le plus grand et le plus petit texte doit être d'au moins 3:1.

La Mesure

Un texte qui mesure plus de 75 caractères par ligne est illisible. Utilise ch units.

Le Rythme Vertical

L'interlignage et les marges doivent suivre la grille de baseline.

La Cohérence

Une famille typographique = une voix. Deux familles max par projet.


2. Échelle Typographique

Échelle complète

:root {
  --text-xs: clamp(0.7rem, 0.65rem + 0.15vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.2vw, 0.9rem);
  --text-base: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.4vw, 1.375rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.5vw, 1.625rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 0.7vw, 2rem);
  --text-3xl: clamp(2rem, 1.6rem + 1.2vw, 3rem);
  --text-4xl: clamp(2.5rem, 1.8rem + 2vw, 4rem);
  --text-5xl: clamp(3rem, 2rem + 3vw, 5rem);
  --text-6xl: clamp(4rem, 2.5rem + 4vw, 7rem);
}

Interlignage

:root {
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.6;
  --leading-loose: 1.8;
}

Graisses

:root {
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
}

3. Les Polices Nstup

Recommandations par usage

| Usage | Police | Type | Où trouver | |-------|--------|------|------------| | Titres sans-serif | Satoshi | Géométrique | fontshare.com | | Titres sans-serif alt | Cabinet Grotesk | Grotesque | fontshare.com | | Titres serif | DM Serif Display | Serif | Google Fonts | | Titres serif alt | Playfair Display | Serif | Google Fonts | | Corps sans-serif | Outfit | Humaniste | Google Fonts | | Corps sans-serif alt | Sora | Grotesque | Google Fonts | | Corps serif | DM Serif Text | Serif | Google Fonts | | Corps serif alt | Source Serif 4 | Serif | Google Fonts | | Mono | JetBrains Mono | Mono | Google Fonts | | Mono alt | DM Mono | Mono | Google Fonts | | Française | Marianne | Humaniste | gouvernement.fr |

Configuration Google Fonts


4. Règles Typographiques Françaises

Guillemets

  • « Guillemets français » pour les citations
  • Jamais de "double quotes" en français
  • Espace insécable avant « et après »

Ponctuation

  • Espace insécable avant :;!?»
  • En HTML :   avant ces caractères
  • En CSS : white-space: nowrap sur les spans contenant la ponctuation

Il disait : « Bonjour le monde ! »

Il disait: "Bonjour le monde!"

Nombres

  • Espace entre les groupes de 3 chiffres : 1 000 000
  • Pas de virgule pour les milliers (usage anglais)
  • Virgule pour les décimales : 3,14

Ligatures

body {
  font-variant-ligatures: common-ligatures;
  font-feature-settings: 'liga', 'clig';
}

Césure

/* Jamais de césure dans les titres */
h1, h2, h3, h4 {
  hyphens: none;
  word-break: break-word;
}

/* Césure autorisée dans le corps */
p {
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  hyphenate-limit-lines: 2;
}

5. Rythme Vertical

La Grille de Baseline

:root {
  --baseline: 1.5rem; /* 24px */
}

body {
  line-height: var(--baseline);
}

h1 {
  font-size: var(--text-4xl);
  line-height: calc(var(--baseline) * 2);
  margin-top: calc(var(--baseline) * 2);
  margin-bottom: var(--baseline);
}

p {
  margin-bottom: var(--baseline);
}

Stack typographique

.prose {
  max-width: 65ch;
}

.prose > * + * {
  margin-top: var(--baseline);
}

.prose > h2 {
  margin-top: calc(var(--baseline) * 3);
}

.prose > h3 {
  margin-top: calc(var(--baseline) * 2);
}

6. Ce que Typo Taste Interdit

  • Inter — trop utilisé, devenu générique
  • Roboto — fatigué, sans personnalité
  • Open Sans — trop corporate
  • Montserrat — surutilisé dans le design web
  • Poppins — choisi par défaut sans réflexion
  • Lato — sans relief
  • ❌ Plus de 2 familles typographiques sur un même projet
  • font-size en px (toujours rem ou clamp())
  • line-height sans unité
  • ❌ Texte centré pour les longs paragraphes
  • text-justify (créé des rivières)
  • letter-spacing négatif sur le texte courant
  • ❌ Texte sur image sans fond ou ombre

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.