rollbar-reader
Installation
SKILL.md
Rollbar Reader
Investigate and analyse Rollbar error tracking data using the rollbar CLI (https://github.com/delexw/rollbar-cli).
Inputs
Raw arguments: $ARGUMENTS
Infer from the arguments:
- QUERY: what to investigate. Defaults to last 24 hours if no time range is mentioned.
- SINCE: (optional) UTC ISO8601 start of analysis window. When provided, takes precedence over time derived from QUERY. Convert to epoch seconds for time-based CLI flags:
date -d "<SINCE>" +%s(Linux) ordate -jf "%Y-%m-%dT%H:%M:%SZ" "<SINCE>" +%s(macOS). - UNTIL: (optional) UTC ISO8601 end of analysis window. When provided, takes precedence over time derived from QUERY. Convert to epoch seconds the same way.
- TITLE_HINT: (optional) Incident title keywords to use in error item search queries (e.g. the PD incident title).
- ENV: (optional) Environment to filter by (e.g.
production,staging). Infer from QUERY context (e.g. "in production" →production, "staging issue" →staging). If not mentioned and cannot be inferred, omit the filter. - OUT_DIR: output directory for temp assets, or
.rollbar-reader-tmp/if not provided - TZ_DISPLAY: (optional) Timezone abbreviation for report display (e.g. the output of
date +"%Z"on the calling machine). When provided, use this for all report timestamps instead of detecting via system clock.