Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add pproenca/dot-skills --skill expo-design-systemgit clone --depth 1 https://github.com/pproenca/dot-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/pproenca/dot-skills/expo-design-system)<a href="https://agentmods.dev/skills/pproenca/dot-skills/expo-design-system"><img src="https://agentmods.dev/badge/skills/pproenca/dot-skills/expo-design-system/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/pproenca/dot-skills/expo-design-system"><img src="https://agentmods.dev/badge/skills/pproenca/dot-skills/expo-design-system.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00222 | $0.03296 |
| Opus 5 | $0.00111 | $0.01648 |
| Sonnet 5 | $0.00044 | $0.00659 |
| Haiku 4.5 | $0.00022 | $0.00330 |
Grade A, and why
expo-design-system scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 185 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Airbnb DLS Expo React Native Design System Best Practices
Opinionated, strict design system engineering for Expo / React Native apps on the New Architecture, targeting both web and native iOS. Contains 63 rules across 11 categories, prioritized by impact. Derived from Airbnb's Design Language System (DLS), the Unistyles v3 documentation, and the React Native ecosystem (Reanimated, Gesture Handler, Skia, FlashList, Expo SDK). The styling engine is Unistyles v3; the component API follows the Airbnb DLS pattern of variant props over style escape hatches.
Mandated Architecture Alignment
This skill is the infrastructure layer — it teaches how to BUILD the design system itself, the React Native counterpart to ios-design-system. All code examples follow the same non-negotiable constraints:
- Feature modules import
@clinic/design-system+domain; never another feature's internals - The design system owns the Unistyles theme (tokens, breakpoints) and exports a curated public surface
- Reuse before you build: read the index, extend a variant, promote on the second use — never a parallel local component
- Components expose variant and slot props (Airbnb DLS); no raw
styleescape hatch - Animation and gestures run on the UI thread (Reanimated worklets + Gesture Handler)
- Lists use FlashList; the body-chart drawing surface uses React Native Skia
- One source feels native on both web and iOS: Unistyles
_webpseudo-states andPlatformsplits, never a forked web stylesheet - Targets the New Architecture (Fabric/JSI), Expo SDK 53+ / React Native 0.81+
Scope & Relationship to Sibling Skills
| Sibling Skill | Its Focus | This Skill's Focus |
|---|---|---|
ios-design-system |
The SwiftUI design system for the same clinic app | The Expo / React Native counterpart |
expo-react-native-coder |
Feature development (screens, navigation, data fetching) | Design system infrastructure (tokens, components, theming) |
expo-react-native-performance |
App-wide performance optimization | Native-feel performance inside the design system |
react |
General React patterns | Expo / React Native design system specifics |
expo-ios-hig |
iOS native-feel decisions (navigation, system controls, Liquid Glass) | Cross-platform token/component architecture + web/iOS parity |
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- AGENTS.md 15 KB
- assets/templates/_template.md 1.1 KB
- metadata.json 1.7 KB
- references/_sections.md 4.2 KB
- references/api-accessibility-in-contract.md 1.7 KB
- references/api-aschild-polymorphism.md 1.6 KB
- references/api-compound-variants.md 1.8 KB
- references/api-controlled-uncontrolled.md 1.7 KB
- references/api-forward-ref.md 1.7 KB
- references/api-no-style-escape-hatch.md 2.1 KB
- references/api-slots-for-composition.md 1.6 KB
- references/api-variants-over-style-prop.md 2.3 KB
- references/domain-bodychart-gesture-paths.md 1.7 KB
- references/domain-bodychart-skia-canvas.md 1.6 KB
- references/domain-calendar-virtualization.md 1.5 KB
- references/domain-compose-from-primitives.md 1.7 KB
- references/domain-note-editor-autosave.md 1.6 KB
- references/domain-optimistic-writes.md 1.6 KB
- references/govern-design-system-package.md 1.4 KB
- references/govern-incremental-migration.md 1.4 KB
- references/govern-lint-no-raw-values.md 2.0 KB
- references/govern-naming-conventions.md 1.3 KB
- references/govern-prevent-local-tokens.md 1.4 KB
- references/govern-storybook-catalog.md 1.5 KB
- references/perf-defer-offscreen-work.md 1.6 KB
- references/perf-expo-image.md 1.2 KB
- references/perf-flashlist-for-lists.md 1.1 KB
- references/perf-gesture-handler.md 1.9 KB
- references/perf-haptics-key-actions.md 1.5 KB
- references/perf-memoize-list-items.md 1.5 KB
- references/perf-reanimated-ui-thread.md 1.6 KB
- references/platform-divergence-split.md 1.7 KB
- references/platform-guard-native-only.md 1.5 KB
- references/platform-input-model.md 1.4 KB
- references/platform-shared-theme-parity.md 1.6 KB
- references/platform-web-pseudo-states.md 1.8 KB
- references/reuse-extend-not-fork.md 2.0 KB
- references/reuse-inventory-first.md 1.7 KB
- references/reuse-platform-component-first.md 1.7 KB
- references/reuse-promote-on-second-use.md 1.4 KB
- references/space-gap-over-margins.md 1.1 KB
- references/space-radius-tokens.md 1.3 KB
- references/space-safe-area-insets.md 1.5 KB
- references/space-spacing-scale.md 1.2 KB
- references/space-touch-targets.md 1.3 KB
- references/style-dynamic-functions.md 1.6 KB
- references/style-no-inline-array-merge.md 1.5 KB
- references/style-press-states-from-variants.md 1.8 KB
- references/style-stylesheet-create.md 1.7 KB
- references/style-variants-api.md 1.7 KB
- references/style-withunistyles-third-party.md 1.2 KB
- references/theme-adaptive-system.md 1.6 KB
- references/theme-breakpoints-responsive.md 1.4 KB
- references/theme-config-single-module.md 1.6 KB
- references/theme-runtime-not-rerender.md 1.7 KB
- references/theme-stylesheet-theme-arg.md 1.4 KB
- references/token-avoid-over-abstraction.md 1.5 KB
- references/token-define-in-unistyles-theme.md 1.6 KB
- references/token-elevation-pairs.md 1.7 KB
- references/token-no-raw-values-in-components.md 1.7 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 185 lines · 222 tokens per session scan A f47ec3041f65
expo-design-system is a skill published in the GitHub repository pproenca/dot-skills (205 stars, last pushed 24d ago), licensed MIT. It adds 222 tokens to every session and 3,296 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
display-glasses-with-jetpack-compose-glimmer
Provides guidelines for developing projected Android XR apps for display glasses using the Jetpack Compose Glimmer UI toolkit. This skill covers foundational Glimmer design principles, workflows for implementing Jetpack Compose Glimmer, and interaction models for the glasses form factor. Use this skill to build an…
expo-design-system
Framework (OSS). Build and maintain a design system inside an Expo app - a reusable theme of design tokens (color, spacing, typography, radius, shadow, motion), reusable component structure with variant/size/state prop conventions, and rules for when to extract a repeated view into a shared component. Use when…
flutter-build-responsive-layout
Use LayoutBuilder, MediaQuery, or Expanded/Flexible to create a layout that adapts to different screen sizes. Use when you need the UI to look good on both mobile and tablet/desktop form factors.
omh-apple-design
This is a Hermes-native apple-design workflow skill.
axiom-audit-liquid-glass
Use when the user mentions Liquid Glass review, iOS 26 UI updates, toolbar improvements, or visual effect migration.
axiom-audit-ux-flow
Use when the user mentions UX flow issues, dead-end views, dismiss traps, missing empty states, broken user journeys, or wants a UX audit of their iOS app.