AI Agent Hub
Back to plugins
🧰

dsh-sentry

Web Tools Updated 2026.08.26

Run the following command in DeepSeek Harness:

dsh plugin install maxmilian/dsh-sentry

Paste the following prompt into your AI chat to install this plugin:

Run the install command in DeepSeek Harness to add the dsh-sentry plugin from https://github.com/maxmilian/dsh-sentry and start using its read-only Sentry tools.

About this plugin

A raw Sentry event routinely runs 200 KB to 2 MB. Feeding that directly to an agent blows the context window and leaks request headers, cookies, user emails, and build paths. dsh-sentry exists to close that gap: deliver the stack frames and source lines an agent actually needs for debugging while stripping secrets and noise.

Five read-only tools cover the essential paths — list projects, search issues, read an issue, read its latest event, read a specific event. Every call is a plain HTTP GET; nothing in Sentry is ever resolved, assigned, or archived. The trimming engine prioritises in-app frames and source context (capped at 11 lines, 200 chars each), drops mechanism data, PII, secret-looking tags, and absolute paths, then degrades in fixed steps if the result still exceeds the 200 KB budget, reporting exactly what was cut in meta.trimmed.

Built for teams wiring DeepSeek Harness into Sentry for backend triage, SRE runbooks, or any agent-assisted debugging workflow. A single sntryu_ read-only token plus baseUrl, token, and org configuration is all it takes. Works against Sentry SaaS (US and EU regions) and self-hosted instances.

Use Cases

  • Agent auto-fetches trimmed stacktraces and source lines when triaging production errors
  • SREs let an agent search issues by query and pull the critical in-app frames
  • Agent walks each level of a chained exception to read source context across services

Best For

  • Backend teams integrating Sentry into DeepSeek Harness agent workflows
  • SRE and DevOps engineers who let AI agents assist in production triage
  • Platform engineers who need agents to read events without exposing PII or secrets