Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/ai/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ keywords:

## AI In Sentry

Looking for Sentry's AI-powered debugging features? Sentry uses AI to help you debug faster with Autofix, fix suggestions, and AI-powered PR reviews. [Learn more about AI In Sentry](/product/ai-in-sentry/).
Looking for Sentry's AI-powered debugging features? Sentry uses AI to help you debug faster with Autofix, fix suggestions, and AI-powered PR reviews. [Learn more about AI In Sentry](/product/ai-in-sentry/), or chat with [Seer Agent](/product/ai-in-sentry/seer/#seer-agent) to start debugging.

<LinkCardGrid>
<LinkCard
Expand Down
5 changes: 3 additions & 2 deletions docs/product/ai-in-sentry/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ Sentry leverages artificial intelligence (AI) and machine learning (ML) to enhan

Use Seer to:

- **[Fix Issues](/product/ai-in-sentry/seer/autofix/)**: Use Autofix to find root causes and generate suggested code fixes for errors and performance issues.
- **[Fix Issues](/product/ai-in-sentry/seer/autofix/)**: Use Autofix to find root causes and generate suggested code fixes for errors and performance issues, or hand off to a [coding agent](/product/ai-in-sentry/seer/#external-coding-agents).
Comment thread
sentry[bot] marked this conversation as resolved.
Outdated
- **[Investigate Problems](/product/ai-in-sentry/seer/#seer-agent)**: Ask Seer Agent questions about your application and Seer Agent will do the digging. Walk through complex production problems with Seer Agent reasoning through evidence in real time.
- **[Review Code Changes](/product/ai-in-sentry/seer/code-review/)**: Have Seer review your code changes in GitHub, catching bugs before merging pull requests.

### Issue Summary
Expand All @@ -29,7 +30,7 @@ Use Seer to:

### Query Assistant

You can ask Seer to query your traces and spans data via natural language queries and find relevant samples of compute metrics without building the whole query manually.
You can ask Seer to query your traces and spans data via natural language queries and find relevant samples of compute metrics without building the whole query manually. Or, if you want to ask wider questions across all data, ask [Seer Agent](/product/ai-in-sentry/seer/#seer-agent).

### AI Summaries

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 22 additions & 2 deletions docs/product/ai-in-sentry/seer/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ Seer provides end-to-end debugging tools to help you troubleshoot and fix errors

- [**Autofix**](#autofix): Automatically scan issues as they come into Sentry, feeding additional context to your alerts and automating triage.
- [**PR Creation**](#pr-creation): Use Autofix to generate a code fix and create a PR.
- [**Coding Agents**](#coding-agents): Delegate Seer's analysis to an external coding agent for debugging and fixes.
- [**Seer Agent**](#seer-agent): Ask any question about your application and Seer Agent finds the right telemetry to answer it.
- [**External Coding Agents**](#external-coding-agents): Delegate Seer's analysis to an external coding agent for debugging and fixes.
- [**Code Review**](#code-review): Have Seer review your code changes in GitHub, catching bugs before merging pull requests.

<Arcade src="https://demo.arcade.software/Qv2KLty5r2aC6jCXkyWN?embed" />
Expand Down Expand Up @@ -55,8 +56,27 @@ Once Autofix has run, Seer will provide remediation recommendations.

You can prompt Seer to generate PRs to fix your issue, and push it to GitHub. You can add more context in natural language, or any external supporting information, to help Seer generate a better PR. **Note:** You must install the [Seer GitHub app](/organization/integrations/source-code-mgmt/github/#installing-the-seer-github-app) to use this feature.

### Coding Agents
### Seer Agent

Seer Agent surfaces relationships among Sentry's complete telemetry to help you debug and get to the root cause of issues. It uses everything you have connected to Sentry, errors, spans, logs, traces, code context, and other data you might never have found manually.

Ask questions about your application and Seer Agent will do the digging. Walk through complex production problems with Seer Agent reasoning through evidence in real time.

Share your conversations with team members, copy your conversation to share with other agents, or revisit previous conversations to continue your investigation.

To get started, click **Ask Seer** on any page in Sentry.

![Screenshot of the Seer Agent =800x](./img/seer-agent-chat.png)

### External Coding Agents
Comment thread
sfanahata marked this conversation as resolved.
Outdated

Seer always performs root cause analysis and solution planning using its own internal tools and Sentry context. At the final code generation step, instead of having Seer generate the code fix directly, you can hand off to an external coding agent for implementation.

Supported coding agents for handoff:

- **Claude Code** — Seer passes the root cause and solution as a structured prompt that Claude Code can act on directly in your terminal or CI environment.
- **Cursor Cloud Agents** — Seer triggers a Cursor Cloud Agent to implement the fix asynchronously, without requiring your local IDE to be open.
- **GitHub Copilot** — Seer opens a GitHub issue or PR with the full context, which Copilot can then pick up and implement.
Comment thread
sfanahata marked this conversation as resolved.
Outdated
You can delegate Seer's Autofix to an external coding agent, such as [Cursor](/organization/integrations/coding-agents/cursor/), for further debugging and fixes.
Comment thread
sfanahata marked this conversation as resolved.
Outdated

### Code Review
Expand Down
Loading