Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion apps/webapp/app/services/agent/agent-context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@ export async function buildAgentContext({

// Task context (when conversation was created from a task)
if (linkedTask) {
const isExecuting = linkedTask.status === "InProgress" || linkedTask.status === "Todo";
const isExecuting =
linkedTask.status === "InProgress" || linkedTask.status === "Todo";

if (isExecuting) {
// Execution mode — mirrors <action_plan> pattern that CASE follows correctly
Expand Down
41 changes: 41 additions & 0 deletions integrations/sentry/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Sentry Integration for CORE

Connect your Sentry organization to CORE to track errors, manage issues, monitor releases, and stay on top of application health.

## Setup

1. Go to **Sentry → Settings → Auth Tokens** and create a new token with at minimum:
- `org:read`
- `project:read`
- `issue:read`
- `issue:write` (optional, for resolving/assigning issues)
2. Connect the integration in CORE with your auth token and Sentry host URL.

## Features

- **Activity sync** (every 30 min): New issues are surfaced as activities in your workspace.
- **MCP Tools**: Query issues, projects, releases, teams, and members directly from CORE.

## Available Tools

| Tool | Description |
|------|-------------|
| `sentry_list_issues` | List issues with optional query/project filter |
| `sentry_get_issue` | Get a specific issue by ID |
| `sentry_update_issue` | Resolve, ignore, or reassign an issue |
| `sentry_list_events` | List individual error events for an issue |
| `sentry_list_projects` | List all projects in the org |
| `sentry_get_project` | Get a specific project by slug |
| `sentry_list_releases` | List releases, optionally filtered by project |
| `sentry_get_release` | Get a specific release by version |
| `sentry_list_teams` | List all teams in the org |
| `sentry_get_organization` | Get organization details |
| `sentry_list_members` | List organization members |

## Environment Variables (for local development)

```
SENTRY_AUTH_TOKEN=sntrys_xxxxxxxxxxxx
SENTRY_HOST=https://sentry.io
SENTRY_ORG_SLUG=my-org
```
Loading