# Laravel Pulse Monitoring

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

- **Type:** Skill
- **Install:** `agentstack add skill-alizharb-agent-skills-laravel-pulse-monitoring`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [AlizHarb](https://agentstack.voostack.com/s/alizharb)
- **Installs:** 0
- **Category:** [Data & Analytics](https://agentstack.voostack.com/c/data-and-analytics)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [AlizHarb](https://github.com/AlizHarb)
- **Source:** https://github.com/AlizHarb/agent-skills/tree/main/resources/boost/skills/laravel-pulse-monitoring

## Install

```sh
agentstack add skill-alizharb-agent-skills-laravel-pulse-monitoring
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## 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

```php
// 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

```php
// ❌ 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.

- **Author:** [AlizHarb](https://github.com/AlizHarb)
- **Source:** [AlizHarb/agent-skills](https://github.com/AlizHarb/agent-skills)
- **License:** MIT

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

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-alizharb-agent-skills-laravel-pulse-monitoring
- Seller: https://agentstack.voostack.com/s/alizharb
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
