laravel-reverb

laravel-reverb is a skill for Claude Code, Codex from event4u-app/agent-config. It costs 31 tokens per session (1,597 once invoked), scanned A, original, MIT.

A setup guide for Laravel Reverb, Laravel’s own server for sending live updates over WebSockets, a technology that keeps a browser connection open for instant messages.

In plain words
What is it for?
It supports installing, configuring, deploying, scaling, debugging, and monitoring Reverb in Laravel applications.
Why use it?
It helps developers configure Reverb correctly instead of piecing together server, client, and deployment settings.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It supports installing, configuring, deploying, scaling, debugging, and monitoring Reverb in Laravel applications.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/event4u-app/agent-config/laravel-reverb
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.

Any agent
npx skills add event4u-app/agent-config --skill laravel-reverb
Clone the repo
git clone --depth 1 https://github.com/event4u-app/agent-config

Made for: Claude Code, Codex.

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 laravel-reverb

README.md
[![agentmods](https://agentmods.dev/badge/skills/event4u-app/agent-config/laravel-reverb/github.svg)](https://agentmods.dev/skills/event4u-app/agent-config/laravel-reverb)
Your own site
<a href="https://agentmods.dev/skills/event4u-app/agent-config/laravel-reverb"><img src="https://agentmods.dev/badge/skills/event4u-app/agent-config/laravel-reverb/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for laravel-reverb

Your own site · 80×15
<a href="https://agentmods.dev/skills/event4u-app/agent-config/laravel-reverb"><img src="https://agentmods.dev/badge/skills/event4u-app/agent-config/laravel-reverb.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,597 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00031 $0.01597
Opus 5 $0.00015 $0.00798
Sonnet 5 $0.00006 $0.00319
Haiku 4.5 $0.00003 $0.00160

Measured 8d ago against content hash 24dd6321b23c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

laravel-reverb 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 8d 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.

src/skills/laravel-reverb/SKILL.md · 217 lines

How it starts

The opening of the file, as written. The whole thing — 217 lines — stays where its author put it; the contents beside it link to each section on GitHub.

laravel-reverb

When to use

Use this skill for anything specific to Laravel Reverb as the WebSocket server:

  • Reverb installation, configuration, and environment setup
  • Reverb server deployment and scaling
  • Reverb-specific debugging and monitoring
  • Pusher protocol compatibility questions

For general WebSocket patterns, broadcasting events, channel authorization, and Laravel Echo client setup, see the laravel-websocket skill.

Procedure: Set up Reverb

  1. Inspect current broadcasting — Check config/broadcasting.php, .env, and composer.json for Pusher / Reverb / Soketi presence and current driver.
  2. Installphp artisan install:broadcasting or manual setup (see below).
  3. Configure — Set environment variables for Reverb host, port, app credentials.
  4. Start serverphp artisan reverb:start.
  5. Connect client — Configure Laravel Echo with Reverb credentials.
  6. Verify — Confirm WebSocket connection in browser console, test event delivery.

Laravel Reverb is Laravel's first-party, blazing-fast WebSocket server. It uses the Pusher protocol, making it compatible with Laravel Echo and any Pusher-compatible client. A single Reverb server can handle thousands of concurrent connections.

Installation

php artisan install:broadcasting

This scaffolds:

  • config/broadcasting.php with Reverb driver
  • config/reverb.php with server settings
  • routes/channels.php for channel authorization
  • .env variables for Reverb

Configuration

Environment variables

REVERB_APP_ID=455493
REVERB_APP_KEY=your-app-key
REVERB_APP_SECRET=your-app-secret
REVERB_HOST="localhost"
REVERB_PORT=8080
REVERB_SCHEME=http

# Client-side (Vite)
VITE_REVERB_APP_KEY="${REVERB_APP_KEY}"
VITE_REVERB_HOST="${REVERB_HOST}"
VITE_REVERB_PORT="${REVERB_PORT}"
VITE_REVERB_SCHEME="${REVERB_SCHEME}"

config/reverb.php

Note: REVERB_HOST / REVERB_PORT are for client connections (hostname/port the client connects to). REVERB_SERVER_HOST / REVERB_SERVER_PORT are for the server binding (interface/port the server listens on).

Read the full file on GitHub · 217 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. 8d ago First seen · 217 lines · 31 tokens per session scan A 24dd6321b23c

Subscribe to this mod's changes

laravel-reverb is a skill published in the GitHub repository event4u-app/agent-config (10 stars, last pushed today), licensed MIT. It adds 31 tokens to every session and 1,597 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-09-03.