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.
curl -O https://raw.githubusercontent.com/macromania/agentop/main/.github/skills/jotai-state/SKILL.mdgit clone --depth 1 https://github.com/macromania/agentopWrote 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.
[](https://agentmods.dev/skills/macromania/agentop/jotai-state)<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>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.
| Model | Per session | Once 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 |
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.
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);
}
}
)
);
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.
- 7d ago First seen · 576 lines · 67 tokens per session scan A 909630fc467a
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.
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…
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.…
building-ui
Complete guide for building beautiful apps with Expo Router. Covers fundamentals, styling, components, navigation, animations, patterns, and native tabs.
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.
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…
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…