Use when analyzing Laravel Telescope requests from URL and DB. Loads Telescope entries, matches the same request in database tables, and proposes practical optimizations.
Use 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)Suggested SQL patterns (adapt per storage):
SELECT uuid, type, family_hash, content, created_at
FROM telescope_entries
WHERE uuid = :uuid
LIMIT 1;
SELECT te.uuid, te.type, te.created_at, tet.tag
FROM telescope_entries te
LEFT JOIN telescope_entries_tags tet ON tet.entry_uuid = te.uuid
WHERE te.family_hash = :family_hash
ORDER BY te.created_at DESC
LIMIT 200;
SELECT uuid, type, content, created_at
FROM telescope_entries
WHERE type = 'request'
AND created_at BETWEEN :from AND :to
ORDER BY created_at DESC
LIMIT 100;
Notes:
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 this structure:
## Laravel Telescope Analysis Report
### Input
- Telescope URL: ...
- Scope / filters: ...
### Matched request (UI)
- UUID: ...
- Method + URI: ...
- Status: ...
- Duration / memory: ...
- Timestamp: ...
### Matched request (DB)
- Table path used: ...
- Key match criteria: ...
- Query summary: ...
- Confidence of match: High | Medium | Low
### Findings
1. ...
2. ...
### Recommended optimizations
1. Change: ...
- Why: ...
- Expected impact: ...
- Risk: ...
- Verification: ...
### SQL / index notes (if relevant)
- ...
### Limitations
- ...
The skill must:
The skill must not:
@skills/laravel-telescope/SKILL.md Analyze this Telescope URL and find the same request in DB.
@skills/laravel-telescope/SKILL.md Compare Telescope request details with telescope_entries and propose optimizations.
@skills/laravel-telescope/SKILL.md Investigate this slow endpoint from Telescope and produce a practical optimization plan.
A good result from this skill should:
After completing the tasks