valtio-define

valtio-define

Comprehensive skills for working with valtio-define

1звезд
1форков
Обновлено 2/3/2026
SKILL.md
readonlyread-only
name
valtio-define
description

Comprehensive skills for working with valtio-define

version
"2025.01.29"

Based on valtio-define v1.0.1. A Valtio-based state management library with Pinia-like API for React applications.

Overview

valtio-define provides a factory function for creating reactive stores with state, actions, and getters. Built on top of Valtio, it offers a familiar API similar to Pinia with full TypeScript support.

Core References

Topic Description Reference
defineStore Core API for creating reactive stores core-define-store
useStore React hook for accessing store state core-use-store
Types TypeScript types and interfaces core-types

Advanced Features

Topic Description Reference
Subscriptions Subscribe to state changes advanced-subscribe
Patch Update state with patch operations advanced-patch
Signal JSX component for inline reactive values advanced-signal
Store to State Convert store to useState-like hooks advanced-store-to-state

Features

Topic Description Reference
Plugin System Extend stores with plugins feature-plugin-system
Persistent Plugin Persist state to storage feature-persistent-plugin

Quick Start

import { defineStore, useStore } from 'valtio-define'

const store = defineStore({
  state: () => ({ count: 0 }),
  actions: {
    increment() { this.count++ },
  },
  getters: {
    doubled() { return this.count * 2 },
  },
})

function Counter() {
  const state = useStore(store)
  return (
    <div>
      <div>Count: {state.count}</div>
      <div>Doubled: {state.doubled}</div>
      <button onClick={store.increment}>Increment</button>
    </div>
  )
}

You Might Also Like

Related Skills

verify

verify

243K

Use when you want to validate changes before committing, or when you need to check all React contribution requirements.

test

test

243K

Use when you need to run tests for React core. Supports source, www, stable, and experimental channels.

Use when feature flag tests fail, flags need updating, understanding @gate pragmas, debugging channel-specific test failures, or adding new flags to React.

Use when adding new error messages to React, or seeing "unknown error code" warnings.

flow

flow

243K

Use when you need to run Flow type checking, or when seeing Flow type errors in React code.

flags

flags

243K

Use when you need to check feature flag states, compare channels, or debug why a feature behaves differently across release channels.