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 instructions/ui5/webcomponents-react/claude-mdgit clone --depth 1 https://github.com/UI5/webcomponents-reactWhat 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.03139 | $0.03139 |
| Opus 5 | $0.01570 | $0.01570 |
| Sonnet 5 | $0.00628 | $0.00628 |
| Haiku 4.5 | $0.00314 | $0.00314 |
Grade A, and why
webcomponents-react CLAUDE.md 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 yesterday.
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 — 413 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code when working with code in this repository.
Overview
UI5 Web Components for React is a React wrapper library for SAP's UI5 Web Components. It provides Fiori-compliant React components by wrapping native UI5 Web Components with React-specific implementations. The project is a monorepo managed with Lerna and Yarn workspaces.
Critical: Working with Web Components
Event Handling (MUST KNOW)
Web components emit CustomEvents with data in the detail property:
// ❌ WRONG - won't work with web components
const handleChange = (e) => {
console.log(e.selectedOption); // undefined!
console.log(e.value); // undefined!
};
// ✅ CORRECT - access via e.detail
const handleChange = (e) => {
console.log(e.detail.selectedOption);
console.log(e.detail.value);
};
For enriching events with additional data (internal use):
import { enrichEventWithDetails } from '@ui5/webcomponents-react-base/internal/utils';
onLoadMore(enrichEventWithDetails(e, { rowCount, totalRowCount }));
Controlled Components (MUST KNOW)
UI5 Web Components update internal state before firing events. For fully controlled components, call e.preventDefault() in the handler to prevent internal state updates (e.g., Input.onInput, CheckBox.onChange, Select.onChange, Dialog.onBeforeClose).
Ref Handling (MUST KNOW)
When a component needs both a forwarded ref and internal access to the same DOM node, use useSyncRef() instead of useRef():
import { useSyncRef } from '@ui5/webcomponents-react-base/internal/hooks';
const MyComponent = forwardRef((props, ref) => {
const [componentRef, internalRef] = useSyncRef(ref);
useEffect(() => {
// internalRef gives stable access to the DOM node inside the component
internalRef.current?.focus();
}, []);
// componentRef is passed to the DOM element so both the forwarded ref and internalRef stay in sync
return <div ref={componentRef} />;
});
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.
- yesterday First seen · 413 lines · 3,139 tokens per session scan A 4ce64e3a17d2
webcomponents-react CLAUDE.md is an instructions file published in the GitHub repository UI5/webcomponents-react (539 stars, last pushed yesterday), licensed Apache-2.0. It adds 3,139 tokens to every session, about $0.0157 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 instructions, from other repositories
ui-components AGENTS.md
Instructions for starc007/ui-components, covering beui v2 — agent guide, commands, layout, component catalog and components (motion category — primitives).
storefront AGENTS.md
AGENTS.md instructions for saleor/storefront, covering saleor paper — agent guide (always-on), how to get context (read in this order; stop when answered), precedence, critical commands and non-negotiable rules.
ui-components CLAUDE.md
Instructions for starc007/ui-components, a project described as: Motion components for React. Copy, paste, done.
magicui AGENTS.md
Instructions for magicuidesign/magicui, covering project context, key principles, before writing code, rules and accessibility (a11y).
core CLAUDE.md
Claude Code instructions for module-federation/core, covering claude task parallelization & development guidelines, core principles, maximum parallelization strategy, universal parallel task patterns and for any codebase task.
orval AGENTS.md
AGENTS.md instructions for orval-labs/orval, covering using vite+, the unified toolchain for the web, built-in commands vs scripts, tool versions and review checklist.