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

# workstream_end

> Abandon a workstream for the whole team

## Overview

Abandon a workstream without landing it. Use when the feature is scrapped. For normal completion call [`workstream_complete`](/mcp/workstream-complete) instead.

## Parameters

| Parameter    | Type   | Required | Description                           |
| ------------ | ------ | -------- | ------------------------------------- |
| `slug`       | string | Yes      | Workstream slug                       |
| `reason`     | string | No       | Why the workstream is being abandoned |
| `session_id` | string | No       | Your current session id               |

## Example

```json theme={null}
{
  "tool": "workstream_end",
  "arguments": {
    "slug": "stripe-subscription-upgrades",
    "reason": "Blocked on Stripe account verification; revisiting Q3."
  }
}
```
