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

# Linear

Link your runs to your Linear Issues for automatic run-issue linking.

With the Linear integration you can easily create links to your linear issues and create references to your Pluto runs within your Linear issues.

<Note>
  The linear integration is currently 'Experimental'. Want to see changes to it. Reach out to us at [founders@trainy.ai](mailto:founders@trainy.ai) or file an issue at our [Github repo](https://github.com/Trainy-ai/pluto).
</Note>

# Setup

Install the Pluto App into your Linear workspace by visiting.

<Frame>
  <img src="https://mintcdn.com/trainy/ITAR95B-im9kW0wp/images/Screenshot2026-02-13at4.06.45PM.png?fit=max&auto=format&n=ITAR95B-im9kW0wp&q=85&s=88a984329ea8c8497e375b65f8d5c4bc" alt="Screenshot 2026 02 13 At 4 06 45 PM" width="2376" height="840" data-path="images/Screenshot2026-02-13at4.06.45PM.png" />
</Frame>

# Tagging Runs to Linear Issues

Issues are associated with issues via tags and follow the naming convention `linear:<LINEAR-ISSUE-ID>` . There are two ways to set tags to link runs to Linear:

* the pluto webUI
* the `pluto` python API

## WebUI tags

In the run comparison section, click on the tag editor. If you type `linear` in the search bar, a dropdown will appear showing the list of linear issues found in your project. Click on the issue you want to

<Frame>
  <img src="https://mintcdn.com/trainy/ITAR95B-im9kW0wp/images/Screenshot2026-02-12at8.26.55PM.png?fit=max&auto=format&n=ITAR95B-im9kW0wp&q=85&s=573d8883750f9523580bd287be281ffb" alt="Screenshot 2026 02 12 At 8 26 55 PM" width="1358" height="640" data-path="images/Screenshot2026-02-12at8.26.55PM.png" />
</Frame>

## Pluto Python API

Tags can be set when calling `pluto.init`

```
import pluto

pluto.init(
	name="gpt4o-vision", 
	project="VLLM", 
	tags=["linear:TRA-1", "v2", "baseline"]
)
```

# Useful Links

## Pluto -> Linear

Tags containing `linear:<LINEAR_ISSUE_ID>` will automatically render in purple as a hyperlink to:

```
https://linear.app/issue/<LINEAR_ISSUE_ID>
```

<Frame>
  <img src="https://mintcdn.com/trainy/ITAR95B-im9kW0wp/images/Screenshot2026-02-13at4.18.42PM.png?fit=max&auto=format&n=ITAR95B-im9kW0wp&q=85&s=0d914fb12a45b9c346684863bb0c5216" alt="Screenshot 2026 02 13 At 4 18 42 PM" title="Screenshot 2026 02 13 At 4 18 42 PM" style={{ width:"36%" }} width="622" height="410" data-path="images/Screenshot2026-02-13at4.18.42PM.png" />
</Frame>

## Linear -> Pluto

When creating/deleting tags to Linear issues, Pluto will create/update a comment within the Linear issue with a table containing all runs that reference the Linear issue as well as a convenience link for viewing the run comparison view with all the runs in the table already selected below.

<Frame>
  <img src="https://mintcdn.com/trainy/ITAR95B-im9kW0wp/images/Screenshot2026-02-13at4.37.33PM.png?fit=max&auto=format&n=ITAR95B-im9kW0wp&q=85&s=d659bbbfab5993bba1f666ac5c948d0e" alt="Screenshot 2026 02 13 At 4 37 33 PM" width="1688" height="1084" data-path="images/Screenshot2026-02-13at4.37.33PM.png" />
</Frame>
