jotai-expert

Installation
SKILL.md

Jotai Expert

Jotaiを使用したReact状態管理の実装ガイド。

Core Concepts

Atom

状態の最小単位。値を持たず、Storeに保存される。

// Primitive atom
const countAtom = atom(0)
const nameAtom = atom('')

// Derived read-only atom
const doubleAtom = atom((get) => get(countAtom) * 2)
Related skills

More from s-hiraoku/claude-code-harnesses-factory

Installs
2
First Seen
Jan 28, 2026