Linear Integration

Connect Vyre to Linear to let Agent read issues, create sub-issues, update statuses, and turn tasks directly into code — all without leaving your IDE.

Connecting Linear

1

Open Integration Settings

Go to Settings → Integrations → Linear and click "Connect Linear."

2

Authorize with Linear

Sign in to your Linear workspace and grant Vyre read/write access to issues. Select which teams' issues Agent should be able to access.

3

Sync projects

After connecting, Vyre syncs your Linear teams and projects. They're available in the Agent sidebar under "Linear."

Working with issues

Once connected, use @Linear in Agent's chat input to reference issues:

code
> @Linear:PROJ-123 Implement this feature
> Fix all issues in the "Sprint 23" cycle
> What issues are assigned to me?

Automation

With Cloud Agents + Linear, create powerful automations:

yaml
# .vyre/automations/linear-implement.yaml
name: Implement Linear issues
trigger:
  event: linear.issue.labeled
  filter:
    label: "ready-to-implement"
    assignee: "@vyre-agent"

agent:
  task: |
    Read the Linear issue and implement the feature.
    Follow our coding standards from .vyre/rules/.
    Open a PR and link it to the issue when done.

Create a "Ready to Implement" label in Linear. When a PM assigns it to @vyre-agent, the automation fires and Agent starts coding automatically.