{
  "schemaVersion": "1.0",
  "item": {
    "slug": "linear-issues",
    "name": "Linear Issues",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/emrekilinc/linear-issues",
    "canonicalUrl": "https://clawhub.ai/emrekilinc/linear-issues",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/linear-issues",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=linear-issues",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package-lock.json",
      "package.json",
      "references/api-examples.md",
      "scripts/linear.sh"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/linear-issues"
    },
    "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/linear-issues",
    "agentPageUrl": "https://openagent3.xyz/skills/linear-issues/agent",
    "manifestUrl": "https://openagent3.xyz/skills/linear-issues/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/linear-issues/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": "Manage Linear issues via scripts/linear.sh."
      },
      {
        "title": "Setup",
        "body": "Store API key in ~/.clawdbot/credentials/linear.json:\n\n{\"apiKey\": \"lin_api_...\"}"
      },
      {
        "title": "Commands",
        "body": "# List my assigned issues\nscripts/linear.sh issues --mine\n\n# List team issues\nscripts/linear.sh issues --team TEAM_ID\n\n# Get issue details\nscripts/linear.sh get CLP-123\n\n# Search issues\nscripts/linear.sh search \"auth bug\"\n\n# Create issue\nscripts/linear.sh create --team TEAM_ID --title \"Bug: login fails\" --description \"Details\"\n\n# Update issue (status, title, assignee, priority)\nscripts/linear.sh update CLP-123 --state STATE_ID\n\n# Add comment\nscripts/linear.sh comment CLP-123 \"Fixed in PR #42\"\n\n# List teams (to get TEAM_ID)\nscripts/linear.sh teams\n\n# List states (to get STATE_ID)\nscripts/linear.sh states\n\n# List users (to get assignee ID)\nscripts/linear.sh users\n\nUse --json flag for raw API output: scripts/linear.sh --json issues --mine"
      },
      {
        "title": "Workflow Examples",
        "body": "Create and assign a bug:\n\n# Find team ID\nscripts/linear.sh teams\n# Create with priority 2 (high)\nscripts/linear.sh create --team abc123 --title \"Critical: API down\" --priority 2\n\nMove issue to In Progress:\n\n# Find state ID\nscripts/linear.sh states\n# Update\nscripts/linear.sh update CLP-45 --state xyz789\n\nSee references/api-examples.md for GraphQL details."
      }
    ],
    "body": "Linear\n\nManage Linear issues via scripts/linear.sh.\n\nSetup\n\nStore API key in ~/.clawdbot/credentials/linear.json:\n\n{\"apiKey\": \"lin_api_...\"}\n\nCommands\n# List my assigned issues\nscripts/linear.sh issues --mine\n\n# List team issues\nscripts/linear.sh issues --team TEAM_ID\n\n# Get issue details\nscripts/linear.sh get CLP-123\n\n# Search issues\nscripts/linear.sh search \"auth bug\"\n\n# Create issue\nscripts/linear.sh create --team TEAM_ID --title \"Bug: login fails\" --description \"Details\"\n\n# Update issue (status, title, assignee, priority)\nscripts/linear.sh update CLP-123 --state STATE_ID\n\n# Add comment\nscripts/linear.sh comment CLP-123 \"Fixed in PR #42\"\n\n# List teams (to get TEAM_ID)\nscripts/linear.sh teams\n\n# List states (to get STATE_ID)\nscripts/linear.sh states\n\n# List users (to get assignee ID)\nscripts/linear.sh users\n\n\nUse --json flag for raw API output: scripts/linear.sh --json issues --mine\n\nWorkflow Examples\n\nCreate and assign a bug:\n\n# Find team ID\nscripts/linear.sh teams\n# Create with priority 2 (high)\nscripts/linear.sh create --team abc123 --title \"Critical: API down\" --priority 2\n\n\nMove issue to In Progress:\n\n# Find state ID\nscripts/linear.sh states\n# Update\nscripts/linear.sh update CLP-45 --state xyz789\n\n\nSee references/api-examples.md for GraphQL details."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/emrekilinc/linear-issues",
    "publisherUrl": "https://clawhub.ai/emrekilinc/linear-issues",
    "owner": "emrekilinc",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/linear-issues",
    "downloadUrl": "https://openagent3.xyz/downloads/linear-issues",
    "agentUrl": "https://openagent3.xyz/skills/linear-issues/agent",
    "manifestUrl": "https://openagent3.xyz/skills/linear-issues/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/linear-issues/agent.md"
  }
}