dsh-sentry
Read-only Sentry issue and event tools for DeepSeek Harness.
AI Analysis
核心用途是让智能体能够检索和分析 Sentry 中的报错事件和堆栈信息。适合软件开发人员,便于快速定位线上 Bug。需要配置 Sentry 组织标识及 Auth Token。
Install
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:maxmilian/dsh-sentryREADME
Read the full README ↗Configuration
| Field | Environment variable | Default | Notes |
|---|---|---|---|
baseUrl | SENTRY_URL | https://sentry.io/ | Site root URL. Use https://de.sentry.io/ for the EU region. A trailing /api/0 is stripped automatically. |
token | SENTRY_AUTH_TOKEN | required | User or organization auth token. Never returned or logged. |
org | SENTRY_ORG | required | Organization slug. Fixed for the whole plugin instance. |
locale | — | en | en, zh-TW, zh-CN, or ja. Selects the language of tool and parameter descriptions. |
includeFrameVars | SENTRY_INCLUDE_FRAME_VARS | false | Keep stack frame local variables. Only the literal string true enables it. Agents cannot override this. |
requestTimeoutMs | — | 30000 | Deadline for one whole tool call, including the extra request a short id costs. Range 1–300000. |
maxResponseBytes | — | 5242880 | Hard cap on a single HTTP response body. Range 1–52428800. |
Plugin configuration always wins over environment variables.
export SENTRY_AUTH_TOKEN='your-token'
export SENTRY_ORG='your-org'