Livewire PowerGrid is a Laravel package for creating configurable data tables in web applications. Laravel developers use it for tables with searching, filtering, sorting, editing, bulk actions, pagination, and data export. The catalogue add-ons support work with this package.
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/power-components/livewire-powergrid/powergrid-themenpx skills add Power-Components/livewire-powergrid --skill powergrid-themegit clone --depth 1 https://github.com/Power-Components/livewire-powergridWrote 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/skills/power-components/livewire-powergrid/powergrid-theme)<a href="https://agentmods.dev/skills/power-components/livewire-powergrid/powergrid-theme"><img src="https://agentmods.dev/badge/skills/power-components/livewire-powergrid/powergrid-theme.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.00049 | $0.04430 |
| Opus 5 | $0.00024 | $0.02215 |
| Sonnet 5 | $0.00010 | $0.00886 |
| Haiku 4.5 | $0.00005 | $0.00443 |
Grade A, and why
powergrid-theme 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 today.
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 — 326 lines — stays where its author put it; the contents beside it link to each section on GitHub.
What I do
- Restyle a token with zero code via
config('livewire-powergrid.theme_overrides') - Create a new theme class extending
Themewith per-section token methods (layout(),header(),table(),footer(),cols(),tabs(), plusfilter(),editable(),toggleable()) - Author a data-first theme as a plain array with
ArrayTheme(fromArray()/fromFile()or a subclass) - Update an existing theme by adding or overriding tokens in the relevant section method
- Wire per-component overrides via
customThemeClass()(swap the class) ortemplate()+merge()(patch tokens) - Register a theme by name (
PowerGridManager::registerTheme()) and select it by name in config - Run the theme test suite after changes
When to use me
Use this when:
- A new UI theme needs to be added (e.g. Bootstrap, Flowbite, ShadCN)
- An existing theme's tokens need to be changed or extended
- A few token classes need to change with no theme class at all (config
theme_overrides) - A single PowerGrid component needs a one-off theme override
- Token keys are missing or misnamed and produce empty class output
This skill is only about creating and updating v7 themes. It is self-contained — everything you need is here and in REFERENCE.md (same folder).
How to use me
Example 1: Create a new theme class
Use the 'powergrid-theme' skill to create a new theme for Bootstrap 5.
Theme class: src/Themes/Bootstrap.php
Example 2: Update tokens in an existing theme
Use the 'powergrid-theme' skill to update the DaisyUI theme:
- Change table.layout.thead to use 'bg-neutral text-neutral-content'
- Add a filter.boolean.select override for DaisyUI input sizing
Example 3: No-code override via config
Use the 'powergrid-theme' skill to make table headers bolder for every table
via config('livewire-powergrid.theme_overrides'), without a Theme class.
Example 4: Per-component override
Use the 'powergrid-theme' skill to apply a partial theme override to
MyTableComponent so that table.layout.tr gets an extra 'stripe' class.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- today Changed · +90 lines · +10 tokens per session bf61c5a73c44
- 5d ago First seen · 236 lines · 39 tokens per session scan A 535f9f281211
powergrid-theme is a skill published in the GitHub repository Power-Components/livewire-powergrid (1,693 stars, last pushed today), licensed MIT. It adds 49 tokens to every session and 4,430 once invoked, about $0.0002 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
tailwindcss-development
Always invoke when the user's message includes 'tailwind' in any form. Also invoke for: building responsive grid layouts (multi-column card grids, product grids), flex/grid page structures (dashboards with sidebars, fixed topbars, mobile-toggle navs), styling UI components (cards, tables, navbars, pricing sections…
tailwindcss-development
Always invoke when the user's message includes 'tailwind' in any form. Also invoke for: building responsive grid layouts (multi-column card grids, product grids), flex/grid page structures (dashboards with sidebars, fixed topbars, mobile-toggle navs), styling UI components (cards, tables, navbars, pricing sections…
tailwindcss-development
Always invoke when the user's message includes 'tailwind' in any form. Also invoke for: building responsive grid layouts (multi-column card grids, product grids), flex/grid page structures (dashboards with sidebars, fixed topbars, mobile-toggle navs), styling UI components (cards, tables, navbars, pricing sections…
livewire-development
Use for any task or question involving Livewire. Activate if user mentions Livewire, wire: directives, or Livewire-specific concepts like wire:model, wire:click, wire:sort, or islands, invoke this skill. Covers building new components, debugging reactivity issues, real-time form validation, drag-and-drop, loading…
octane-development
Use this skill when working with Laravel Octane, a long-running PHP worker server (Swoole, FrankenPHP, RoadRunner) where the application boots once and serves many requests instead of rebooting for each request like PHP-FPM. Trigger when installing Octane or starting its server; configuring or detecting the active…
pest-testing
Use this skill for Pest PHP testing in Laravel projects only. Trigger whenever any test is being written, edited, fixed, or refactored — including fixing tests that broke after a code change, adding assertions, converting PHPUnit to Pest, adding datasets, and TDD workflows. Always activate when the user asks how to…