aura-ui AGENTS.md

aura-ui AGENTS.md is an instructions file for Codex, OpenCode from BlueStarSystem/aura-ui. It costs 927 tokens per session, scanned A, original, MIT.

A set of instructions for AI coding agents working with Aura UI, a Laravel component library for building interfaces with Blade, Livewire, Alpine.js, and Tailwind CSS. It explains how to use the library's ready-made interface components and preserve accessibility.

In plain words
What is it for?
It is for building or changing Laravel pages with Aura UI components, including buttons, inputs, modals, badges, dark-mode styling, and Livewire interactions.
Why use it?
It helps agents reuse existing components and follow the project's interface and accessibility rules instead of writing conflicting custom code.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/bluestarsystem/aura-ui/agents-md
Clone the repo
git clone --depth 1 https://github.com/BlueStarSystem/aura-ui

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for aura-ui AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/bluestarsystem/aura-ui/agents-md.svg)](https://agentmods.dev/instructions/bluestarsystem/aura-ui/agents-md)
Your own site
<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>
Per session 927 This file is loaded in full into every session.
When invoked 927 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 3d ago against content hash cc270ecd72d3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

AGENTS.md · 59 lines

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.txt before 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) accept label, hint, error. The error prop wires aria-invalid + aria-describedby automatically — pass it instead of rendering your own error <p>.

Livewire integration

  • Form inputs support wire:model / wire:model.live directly.
  • <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.

Read the full file on GitHub · 59 lines

Changes

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.

  1. 3d ago First seen · 59 lines · 927 tokens per session scan A cc270ecd72d3

Subscribe to this mod's changes

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.

Related

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.

Power-Components/livewire-powergrid · 998 tokens

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.

liberusoftware/real-estate-laravel · 7,195 tokens

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.

liberusoftware/real-estate-laravel · 10,148 tokens

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.

liberusoftware/real-estate-laravel · 7,960 tokens

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/relaticle · 9,396 tokens

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.

relaticle/relaticle · 9,396 tokens