> ## Documentation Index
> Fetch the complete documentation index at: https://claudescope.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Integrations and Workflow Connections

> Connect Claude Scope to GitHub, Slack, and custom webhook endpoints to bring recording sessions into your existing development workflow.

Claude Scope is designed to fit into the tools you already use. The Integrations page lists planned connections to external services so you can route recording output directly into your development workflow without switching context.

To open the Integrations page, go to your workspace and click **Integrations** in the left sidebar.

<Note>
  All integrations listed below are currently in development. Each one shows a **Coming soon** status. No configuration is available yet — this page will update as integrations ship.
</Note>

## Planned integrations

<CardGroup cols={3}>
  <Card title="GitHub" icon="github" href="/api/overview">
    Automatically create a GitHub issue from a completed recording session. The issue includes the session summary, frame count, and a link back to the Claude Scope output.
  </Card>

  <Card title="Slack" icon="slack" href="/api/overview">
    Post a session summary to a Slack channel when a recording finishes processing. Useful for keeping a team channel updated with UI changes being investigated.
  </Card>

  <Card title="Webhooks" icon="webhook" href="/api/overview">
    Send HTTP POST payloads to your own endpoint for any processing event — session created, processing complete, or error. Use webhooks to trigger your own automation.
  </Card>
</CardGroup>

## Webhook event types

When the Webhooks integration ships, it will emit events for the following lifecycle moments:

| Event              | Triggered when                                                |
| ------------------ | ------------------------------------------------------------- |
| `session.created`  | A new recording session is created and queued for processing. |
| `session.complete` | Analysis finishes and the generated prompt is ready.          |
| `session.error`    | Processing fails for any reason.                              |

<Info>
  Until native integrations are available, you can connect Claude Scope to your own tools using the REST API. The API gives you programmatic access to sessions, recordings, and generated output. See the [API overview](/api/overview) to get started.
</Info>
