flare
Manage Flare error tracking and performance monitoring using the flare CLI. Use when the user wants to list, triage, resolve, snooze, or debug errors; manage projects; create projects and retrieve API keys; check error counts; investigate slow routes, queries, jobs, or commands; view aggregated performance data and traces; or interact with flareapp.io from the command line.
What this skill does
# Flare CLI The `flare` CLI lets you manage [Flare](https://flareapp.io) error tracking and performance monitoring from the terminal. Every Flare API endpoint has a corresponding command. ## Prerequisites Check that the CLI is installed: ```bash flare --version ``` If not installed: ```bash composer global require spatie/flare-cli ``` Ensure Composer's global bin directory is in `PATH`: ```bash composer global config bin-dir --absolute ``` ## Authentication ```bash # Log in — you'll be prompted for your API token flare login # Log out flare logout ``` Get your API token at https://flareapp.io/settings/api-tokens. If any command returns a 401 error, the token is invalid or expired. Run `flare login` again. ## Quick command reference All commands output JSON. See [references/commands.md](references/commands.md) for full parameter details. ### User & team ```bash # Who am I? flare get-authenticated-user # Get team details (includes members and roles) flare get-team --team-id=1 # Remove a user from a team flare remove-team-user --team-id=1 --user-id=42 ``` ### Projects ```bash # List all projects (paginated) flare list-projects # Filter by name or team flare list-projects --filter-name="My App" --filter-team-id=1 # Include team info flare list-projects --include=team # Create a project flare create-project --field name="My App" --field team_id=1 --field stage=production --field technology=Laravel # Delete a project flare delete-project --project-id=123 ``` ### Errors ```bash # List errors for a project flare list-project-errors --project-id=123 # Filter by status, class, file, stage, or level flare list-project-errors --project-id=123 --filter-status=open --filter-exception-class=RuntimeException # Sort by most recent flare list-project-errors --project-id=123 --sort=-last_seen_at # Get error counts for a date range flare get-project-error-count --project-id=123 --start-date="2025-01-01 00:00:00" --end-date="2025-01-31 23:59:59" # Get occurrence counts for a date range flare get-project-error-occurrence-count --project-id=123 --start-date="2025-01-01 00:00:00" --end-date="2025-01-31 23:59:59" ``` ### Error actions ```bash # Resolve an error flare resolve-error --error-id=456 # Reopen a resolved error flare unresolve-error --error-id=456 # Snooze forever flare snooze-error --error-id=456 --field snooze_type=snooze_forever # Snooze until a date flare snooze-error --error-id=456 --field snooze_type=snooze_until --field snooze_until=2025-06-01T00:00:00Z # Snooze for N more occurrences flare snooze-error --error-id=456 --field snooze_type=snooze_number_of_occurrences --field snooze_number_of_occurrences=50 # Unsnooze flare unsnooze-error --error-id=456 ``` ### Occurrences ```bash # List occurrences for an error (includes frames, attributes, events, solutions) flare list-error-occurrences --error-id=456 # Sort oldest first flare list-error-occurrences --error-id=456 --sort=received_at # Get a single occurrence by ID flare get-error-occurrence --occurrence-id=789 ``` ### Performance monitoring The `--type` parameter accepts: `routes`, `queries`, `jobs`, `commands`, `external-http`, `views`, `livewire-components`. The `--filter-interval` parameter accepts: `1h`, `3h`, `6h`, `24h` (default), `48h`, `7d`, `14d`. ```bash # Get a performance summary for a project (metrics + trends + top-10 slowest) flare get-monitoring-summary --project-id=123 # List aggregated performance data for routes (paginated, sortable, filterable) flare list-monitoring-aggregations --project-id=123 --type=routes --sort=-p95 # Filter aggregations — the operator is encoded in the parameter name (e.g. p95:>=), pass only the value flare list-monitoring-aggregations --project-id=123 --type=queries --filter-p95=500 # Get time series data for a monitoring type flare get-monitoring-time-series --project-id=123 --type=routes --filter-interval=7d # Get details for a specific aggregation (e.g. a single route or query) flare get-monitoring-aggregation --type=routes --uuid=<uuid> --include=parents,children # List traces for an aggregation (slowest first by default) flare list-aggregation-traces --type=routes --uuid=<uuid> --sort=slowest # Get a full trace with span tree, events, resources, and contexts flare get-trace --trace-id=<trace-id> ``` ### Pagination All list commands support pagination: ```bash flare list-project-errors --project-id=123 --page-number=2 --page-size=20 ``` Response includes `meta` (current_page, total, last_page) and `links` (next/prev URLs). ## Common workflows ### Error triage List open errors, categorize by exception class, resolve or snooze in batches. See [references/workflows.md](references/workflows.md) for the full triage workflow. Quick version: ```bash # 1. List open errors sorted by most recent flare list-project-errors --project-id=123 --filter-status=open --sort=-last_seen_at # 2. Review each error, resolve fixed ones flare resolve-error --error-id=456 # 3. Snooze noisy but non-critical errors flare snooze-error --error-id=789 --field snooze_type=snooze_forever ``` ### Debug an error with local code Fetch an occurrence, find application frames, then read the corresponding local files. See [references/workflows.md](references/workflows.md) for detailed steps. Quick version: ```bash # 1. Get the latest occurrence flare list-error-occurrences --error-id=456 --sort=-received_at --page-size=1 # 2. Look at the frames where application_frame=true # 3. Read the local file at the reported line number # 4. Check attributes for request context, events for log trail, solutions for fixes ``` ### Investigate slow performance Get a performance overview, drill into slow aggregations, and inspect individual traces. See [references/workflows.md](references/workflows.md) for the full workflow. Quick version: ```bash # 1. Get the performance summary flare get-monitoring-summary --project-id=123 --filter-interval=24h # 2. List the slowest routes by p95 flare list-monitoring-aggregations --project-id=123 --type=routes --sort=-p95 # 3. Get details on a specific slow route flare get-monitoring-aggregation --type=routes --uuid=<uuid> --include=children # 4. List traces for that route, slowest first flare list-aggregation-traces --type=routes --uuid=<uuid> # 5. Inspect the slowest trace flare get-trace --trace-id=<trace-id> ``` ### Create a project and get API keys Create a project via CLI, retrieve API keys, and verify errors are flowing. See [references/workflows.md](references/workflows.md) for the step-by-step guide. ## Output format All commands return JSON. When presenting results to the user: - **Errors**: Show as a table with columns: ID, exception class, message (truncated), status, occurrence count, last seen. Always include the `latest_occurrence_url_on_flare` link. - **Occurrences**: Highlight application frames (where `application_frame` is `true`) — these are the user's code, not vendor code. Show the `relative_file` and `line_number`. - **Solutions**: If `solutions` is non-empty, always present them prominently — they contain actionable fix suggestions. - **Attributes**: Group by the `group` field (e.g., request, user, environment) when displaying context. - **Events**: Show chronologically — they represent the execution trail leading to the error (queries, logs, jobs, etc.). - **Flare URLs**: Include `latest_occurrence_url_on_flare` so the user can view the full error in the Flare dashboard. - **Monitoring aggregations**: Show as a table with columns: name/label, p95, average, count, error rate. Highlight aggregations with high p95 or error rate. - **Traces**: Show the span tree hierarchically. Highlight spans with the longest duration — these are the bottlenecks.
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.