@agentsy/ui
v0.1.1
Published
UI state management and event sourcing for the @agentsy platform.
Downloads
45
Readme
@agentsy/ui
Conversation state and event-store helpers.
Purpose
@agentsy/ui provides reducer/store primitives for applying conversation events to UI state.
Role in Agentsy
This package bridges processing/agent events into deterministic UI state updates for consumer applications.
Status
- Internal/pre-release package in this monorepo.
Usage
import { createConversationStore, applyConversationEvent } from '@agentsy/ui';
const store = createConversationStore();
store.dispatch(event);Development
cd packages/ui
pnpm build
pnpm check-types
pnpm test