# Send Linearis to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "linearis",
    "name": "Linearis",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/whoisnnamdi/linearis",
    "canonicalUrl": "https://clawhub.ai/whoisnnamdi/linearis",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/linearis",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=linearis",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "linearis",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T23:25:17.028Z",
      "expiresAt": "2026-05-11T23:25:17.028Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=linearis",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=linearis",
        "contentDisposition": "attachment; filename=\"linearis-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "linearis"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/linearis"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/linearis",
    "downloadUrl": "https://openagent3.xyz/downloads/linearis",
    "agentUrl": "https://openagent3.xyz/skills/linearis/agent",
    "manifestUrl": "https://openagent3.xyz/skills/linearis/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/linearis/agent.md"
  }
}
```
## Documentation

### linearis

CLI for Linear.app with JSON output, designed for LLM agents.

### Setup

npm install -g linearis

Auth (one of):

echo "lin_api_..." > ~/.linear_api_token (recommended)
export LINEAR_API_TOKEN="lin_api_..."
--api-token <token> flag

Get API key: Linear Settings → Security & Access → Personal API keys

### Issues

linearis issues list -l 20              # List recent issues
linearis issues list -l 10 --team WHO   # Filter by team
linearis issues search "bug"            # Full-text search
linearis issues read ABC-123            # Get issue details
linearis issues create --title "Fix bug" --team WHO --priority 2
linearis issues update ABC-123 --status "Done"
linearis issues update ABC-123 --title "New title" --assignee user123
linearis issues update ABC-123 --labels "Bug,Critical" --label-by adding
linearis issues update ABC-123 --parent-ticket EPIC-100  # Set parent

### Comments

linearis comments create ABC-123 --body "Fixed in PR #456"

### Documents

linearis documents list
linearis documents list --project "Backend"
linearis documents create --title "Spec" --content "# Overview..."
linearis documents read <doc-id>
linearis documents update <doc-id> --content "Updated"
linearis documents delete <doc-id>

### File Uploads/Downloads

linearis embeds upload ./screenshot.png
linearis embeds download "<url>" --output ./file.png

### Teams, Users, Projects

linearis teams list
linearis users list --active
linearis projects list
linearis cycles list --team WHO --active

### Full Usage

linearis usage  # Complete command reference (~1k tokens)

### Output

All commands return JSON by default. Pipe to jq for processing:

linearis issues list -l 5 | jq '.[].identifier'

### Priority Values

0: No priority
1: Urgent
2: High
3: Medium
4: Low

### Links

Docs: https://github.com/czottmann/linearis
Blog: https://zottmann.org/2025/09/03/linearis-my-linear-cli-built.html
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: whoisnnamdi
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T23:25:17.028Z
- Expires at: 2026-05-11T23:25:17.028Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/linearis)
- [Send to Agent page](https://openagent3.xyz/skills/linearis/agent)
- [JSON manifest](https://openagent3.xyz/skills/linearis/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/linearis/agent.md)
- [Download page](https://openagent3.xyz/downloads/linearis)