AgentStack
SKILL verified MIT Self-run

Laravel Pulse Monitoring

skill-alizharb-agent-skills-laravel-pulse-monitoring · by AlizHarb

Use when configuring, integrating, or parsing application metrics and performance bottlenecks using Laravel Pulse.

No reviews yet
0 installs
2 views
0.0% view→install

Install

$ agentstack add skill-alizharb-agent-skills-laravel-pulse-monitoring

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Laravel Pulse Monitoring? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Laravel Pulse Performance Monitoring

When To Use

Use this skill when diagnosing slow application routes, resolving database performance issues, tracking cache metrics, or configuring recorders.

Workflow

  1. Verify configuration: Verify config/pulse.php exists.
  2. Setup slow-query threshold: Configure limits for slow queries (e.g. queries taking > 500ms).
  3. Register Custom Recorders: Create and bind custom performance recorders to track application-specific events.
  4. Isolate Dashboard Access: Ensure only authorized administrators can view the /pulse dashboard.

Examples

Good Example

// app/Providers/AppServiceProvider.php
namespace App\Providers;

use Illuminate\Support\Facades\Gate;
use App\Models\User;

class AppServiceProvider extends ServiceProvider
{
    public function boot(): void
    {
        // ✅ Restrict dashboard view access securely
        Gate::define('viewPulse', function (User $user) {
            return $user->is_admin;
        });
    }
}

Bad Example

// ❌ Leaving the pulse route open in production without gates or authentication checks.
Route::get('/pulse', function() {
    return view('pulse'); // VULNERABLE!
});

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.