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

# Create issues

> Turn code discussions into tracked issues across GitHub, GitLab, Jira, and Linear directly from CodeRabbit's chat interface.

export const ProPlanBadge = ({tip = "This feature is available as part of the Pro, Pro+ and Enterprise plans. Please refer to our pricing page for more information about our plans and features.", title = "Pro Plan", cta = "Read more", href = "https://coderabbit.ai/pricing", disabled = false}) => {
  return <Tooltip tip={tip} cta={cta} href={href}>
        <Badge icon="shield-check" disabled={disabled || undefined}>
            {title}
        </Badge>
    </Tooltip>;
};

export const AllPlatformsBadge = ({tip = "This feature is available on all supported platforms: GitHub, GitLab, Azure DevOps, and Bitbucket.", title = "All Platforms", cta, href, disabled = false}) => {
  return <Tooltip tip={tip} cta={cta} href={href}>
        <Badge icon="globe" disabled={disabled || undefined}>
            {title}
        </Badge>
    </Tooltip>;
};

<AllPlatformsBadge /> | <ProPlanBadge />

When reviewing code, important issues often surface in discussions but get lost without proper tracking. CodeRabbit bridges this gap by creating issues directly from pull request conversations or chat interactions, ensuring nothing falls through the cracks.

CodeRabbit supports issue creation across GitHub, GitLab, Jira, and Linear. You can create issues naturally through conversations—just mention `@coderabbitai` and describe what needs to be tracked.

## Creating issues through agentic chat

The most straightforward way to create issues is through CodeRabbit's chat interface. During pull request reviews or in comment threads, mention `@coderabbitai` and ask to create an issue. CodeRabbit analyzes the context and creates a well-structured issue with relevant details (code context, discussion history, etc.) for your chosen platform.

<Frame caption="Creating an issue through CodeRabbit's agentic chat interface">
  <img src="https://mintcdn.com/coderabbit/Ohu2ApSi3AllnNTq/assets/images/create-issue.png?fit=max&auto=format&n=Ohu2ApSi3AllnNTq&q=85&s=88c3f844376d55ec02a98385aa306eca" alt="Creating an issue through CodeRabbit's agentic chat interface" width="400" data-path="assets/images/create-issue.png" />
</Frame>

## Supported platforms

<CardGroup cols={1}>
  <Card title="GitHub and GitLab" icon="git-alt" horizontal="true">
    Git-based platform issues work automatically without additional setup.
    CodeRabbit creates issues directly in your repository.
  </Card>
</CardGroup>

<CardGroup cols={2}>
  <Card title="Jira" icon="jira" horizontal="true" href="/integrations/jira">
    Create Jira tickets after configuring the **Jira integration**.
  </Card>

  <Card title="Linear" icon="linear" horizontal="true" href="/integrations/linear">
    Generate Linear issues once you've set up the **Linear integration**.
  </Card>
</CardGroup>

## Best practices

<CardGroup cols={2}>
  <Card title="Provide context" icon="code">
    Include relevant code snippets, error messages, or discussion context when
    requesting issue creation. This helps CodeRabbit generate more detailed and
    actionable issues.
  </Card>

  <Card title="Specify the platform" icon="arrow-pointer">
    If you have multiple issue platforms configured, explicitly mention which one
    to use: "Create a Jira ticket for this" or "Add this to Linear."
  </Card>

  <Card title="Include assignee information" icon="user">
    Mention specific team members who should handle the issue: "Create an issue
    for @username to investigate this performance problem."
  </Card>

  <Card title="Set priority and timing" icon="clock">
    Indicate urgency or deadlines: "Create a high-priority issue for the memory
    leak in checkout flow" or "Add this to the next sprint."
  </Card>
</CardGroup>

For detailed information about configuring issue tracking integrations, see our [Issue Integrations](/integrations/issue-trackers) guide.
