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/create-powergrid-pluginnpx skills add Power-Components/livewire-powergrid --skill create-powergrid-plugingit 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/create-powergrid-plugin)<a href="https://agentmods.dev/skills/power-components/livewire-powergrid/create-powergrid-plugin"><img src="https://agentmods.dev/badge/skills/power-components/livewire-powergrid/create-powergrid-plugin.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.00031 | $0.00523 |
| Opus 5 | $0.00015 | $0.00262 |
| Sonnet 5 | $0.00006 | $0.00105 |
| Haiku 4.5 | $0.00003 | $0.00052 |
Grade A, and why
create-powergrid-plugin 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 4d 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 — 56 lines — stays where its author put it; the contents beside it link to each section on GitHub.
What I do
Scaffold a complete external PowerGrid plugin in the user's project (NOT in the package).
When to use me
- A new interactive column behavior is needed (e.g., selectable, colorpicker, rating)
- The behavior requires its own Blade view and/or Alpine.js component
- The plugin needs to respond to user interactions via Livewire events
Quick Overview
Plugins are created in the user's project at app/PowerGrid/Plugins/{PluginName}/.
They do NOT require modifying the PowerGrid package.
Files to create:
app/PowerGrid/Plugins/{PluginName}/{PluginName}Plugin.php- Plugin classapp/PowerGrid/Plugins/{PluginName}/index.blade.php- Blade templateapp/PowerGrid/Plugins/{PluginName}/index.js- Alpine.js componentapp/Providers/PowerGridPluginServiceProvider.php- ServiceProvider
Files to modify:
bootstrap/providers.php- Register the ServiceProviderapp/Providers/AppServiceProvider.php- Add plugin toPowerGrid::plugins([...])- User's PowerGrid component - Add column + hook method
Critical Rules
- Create plugins in user's project, never in the powergrid package
- ServiceProvider must call
boot()and register view namespace withloadViewsFrom() - Alpine.js dispatch must use array format:
[field, id, value](NOT object{field, id, value}) - Render initial values server-side with
@foreach/@selected()- do NOT usex-modelfor initial state - Model
$fillablemust include the field being updated - No proxy method needed -
pgPluginListenerin Listeners.php handles routing generically
Workflow
- Gather requirements (plugin name, macro signature, interaction type, hook name)
- Read
REFERENCE.mdin this skill directory for templates and full details - Create the plugin files following the templates
- Register ServiceProvider and plugin
- Add column + hook to user's component
- Verify it works
For complete templates, architecture details, and troubleshooting, see:
REFERENCE.md
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.
- 4d ago First seen · 56 lines · 31 tokens per session scan A 2739266cd660
create-powergrid-plugin is a skill published in the GitHub repository Power-Components/livewire-powergrid (1,693 stars, last pushed yesterday), licensed MIT. It adds 31 tokens to every session and 523 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
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…
pulse-development
Handles Laravel Pulse setup, configuration, and custom card development. Activates when installing Pulse; configuring the dashboard or authorization gate; setting up recorders and filtering; building custom Livewire cards; optimizing with Redis ingest or sampling; or when the user mentions /pulse, pulse:check…
module:assistant
Add an AI assistant chat panel to any Laravel project — with tool calling, streaming, and MCP support.
lerd
Manage the lerd local PHP development environment via MCP tools: run framework console commands (artisan, bin/console, etc.), manage services, start/stop queue workers, run composer, manage Node.js versions, and inspect site status. Also the way to diagnose and optimize a slow site: find N+1 and slow queries, read…