Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/chaxus/ran/ranuinpx skills add chaxus/ran --skill ranuigit clone --depth 1 https://github.com/chaxus/ranWhat 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 | $0.00087 | $0.02096 |
| Opus 5 | $0.00044 | $0.01048 |
| Sonnet 5 | $0.00017 | $0.00419 |
| Haiku 4.5 | $0.00009 | $0.00210 |
Grade A, and why
ranui 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 2d 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 — 162 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ranui — web component library
Framework-agnostic Web Components (Custom Elements + Shadow DOM). Works in React,
Vue, Svelte, Solid, or plain JS. Each element is <r-*> and is used like native HTML.
Styling crosses the shadow boundary via CSS variables, ::part(), or the
per-instance sheet attribute (escape hatch).
Authoritative reference (read these for exact APIs — don't guess)
When ranui is installed in a project, its docs ship inside the package:
node_modules/ranui/docs/COMPONENTS.md— generated per-element API: every element's attributes, typed properties, events (withdetailshape), slots, and::part()names. This is the source of truth for props/events. Regenerated in the source repo vianpm run doc:api.node_modules/ranui/docs/DESIGN.md— design system rules (color states, spacing, motion, accessibility §7, pre-ship checklist).node_modules/ranui/docs/style-tokens-public.md— the CSS variable (theming token) catalog.
In the source repo (packages/ranui) there is also a deep CLAUDE.md (architecture,
builder internals, LESS conventions, testing) — not shipped in the npm package.
Import map
Per-component, tree-shakeable side-effect imports register the custom element:
import 'ranui/button'; // then use <r-button>
import 'ranui/modal';
import 'ranui/select';
import 'ranui/input';
import 'ranui/message'; // also exposes an imperative message API
import 'ranui/checkbox';
Available element subpaths: button icon image input message skeleton tab tabpane radar modal select progress player popover dropdown content loading colorpicker math checkbox card router route link.
The fluent DOM builder + reactivity (no custom-element registration):
import { Div, View, Span, Label, ButtonBuilder, signal, createEffect, EventManager, Style } from 'ranui/builder';
SSR helpers: import { defineSSR } from 'ranui/ssr-registry' (source) / ranui/ssr,
ranui/ssr-stream. Types: ranui/typings.
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.
- 2d ago First seen · 162 lines · 87 tokens per session scan A 7988f9fb1d14
ranui is a skill published in the GitHub repository chaxus/ran (272 stars, last pushed 6d ago), licensed MIT. It adds 87 tokens to every session and 2,096 once invoked, about $0.0004 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-30.
Other skills, from other repositories
magic-ui
Use this skill when users want to add, customize, or troubleshoot Magic UI components in React/Next.js projects. It covers component selection, shadcn registry installation (@magicui/), integration patterns, and practical quality checks for accessibility and maintainability.
beui
Pick and install beUI (@beui) animated React components from the shadcn registry. Use when building motion UI, agent/chat interfaces, toasts, docks, bottom sheets, drawers, popovers, sliders, loaders, 404 pages, or any beui.dev component. Maps user intent to exact @beui install slugs instead of inventing custom…
beui-pro
Choose, inspect, install, and compose licensed beUI Pro premium React blocks from the authenticated shadcn registry. Use when building or improving landing pages with beUI Pro, installing @beui-pro items, selecting premium heroes, features, pricing, social proof, CTAs, navigation, footers, or other page sections, or…
analytical-table
Use ALWAYS for AnalyticalTable internals — react-table v7 plugin architecture, vendored react-table code at packages/main/src/components/AnalyticalTable/react-table/, tableHooks, AnalyticalTableHooks, useDynamicColumnWidths, useColumnResizing, useRowSelect, useF2CellEdit, useManualRowSelect…
ui5wc-upgrade
Guide a complete UI5 Web Components version upgrade in the ui5-webcomponents-react monorepo. Updates root and peer dependencies, regenerates wrapper components, syncs theming parameters, updates version-info, detects new components and breaking changes, and verifies the build. Use when a new @ui5/webcomponents version…
onejs-setup-and-overview
Use this skill whenever the user wants to build or set up user interface in a Unity project using OneJS, React, TypeScript, or JSX, e.g. 'add a main menu to my game', 'build a settings screen', 'make a HUD', 'set up OneJS', 'my OneJS panel is blank', 'the UI is not hot reloading'. Covers confirming OneJS is installed…