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/bluestarsystem/aura-ui/agents-mdgit clone --depth 1 https://github.com/BlueStarSystem/aura-uiWrote 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/bluestarsystem/aura-ui/agents-md)<a href="https://agentmods.dev/instructions/bluestarsystem/aura-ui/agents-md"><img src="https://agentmods.dev/badge/instructions/bluestarsystem/aura-ui/agents-md.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 | $0.00927 | $0.00927 |
| Opus 5 | $0.00464 | $0.00464 |
| Sonnet 5 | $0.00185 | $0.00185 |
| Haiku 4.5 | $0.00093 | $0.00093 |
Grade A, and why
aura-ui 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 — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — Aura UI
Guidance for AI coding agents (Claude Code, Cursor, Copilot, Windsurf, Codex, etc.) using Aura UI in a Laravel project.
What this is
Aura UI is a Blade component library for Laravel 12 + Livewire 3/4 + Alpine.js + Tailwind CSS 4, with a "Vibrant Depth" design language (gradients, glow, glass morphism, dark mode). Free package is MIT; a Pro package and a Filament theme extend it.
- Free:
bluestarsystem/aura-ui - Pro:
bluestarsystem/aura-ui-pro(advanced forms, DataTable traits, kanban, charts, calendar) - Filament theme:
bluestarsystem/aura-filament - Docs (LLM-readable): https://aura-ui.com/llms.txt and
https://aura-ui.com/docs/<page>.md
How to use components
All components are Blade tags namespaced with aura:::
<x-aura::button variant="primary" size="md">Save</x-aura::button>
<x-aura::input label="Email" type="email" wire:model="email" error="{{ $errors->first('email') }}" />
<x-aura::modal name="confirm" title="Delete?">Are you sure?</x-aura::modal>
<x-aura::badge variant="success" pill>Active</x-aura::badge>
Rules:
- Always prefer an existing Aura component over hand-writing Tailwind markup. Check the component list at
https://aura-ui.com/llms.txtbefore building UI from scratch. - Use kebab-case tag names (
<x-aura::file-upload>,<x-aura::date-picker>) and sub-components with dot notation (<x-aura::card.title>,<x-aura::dropdown.item>). - Pass extra HTML/Alpine/Livewire attributes directly — components merge them (
$attributes). E.g.wire:model,x-on:click,id,class. - Form inputs (
input,textarea,select,checkbox,radio,floating-input) acceptlabel,hint,error. Theerrorprop wiresaria-invalid+aria-describedbyautomatically — pass it instead of rendering your own error<p>.
Livewire integration
- Form inputs support
wire:model/wire:model.livedirectly. <x-aura::modal wire:model="showModal">entangles the open state to a Livewire boolean property.- Open/close overlays via browser events:
$dispatch('open-modal', 'name'),$dispatch('close-modal', 'name'),$dispatch('open-drawer', 'name'). - Toasts: fire
$dispatch('auratoast', { type: 'success', message: '...' })from Alpine, or$this->dispatch('auratoast', type: 'success', message: '...')from a Livewire component. Render one<x-aura::toasts />in the layout.
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 First seen · 59 lines · 927 tokens per session scan A cc270ecd72d3
aura-ui AGENTS.md is an instructions file published in the GitHub repository BlueStarSystem/aura-ui (3 stars, last pushed 11d ago), licensed MIT. It adds 927 tokens to every session, about $0.0046 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 instructions, from other repositories
livewire-powergrid CLAUDE.md
Claude Code instructions for Power-Components/livewire-powergrid, covering powergrid 7.x ai guidelines, 1. core principles, 2. architecture & theming, 3. views and 4. server-side actions.
real-estate-laravel CLAUDE.md
Instructions for liberusoftware/real-estate-laravel, covering claude.md, shape of this repository, where a package is edited, commands and a single package's own suite, standalone.
real-estate-laravel AGENTS.md
Instructions for liberusoftware/real-estate-laravel, covering lerd, a local php development environment, architecture, dns modes, mcp tools and key conventions.
real-estate-laravel copilot-instructions.md
Instructions for liberusoftware/real-estate-laravel, covering lerd, a local php development environment, architecture, dns modes, mcp tools and key conventions.
relaticle AGENTS.md
AGENTS.md instructions for relaticle/relaticle, covering architecture, module boundaries (enforced by tests/arch/archtest.php), actions (the write path), i18n enforcement and chat.
relaticle CLAUDE.md
Claude Code instructions for relaticle/relaticle, covering architecture, module boundaries (enforced by tests/arch/archtest.php), actions (the write path), i18n enforcement and chat.