agent-comms
SendMessage recipient validation and worktreePath safety (CWE-59). TRIGGER when: validating a SendMessage `to:` recipient against the agent whitelist, or a…
Client state management standards: local-vs-global decisions, store structure, selectors, and re-render performance. TRIGGER when: creating a store, managing global state, or deciding local vs global state. SKIP: component/hook structure (use react-patterns); visual styling (use
$ npx -y skills add komluk/scaffolding --skill state-management --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/state-managementContext preview
The summary Claude sees to decide when to auto-load this skill.
Client state management standards: local-vs-global decisions, store structure, selectors, and re-render performance. TRIGGER when: creating a store, managing global state, or deciding local vs global state. SKIP: component/hook structure (use react-patterns); visual styling (use
name: state-management description: "Client state management standards: local-vs-global decisions, store structure, selectors, and re-render performance. TRIGGER when: creating a store, managing global state, or deciding local vs global state. SKIP: component/hook structure (use react-patterns); visual styling (use mui-styling). (Examples use Zustand.)"
Client state management standards and best practices. The universal guidance (local-vs-global decisions, store structure, selectors, performance) applies to any store library; the concrete code examples use **Zustand**.
---
| Category | Solution | Use When | |----------|----------|----------| | Local UI | `useState` | Single component, simple state | | Shared UI | Zustand store | Multiple components need same data | | Server data | React Query / SWR | API data with caching needs | | Form state | `useState` / form library | Form inputs, validation | | URL state | `useSearchParams` | Filter/sort params, shareable URLs |
---
| Element | Requirement | |---------|-------------| | Interface | Define typed state + actions interface | | State | Group related state together | | Actions | Define all mutations as functions | | Naming | `use[Domain]Store` convention |
| Principle | Description | |-----------|-------------| | Single responsibility | One store per domain (projects, UI, settings) | | Flat structure | Avoid deeply nested state | | Immutable updates | Always return new objects | | Colocated actions | Keep actions inside store definition |
---
| Rule | Reason | |------|--------| | Select minimal data | Reduces re-renders | | Use `shallow` for objects | Prevents unnecessary updates | | Memoize derived data | Use `useMemo` for computed values | | Avoid selecting entire store | Causes re-render on any change |
| Pattern | Use Case | |---------|----------| | Single value | `(state) => state.count` | | Multiple values | `(state) => ({ a: state.a, b: state.b }), shallow` | | Derived value | `useMemo` outside store |
---
| Middleware | Purpose | When to Use | |------------|---------|-------------| | `persist` | LocalStorage persistence | User preferences, settings | | `devtools` | Redux DevTools integration | Development debugging | | `immer` | Immutable updates | Complex nested state | | `subscribeWithSelector` | Granular subscriptions | Performance optimization |
---
src/stores/ ├── index.ts # Re-exports all stores ├── projectStore.ts # Domain-specific store ├── uiStore.ts # UI state (modals, panels) └── settingsStore.ts # User preferences
| Store Type | Contains | |------------|----------| | Domain store | Business entities, selections | | UI store | Modal states, panel visibility, loading | | Settings store | User preferences, persisted config |
---
---
| Anti-Pattern | Problem | Solution | |--------------|---------|----------| | Giant store | Hard to maintain, performance issues | Split by domain | | Computed in store | Stale data, extra complexity | Use `useMemo` | | Prop drilling | Bypasses store benefits | Use store directly | | Store in useState | Loses reactivity | Use store hook | | No TypeScript | Runtime errors | Define interfaces |
---
| Scenario | Recommended Solution | |----------|---------------------| | Form input state | `useState` | | Modal open/close | `useState` or UI store | | Selected item (shared) | Domain store | | User preferences | Persisted store | | API response data | Store + service function | | Computed/derived data | `useMemo` from store values | | Global loading state | UI store |
---
> Illustrative — these are one team's concrete Zustand conventions shown as an > example. Substitute your store library's equivalents (Redux Toolkit, Jotai, > Pinia, signals, etc.). The decision matrix and selector/performance guidance > above are the reusable, library-agnostic part.
| Store | Persist | Purpose | |-------|---------|---------| | `workspaceStore.ts` | Yes (`scaffolding-workspaces`) | Projects/workspaces, active selection | | `taskStore.ts` | No | Task CRUD, SSE updates, agent statuses | | `authStore.ts` | Yes (`auth-storage`) | GitHub OAuth state, user profile |
Every store defines `type XxxState` and `type XxxActions`, then exports the combined type:
type WorkspaceState = {
workspaces: Workspace[];
activeWorkspace: Workspace | null;
};
type WorkspaceActions = {
addWorkspace: (pathOrWorkspace: string | Workspace) => void;
removeWorkspace: (path: string) => Promise<void>;
setActiveWorkspace: (path: string) => void;
loadFromApi: () => Promise<void>;
};
export type WorkspaceStore = WorkspaceState & WorkspaceActions;Persisted stores use `partialize` to exclude actions and transient state from storage:
export const useWorkspaceStore = create<WorkspaceStore>()(
persist(
(set, get) => ({ /* state + actions */ }),
{Spec-driven multi-agent orchestration for Claude Code — pure markdown, zero backend, runs on the stock runtime. 13 agents, 36 skills, 19 commands, 15 hooks, per-phase model tiers, opt-in lifecycle hooks, optional cross-device semantic memory.
Repo: komluk/scaffolding
SendMessage recipient validation and worktreePath safety (CWE-59). TRIGGER when: validating a SendMessage `to:` recipient against the agent whitelist, or a…
3-tier markdown memory protocol (shared/agent/conversation) for cross-session knowledge. TRIGGER when: reading or writing agent memory files, choosing which…
RESTful API design standards: resource naming, HTTP methods, status codes, pagination, versioning. TRIGGER when: designing new API endpoints, defining error…
Optimize Claude Code context-window usage for accuracy and cost. TRIGGER when: hitting context limits, structuring prompts for an agent, or trimming what gets…
Schema design, index strategy, migration safety, and query analysis. TRIGGER when: designing tables or indexes, writing a migration, or diagnosing a slow…