skills/laravel-telescope/SKILL.md
Use when analyzing Laravel Telescope requests from URL and DB. Loads Telescope entries, matches the same request in database tables, and proposes practical optimizations.
npx skillsauth add pekral/cursor-rules laravel-telescopeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
@rules/laravel/laravel.mdc, @rules/laravel/architecture.mdc, @rules/laravel/filament.mdc, and @rules/laravel/livewire.mdcUse this skill when you need to investigate a specific Laravel Telescope request, read its runtime data, find the same request directly in the Telescope database tables, and propose actionable optimizations.
The goal is practical diagnosis from real telemetry, not generic performance advice.
Use this skill when the task asks for any of the following:
telescope_entries and related tablesDo not use this skill when:
If Telescope UI or DB access is missing, continue with static analysis and clearly state limitations.
The skill can work with:
The skill should proceed with whatever is available and not block on perfect input.
Follow these steps in order.
Prefer DB-backed verification over UI-only conclusions.
Use Telescope tables and relationships, typically:
telescope_entriestelescope_entries_tagstelescope_monitoring (if used)For suggested SQL patterns, see references/sql-patterns.md.
Confirm that the DB row is the same request shown in UI by matching:
uuidIf correlation is ambiguous, explicitly state what is missing.
Evaluate observed data and highlight concrete problems, for example:
For every recommendation include:
Keep suggestions scoped to observed telemetry, not hypothetical architecture rewrites.
Use the template defined in templates/analysis-report.md.
The skill must:
The skill must not:
A good result from this skill should:
After completing the tasks
development
Use when autonomously resolving the oldest open GitHub issue end-to-end. Picks the oldest open issue (optionally filtered by label, default `Resolve_by_AI`), delegates resolution to `resolve-issue`, then runs `code-review-github`, `process-code-review`, and `merge-github-pr` on the resulting pull request. Stops and reports any blocker (merge conflict, failing CI, unresolved Critical/Moderate findings) instead of force-merging.
testing
Use when performing a focused security review for Laravel/PHP projects. Prioritize real exploitability, business logic flaws, and high-risk vulnerabilities.
testing
Use when resolving an issue from any supported tracker (GitHub, JIRA, Bugsnag). Detects the source automatically from the provided link or ID, implements a safe fix or feature, validates with tests, and creates a pull request.
development
Use when refactoring controller, job, command, listener, or Livewire entry-point logic into a dedicated Action class while preserving behavior and response contracts.