appsignal
Original:🇺🇸 English
Translated
Fetch and analyze AppSignal error incidents. Use when debugging errors, investigating exceptions, or when the user mentions AppSignal, incidents, or error monitoring.
5installs
Sourcerobzolkos/appsignal-cli
Added on
NPX Install
npx skill4agent add robzolkos/appsignal-cli appsignalTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →AppSignal CLI
Use the CLI to fetch error incidents and samples from AppSignal for debugging and analysis.
appsignal-cliPrerequisites
Ensure and environment variables are set, or a config file exists.
APPSIGNAL_TOKENAPPSIGNAL_APP_ID.appsignal-cli.yamlCommon Workflows
Investigate Recent Errors
bash
# List open incidents
appsignal-cli incidents list
# Get details for a specific incident
appsignal-cli incidents get <number>Filter Incidents
bash
# By state: open, closed, wip
appsignal-cli incidents list --state open
# By namespace: web, background, frontend
appsignal-cli incidents list --namespace web
# By date (ISO 8601)
appsignal-cli incidents list --since 2024-01-15
# By minimum occurrences
appsignal-cli incidents list --min-occurrences 10
# Combine filters
appsignal-cli incidents list --namespace background --min-occurrences 5Get Detailed Error Information
bash
# Standard detail view
appsignal-cli incidents get <number>
# With params and session data
appsignal-cli --verbose incidents get <number>
# Export as markdown for analysis
appsignal-cli incidents export <number> -o error-report.mdWork with Error Samples
bash
# List recent error samples
appsignal-cli samples list --limit 10
# Get full sample details (params, session, environment)
appsignal-cli samples get <sample-id>Manage Incidents
bash
# Close a resolved incident
appsignal-cli incidents close <number>
# Reopen if issue recurs
appsignal-cli incidents reopen <number>Output Formats
Use for token-efficient output when analyzing errors:
--compactbash
appsignal-cli --compact incidents list
appsignal-cli --compact incidents get <number>Use for structured data:
--jsonbash
appsignal-cli --json incidents listDebugging Steps
When asked to debug an AppSignal error:
- List incidents to find the relevant error
- Get incident details including backtrace
- Analyze the backtrace to identify the root cause
- Find the relevant code in the codebase
- Propose a fix based on the error context
Available Commands
| Command | Description |
|---|---|
| List all applications |
| List error incidents |
| Get incident details |
| Close an incident |
| Reopen an incident |
| Export to markdown |
| List error samples |
| Get sample details |
| Show current config |
| Initialize config file |
| Set config value |