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
Open Integration Settings
Go to Settings → Integrations → Linear and click "Connect Linear."
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.
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:
> @Linear:PROJ-123 Implement this feature
> Fix all issues in the "Sprint 23" cycle
> What issues are assigned to me?Implement from issue
Paste a Linear issue link and ask Agent to implement it. Agent reads the issue description, acceptance criteria, and comments.
Update issue status
Agent automatically updates the issue status as it works: In Progress when starting, In Review when opening a PR.
Create sub-issues
Agent can break a large Linear issue into sub-issues and implement them one by one.
Link PRs to issues
PRs created by Agent are automatically linked to the corresponding Linear issue.
Automation
With Cloud Agents + Linear, create powerful automations:
# .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.