Borrowing it
Nothing to install: this file belongs to epam/ai-dial-ui-kit. 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/epam/ai-dial-ui-kit/development/AGENTS.mdgit clone --depth 1 https://github.com/epam/ai-dial-ui-kitWrote 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/instructions/epam/ai-dial-ui-kit/agents-md)<a href="https://agentmods.dev/instructions/epam/ai-dial-ui-kit/agents-md"><img src="https://agentmods.dev/badge/instructions/epam/ai-dial-ui-kit/agents-md/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/instructions/epam/ai-dial-ui-kit/agents-md"><img src="https://agentmods.dev/badge/instructions/epam/ai-dial-ui-kit/agents-md.svg" alt="Reviewed on agentmods" width="80" 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.03285 | $0.03285 |
| Opus 5.5 | $0.01314 | $0.01314 |
| Sonnet 5 | $0.00657 | $0.00657 |
| Haiku 4.5 | $0.00329 | $0.00329 |
Grade A, and why
ai-dial-ui-kit AGENTS.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 3d 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 — 223 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AI agents — AI DIAL UI Kit
This file is read by Cursor, Codex, and other agent harnesses alongside project context. It defines how AI assistants should work in this repository.
Product
- What:
@epam/ai-dial-ui-kit— React 19 + TypeScript component library for AI DIAL interfaces. - Build: Vite library mode, Tailwind + SCSS, public API via
src/index.ts. - Docs & dev: Storybook (
npm run storybook), tests with Vitest + Testing Library (npm run test).
Agent principles
- Read before edit — Open related files (component, stories, spec, types,
src/index.ts) before changing behavior or API. - Minimal diffs — Solve the task only; no unrelated refactors or reformatting of untouched code.
- Verify — After substantive changes:
npm run typecheck(full TypeScript check; separate from ESLint),npm run lint,npm run test(and Storybook if UI/stories changed). - Security — Do not commit secrets; do not paste real tokens into chat; treat
.envand keys as sensitive. - Delegation mindset — For large features, split: plan → implement component → stories → tests → export; ask the user if scope is unclear.
Component work checklist
- Naming: Exported components use the
Dial*prefix (e.g.DialButton,DialInput). - Files: Prefer colocating
Component.tsx,Component.stories.tsx,Component.spec.tsxundersrc/components/<Name>/. - API: Extend native HTML/React props where appropriate; export prop types when consumers need them.
- Styles: Tailwind + existing tokens/utilities; keep a11y (labels, roles, keyboard) in mind.
- Barrel: Add public exports to
src/index.ts(andexport typefor types). - Public class: A generation 2.0 component stamps its
DIAL_KIT_CLASSentry on the element that draws it (see Public class names).
When to add or update
| Change | Also do |
|---|---|
| New public component | Storybook story, spec, entry in src/index.ts |
| New public 2.0 component | A DIAL_KIT_CLASS entry stamped on its root, a case in src/constants/public-class-names.spec.tsx, and a row in the README table (see Public class names) |
| Visual / interaction change | Update stories; adjust or add tests |
| New interactive control | Accessible name + target size (see Accessibility rules) |
| Peer dependency surface | Document in README or story descriptions if needed |
| Breaking change | CHANGELOG.md entry + migration guide (see below) |
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.
- 3d ago Changed · +4 lines · +57 tokens per session c9efce1c14d5
- 6d ago First seen · 219 lines · 3,228 tokens per session scan A 843c943536c5
ai-dial-ui-kit AGENTS.md is an instructions file published in the GitHub repository epam/ai-dial-ui-kit (10 stars, last pushed today), licensed Apache-2.0. It adds 3,285 tokens to every session, about $0.0131 per session on Opus 5.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-09-19.
Other instructions, from other repositories
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, repository design references, quickstart — add a new integration in 5 steps and integration architecture.
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, cache eligibility and rollout and applying the notice (cutover).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.