Boost
Wire Boost
AI tooling for the Wire ecosystem — an MCP server, AI guidelines, and agent skills.
On this page
Wire Boost is the wireStack equivalent of Laravel Boost. It helps AI coding agents (Claude Code, Cursor, Codex, Gemini CLI, GitHub Copilot, Junie) write high-quality applications with wire-core, wire-forms, wire-table and wire-sortable.
It ships three things:
- An MCP server — introspection tools an agent can call to inspect your wire tables, forms, infolists, the available component vocabulary, icons, config, and documentation. See MCP Server & Tools.
- AI guidelines — concise, always-loaded context describing wireStack conventions and APIs.
- Agent Skills — on-demand knowledge modules for table, form, core, and sortable development.
See Guidelines & Skills for the AI-context layer.
Why
wireStack uses fluent, Nova/Filament-style builders (TextColumn::make('name')->sortable()). An agent
that knows the available types, their fluent methods, and the components already present in your app
writes correct code on the first try instead of guessing. Wire Boost gives the agent that knowledge —
both upfront (guidelines/skills) and on demand (MCP tools).
Quick start
composer require nyoncode/wire-boost --devphp artisan wire-boost:install
wire-boost:install configures the agents you select: it registers the MCP server, merges the wireStack
guidelines into the agent's guideline file, and installs the skills. See Installation.
At a glance
| Capability | Entry point |
|---|---|
| Inspect tables / forms / infolists | describe-table, describe-form, describe-infolist |
| Discover component types & APIs | list-component-types, describe-component-api |
| Find existing wire components | list-wire-components |
| Search the wire docs corpus | search-wire-docs |
| App & config introspection | application-info, wire-config, list-icons |
| General Laravel parity tools | database-schema, list-routes, last-error, … |