agentsclimarketplace

Otf ui native

Skill otf-kit/skills/skills/otf-ui-native

Build native iOS / Android (and web) UI with @otfdashkit/ui-native — a free, open-source (MIT) Expo / React Native component library that mirrors @otfdashkit/ui's component names and props. Use when building an Expo app and you want the same <Button>, <Card>, <Input> API as the web SDK, wrapped once with <OTFProvider>. One codebase, iOS + Android + web.From its SKILL.md

Install
npx -y skills add otf-kit/skills --skill otf-ui-native

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.5 KB, 558 tokens by cl100k_base, as published. Nobody here has run it

@otfdashkit/ui-native — native components

A free, MIT Expo / React Native component library built on Tamagui-core. It mirrors @otfdashkit/ui (web) component names and props one-for-one, so a screen you know on web reads the same on native — one codebase ships iOS, Android, and web.

When to use this skill

Activate when building or extending an Expo / React Native app and you want the opinionated, accessible OTF component API on native — the same <Button>, <Card>, <Input>, etc. as @otfdashkit/ui, with theming handled for you.

Install

pnpm add @otfdashkit/ui-native @otfdashkit/tokens

Peer dependencies (Expo / Tamagui stack): tamagui, @tamagui/core, @tamagui/config, @tamagui/lucide-icons, expo-router, react, react-native, react-native-reanimated, react-native-svg. Install any your app doesn't already have.

Set up (once)

Wrap your app root in <OTFProvider> — it hides the createTamagui + config call so you never write Tamagui boilerplate:

// app/_layout.tsx (Expo Router)
import { OTFProvider } from '@otfdashkit/ui-native'

export default function RootLayout() {
  return (
    <OTFProvider>
      {/* your navigator / screens */}
    </OTFProvider>
  )
}

Use

import { Button, Card, Input } from '@otfdashkit/ui-native'
// Same names and props as @otfdashkit/ui on the web.

Conventions

  • Wrap the root once in <OTFProvider> — no createTamagui config needed.
  • Theme through @otfdashkit/tokens (see the otf-tokens skill) so web and native stay visually identical.
  • Reach for these components before raw React Native primitives — they ship the shared API, theming, and accessibility.

Links

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.