redash
1
总安装量
1
周安装量
#41726
全站排名
安装命令
npx skills add https://github.com/jwmossmoz/agent-skills --skill redash
Agent 安装分布
amp
1
opencode
1
kimi-cli
1
codex
1
claude-code
1
Skill 文档
Redash Query Tool
Query Mozilla’s Redash (sql.telemetry.mozilla.org) for telemetry data. Redash is the front-end to BigQuery telemetry data.
Knowledge References
@references/README.md @references/fxci-schema.md
Prerequisites
REDASH_API_KEYenvironment variable setuvfor running the script
Quick Start
# Run custom SQL
uv run scripts/query_redash.py --sql "SELECT * FROM telemetry.main LIMIT 10"
# Fetch cached results from an existing Redash query
uv run scripts/query_redash.py --query-id 65967
# Save results to file
uv run scripts/query_redash.py --sql "SELECT 1" --output ~/moz_artifacts/data.json
Usage
Either --sql or --query-id is required.
| Flag | Description |
|---|---|
--sql |
SQL query to execute against BigQuery via Redash |
--query-id |
Fetch cached results from an existing Redash query ID |
--output, -o |
Save results to JSON file |
--format, -f |
Output format: json, csv, table (default: table) |
--limit |
Limit number of rows displayed |
Common Queries
@references/common-queries.md