agentop: Skill for Claude Code

.github/skills/jotai-state/SKILL.md

jotai-state is a skill for Claude Code, Codex from macromania/agentop. It costs 67 tokens per session (3,856 once invoked), scanned A, original, MIT.

A guide to managing shared React application data with Jotai, a library that stores state in small units called atoms. It covers shared state, related entity records, calculated values, backend synchronization, and streaming updates.

In plain words
What is it for?
Use it when building global state, maps of tasks or sessions, computed state, backend or IPC synchronization, and live agent-session updates in React.
Why use it?
It gives a structure for keeping data consistent across a React interface without placing all state in one large store. It also addresses updates arriving over time and temporary optimistic changes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is macromania/agentop's own configuration. It tells Claude Code and Codex how to work on agentop itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything agentop configures →

Reuse

Borrowing it

Nothing to install: this file belongs to macromania/agentop. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/macromania/agentop/main/.github/skills/jotai-state/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/macromania/agentop

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for jotai-state

README.md
[![agentmods](https://agentmods.dev/badge/skills/macromania/agentop/jotai-state.svg)](https://agentmods.dev/skills/macromania/agentop/jotai-state)
Your own site
<a href="https://agentmods.dev/skills/macromania/agentop/jotai-state"><img src="https://agentmods.dev/badge/skills/macromania/agentop/jotai-state.svg" alt="Measured on agentmods" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,856 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00067 $0.03856
Opus 5 $0.00034 $0.01928
Sonnet 5 $0.00013 $0.00771
Haiku 4.5 $0.00007 $0.00386

Measured 7d ago against content hash 909630fc467a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

jotai-state scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/skills/jotai-state/SKILL.md · 576 lines

How it starts

The opening of the file, as written. The whole thing — 576 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Jotai Atomic State Management

Fine-grained state management with Jotai atoms, optimized for entity-based data and real-time updates.

When to Use This Skill

  • Setting up global application state
  • Creating entity maps with atomFamily
  • Deriving computed state from base atoms
  • Syncing state with IPC/backend
  • Managing streaming updates from agent sessions
  • Implementing optimistic updates

Atom Architecture

Entity Map Pattern

// src/renderer/state/atoms.ts
import { atom, useAtom } from 'jotai';
import { atomFamily, atomWithStorage } from 'jotai/utils';
import type { Task, Outcome, AgentSession, AgentStep } from '@agentop/core';

// ============================================
// Entity Maps - Core Data Storage
// ============================================

// Tasks map: id -> Task
export const tasksMapAtom = atom<Map<string, Task>>(new Map());

// Outcomes map: id -> Outcome
export const outcomesMapAtom = atom<Map<string, Outcome>>(new Map());

// Sessions map: id -> AgentSession
export const sessionsMapAtom = atom<Map<string, AgentSession>>(new Map());

// Steps map: id -> AgentStep
export const stepsMapAtom = atom<Map<string, AgentStep>>(new Map());

// ============================================
// Atom Families - Individual Entity Access
// ============================================

// Get or create atom for specific task
export const taskAtomFamily = atomFamily((id: string) =>
  atom(
    (get) => get(tasksMapAtom).get(id),
    (get, set, update: Partial<Task>) => {
      const map = new Map(get(tasksMapAtom));
      const existing = map.get(id);
      if (existing) {
        map.set(id, { ...existing, ...update });
        set(tasksMapAtom, map);
      }
    }
  )
);

export const outcomeAtomFamily = atomFamily((id: string) =>
  atom(
    (get) => get(outcomesMapAtom).get(id),
    (get, set, update: Partial<Outcome>) => {
      const map = new Map(get(outcomesMapAtom));
      const existing = map.get(id);
      if (existing) {
        map.set(id, { ...existing, ...update });
        set(outcomesMapAtom, map);
      }
    }
  )
);

export const sessionAtomFamily = atomFamily((id: string) =>
  atom(
    (get) => get(sessionsMapAtom).get(id),
    (get, set, update: Partial<AgentSession>) => {
      const map = new Map(get(sessionsMapAtom));
      const existing = map.get(id);
      if (existing) {
        map.set(id, { ...existing, ...update });
        set(sessionsMapAtom, map);
      }
    }
  )
);

export const stepAtomFamily = atomFamily((id: string) =>
  atom(
    (get) => get(stepsMapAtom).get(id),
    (get, set, update: Partial<AgentStep>) => {
      const map = new Map(get(stepsMapAtom));
      const existing = map.get(id);
      if (existing) {
        map.set(id, { ...existing, ...update });
        set(stepsMapAtom, map);
      }
    }
  )
);

Read the full file on GitHub · 576 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 576 lines · 67 tokens per session scan A 909630fc467a

Subscribe to this mod's changes

jotai-state is a skill published in the GitHub repository macromania/agentop (10 stars, last pushed 5mo ago), licensed MIT. It adds 67 tokens to every session and 3,856 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

langbot-dev

Develop, build, and debug the LangBot core backend and web frontend. Use when working inside the LangBot repository — backend (Python/Quart, src/langbot/pkg), the Vite/React web UI, HTTP API controllers/services, Alembic migrations, or the MCP server. Covers the dev environment (uv, pnpm), repo layout, the API auth…

langbot-app/LangBot · 136 tokens

web-design-engineer

Build or redesign polished browser-rendered visual artifacts with HTML/CSS/JavaScript/React: pages, dashboards, prototypes, slide decks, animations, UI mockups, and data visualizations. Use for visual front-end creation, design-system exploration, design critique, or explicit browser acceptance / QA of a web artifact.…

ConardLi/garden-skills · 96 tokens

building-ui

Complete guide for building beautiful apps with Expo Router. Covers fundamentals, styling, components, navigation, animations, patterns, and native tabs.

Intelligent-Internet/ii-agent · 30 tokens

use-dom

Use Expo DOM components to run web code in a webview on native and as-is on web. Migrate web code to native incrementally.

Intelligent-Internet/ii-agent · 32 tokens

remotion-to-hyperframes

Port an existing Remotion (React) composition to HyperFrames HTML. Use ONLY when the user explicitly asks to port/convert/migrate/translate a Remotion source. Do NOT use: (a) authoring a new HyperFrames composition; (b) Remotion mentioned in passing; (c) Remotion code shared as reference only; (d) "same video as my…

calesthio/OpenMontage · 215 tokens

vercel-react-best-practices

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance…

calesthio/OpenMontage · 67 tokens