{
  "schemaVersion": "1.0",
  "item": {
    "slug": "native-linear",
    "name": "Native Linear",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/codeninja23/native-linear",
    "canonicalUrl": "https://clawhub.ai/codeninja23/native-linear",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/native-linear",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=native-linear",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/linear_query.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "native-linear",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T00:07:20.151Z",
      "expiresAt": "2026-05-13T00:07:20.151Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=native-linear",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=native-linear",
        "contentDisposition": "attachment; filename=\"native-linear-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "native-linear"
      },
      "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/native-linear"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/native-linear",
    "agentPageUrl": "https://openagent3.xyz/skills/native-linear/agent",
    "manifestUrl": "https://openagent3.xyz/skills/native-linear/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/native-linear/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Linear",
        "body": "Interact with Linear directly via the Linear GraphQL API (api.linear.app/graphql)."
      },
      {
        "title": "Setup (one-time)",
        "body": "Go to Linear → Settings → Account → Security & Access → API keys\nCreate a new key\nSet environment variable:\nLINEAR_API_KEY=lin_api_..."
      },
      {
        "title": "List your teams",
        "body": "python3 /mnt/skills/user/linear/scripts/linear_query.py teams"
      },
      {
        "title": "List issues assigned to you",
        "body": "python3 /mnt/skills/user/linear/scripts/linear_query.py my-issues\npython3 /mnt/skills/user/linear/scripts/linear_query.py my-issues --state \"In Progress\""
      },
      {
        "title": "List issues for a team",
        "body": "python3 /mnt/skills/user/linear/scripts/linear_query.py issues --team \"Engineering\"\npython3 /mnt/skills/user/linear/scripts/linear_query.py issues --team \"Engineering\" --state \"Todo\" --limit 20"
      },
      {
        "title": "Get a specific issue",
        "body": "python3 /mnt/skills/user/linear/scripts/linear_query.py issue ENG-123"
      },
      {
        "title": "Search issues",
        "body": "python3 /mnt/skills/user/linear/scripts/linear_query.py search \"authentication bug\""
      },
      {
        "title": "Create an issue",
        "body": "python3 /mnt/skills/user/linear/scripts/linear_query.py create --team \"Engineering\" --title \"Fix login bug\" --description \"Users can't log in on Safari\"\npython3 /mnt/skills/user/linear/scripts/linear_query.py create --team \"Engineering\" --title \"Add dark mode\" --priority 2"
      },
      {
        "title": "Update an issue",
        "body": "python3 /mnt/skills/user/linear/scripts/linear_query.py update ENG-123 --state \"Done\"\npython3 /mnt/skills/user/linear/scripts/linear_query.py update ENG-123 --priority 1 --title \"New title\""
      },
      {
        "title": "List projects",
        "body": "python3 /mnt/skills/user/linear/scripts/linear_query.py projects\npython3 /mnt/skills/user/linear/scripts/linear_query.py projects --team \"Engineering\""
      },
      {
        "title": "List cycles (sprints)",
        "body": "python3 /mnt/skills/user/linear/scripts/linear_query.py cycles --team \"Engineering\""
      },
      {
        "title": "List workflow states for a team",
        "body": "python3 /mnt/skills/user/linear/scripts/linear_query.py states --team \"Engineering\""
      },
      {
        "title": "Priority levels",
        "body": "0 = No priority\n1 = Urgent\n2 = High\n3 = Normal\n4 = Low"
      }
    ],
    "body": "Linear\n\nInteract with Linear directly via the Linear GraphQL API (api.linear.app/graphql).\n\nSetup (one-time)\nGo to Linear → Settings → Account → Security & Access → API keys\nCreate a new key\nSet environment variable:\nLINEAR_API_KEY=lin_api_...\n\nUsage\nList your teams\npython3 /mnt/skills/user/linear/scripts/linear_query.py teams\n\nList issues assigned to you\npython3 /mnt/skills/user/linear/scripts/linear_query.py my-issues\npython3 /mnt/skills/user/linear/scripts/linear_query.py my-issues --state \"In Progress\"\n\nList issues for a team\npython3 /mnt/skills/user/linear/scripts/linear_query.py issues --team \"Engineering\"\npython3 /mnt/skills/user/linear/scripts/linear_query.py issues --team \"Engineering\" --state \"Todo\" --limit 20\n\nGet a specific issue\npython3 /mnt/skills/user/linear/scripts/linear_query.py issue ENG-123\n\nSearch issues\npython3 /mnt/skills/user/linear/scripts/linear_query.py search \"authentication bug\"\n\nCreate an issue\npython3 /mnt/skills/user/linear/scripts/linear_query.py create --team \"Engineering\" --title \"Fix login bug\" --description \"Users can't log in on Safari\"\npython3 /mnt/skills/user/linear/scripts/linear_query.py create --team \"Engineering\" --title \"Add dark mode\" --priority 2\n\nUpdate an issue\npython3 /mnt/skills/user/linear/scripts/linear_query.py update ENG-123 --state \"Done\"\npython3 /mnt/skills/user/linear/scripts/linear_query.py update ENG-123 --priority 1 --title \"New title\"\n\nList projects\npython3 /mnt/skills/user/linear/scripts/linear_query.py projects\npython3 /mnt/skills/user/linear/scripts/linear_query.py projects --team \"Engineering\"\n\nList cycles (sprints)\npython3 /mnt/skills/user/linear/scripts/linear_query.py cycles --team \"Engineering\"\n\nList workflow states for a team\npython3 /mnt/skills/user/linear/scripts/linear_query.py states --team \"Engineering\"\n\nPriority levels\n0 = No priority\n1 = Urgent\n2 = High\n3 = Normal\n4 = Low"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/codeninja23/native-linear",
    "publisherUrl": "https://clawhub.ai/codeninja23/native-linear",
    "owner": "codeninja23",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/native-linear",
    "downloadUrl": "https://openagent3.xyz/downloads/native-linear",
    "agentUrl": "https://openagent3.xyz/skills/native-linear/agent",
    "manifestUrl": "https://openagent3.xyz/skills/native-linear/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/native-linear/agent.md"
  }
}