[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-linear-api":3,"mdc--l0276f-key":33,"related-org-anthropic-linear-api":3472,"related-repo-anthropic-linear-api":3661},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":31,"mdContent":32},"linear-api","manage Linear issues and projects","Read and manage Linear issues, projects, cycles, teams, comments, and labels. Use this whenever the user wants to list their issues, search issues, create or update an issue, move an issue between states, add a comment, check a project or cycle, look up a team, or ask \"what's on my plate in Linear\" — even if they don't say \"API\" or \"GraphQL\". Also use it for any linear.app URL or an issue identifier like \"ENG-123\". Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20],{"name":14,"slug":15,"type":16},"Linear","linear","tag",{"name":18,"slug":19,"type":16},"Project Management","project-management",{"name":21,"slug":22,"type":16},"Task Management","task-management",30,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-tag-plugins","2026-06-24T07:46:35.402067",null,12,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":26},[],"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-tag-plugins\u002Ftree\u002FHEAD\u002Flinear\u002Fskills\u002Flinear-api","---\nname: linear-api\ndescription: Read and manage Linear issues, projects, cycles, teams, comments, and labels. Use this whenever the user wants to list their issues, search issues, create or update an issue, move an issue between states, add a comment, check a project or cycle, look up a team, or ask \"what's on my plate in Linear\" — even if they don't say \"API\" or \"GraphQL\". Also use it for any linear.app URL or an issue identifier like \"ENG-123\". Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.\n---\n\nLinear has a **single GraphQL endpoint** — there is no REST API. Every read is a `query`, every\nwrite is a `mutation`, and everything goes to one URL. Don't look for `\u002Fapi\u002Fv1\u002Fissues`-style paths;\nthey don't exist.\n\n```\nPOST https:\u002F\u002Fapi.linear.app\u002Fgraphql\n```\n\nTwo ID systems coexist:\n- **UUID** (`id`) — what the API uses everywhere for lookups and mutations.\n- **Identifier** (`identifier`, e.g. `ENG-123`) — the human-readable key shown in the UI. You can\n  fetch an issue by identifier with `issue(id: \"ENG-123\")` (Linear accepts both).\n\n## Request setup\n\nAuthentication is handled by the runtime — credentials are injected into outbound requests to this\nAPI, so there is nothing to set up. Do not try to create, mint, refresh, or validate tokens or keys.\nCredential variables exist only to keep requests well-formed; if one is unset, set it to any\nplaceholder value. A persistent `401`\u002F`403` means the credential isn't configured for this workspace\n— report that instead of debugging auth.\n\nLinear expects the credential in the `Authorization` header **as the value itself, with no `Bearer`\nprefix** — send the header exactly as shown in the recipes below.\n\n```bash\nexport LINEAR_API_KEY=\"placeholder\"    # injected by the runtime; any value works\n```\n\n**Sanity check** — confirm the workspace is wired up and see who the configured identity is:\n\n```bash\ncurl -sS \"https:\u002F\u002Fapi.linear.app\u002Fgraphql\" \\\n  -H \"Authorization: ${LINEAR_API_KEY}\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"query\": \"{ viewer { id name email } }\"}' | jq .\n```\n\nDefine a helper once per session so you don't repeat the boilerplate. It takes a query string and an\noptional variables JSON object:\n\n```bash\nlinear_gql() {\n  local query=\"$1\" vars=\"${2:-null}\"\n  jq -n --arg q \"$query\" --argjson v \"$vars\" '{query:$q, variables:$v}' | \\\n  curl -sS \"https:\u002F\u002Fapi.linear.app\u002Fgraphql\" \\\n    -H \"Authorization: ${LINEAR_API_KEY}\" \\\n    -H \"Content-Type: application\u002Fjson\" \\\n    -d @-\n}\n```\n\n**Always check `.errors` before trusting `.data`** — GraphQL returns HTTP `200` even on failures:\n\n```bash\nlinear_gql '{ viewer { id } }' | jq 'if .errors then .errors else .data end'\n```\n\n## Core operations\n\n### 1. Who am I \u002F what's assigned to me\n\n```bash\nlinear_gql '{\n  viewer {\n    id name email\n    assignedIssues(first: 25, orderBy: updatedAt, filter: {state: {type: {nin: [\"completed\",\"canceled\"]}}}) {\n      nodes { identifier title state { name type } priority team { key } updatedAt }\n    }\n  }\n}' | jq '.errors \u002F\u002F .data.viewer'\n```\n\nPriority: `0` = no priority, `1` = Urgent, `2` = High, `3` = Medium, `4` = Low.\n\n### 2. Search issues\n\n```bash\nlinear_gql 'query($q: String!) {\n  searchIssues(term: $q, first: 25) {\n    nodes { identifier title state { name } assignee { name } team { key } priority url }\n  }\n}' '{\"q\": \"login crash\"}' | jq '.data.searchIssues.nodes'\n```\n\n### 3. Get one issue (by identifier or UUID)\n\n```bash\nlinear_gql 'query($id: String!) {\n  issue(id: $id) {\n    id identifier title description url priority estimate\n    state { name type }\n    assignee { name email }\n    creator { name }\n    team { id key name }\n    project { id name }\n    cycle { id number name }\n    labels { nodes { name color } }\n    comments(first: 50) { nodes { body user { name } createdAt } }\n    children { nodes { identifier title state { name } } }\n    parent { identifier title }\n    createdAt updatedAt dueDate\n  }\n}' '{\"id\": \"ENG-123\"}' | jq '.data.issue'\n```\n\n### 4. List and filter issues (`scripts\u002Flinear_issues.sh`)\n\nList issues through the bundled script (path is relative to this skill's directory): it builds an\n`IssueFilter` from flags, pages through `pageInfo.endCursor`, checks `.errors` on every response,\nand emits TSV or JSONL.\n\n```bash\nscripts\u002Flinear_issues.sh --team ENG --state-type started --assignee me --limit 100\n```\n\n- All filter flags are optional and combine (AND): `--team KEY`, `--state NAME`, `--state-type\n  TYPE` (one of `backlog` `unstarted` `started` `completed` `canceled` `triage` `duplicate`),\n  `--assignee EMAIL` (or `me` — resolves the viewer id first), `--label NAME`. Instance specifics come from\n  `LINEAR_API_KEY` above.\n- `--query TEXT` does a case-insensitive substring match over title and description; combined with\n  other flags it's wrapped as `and: [ {…flags}, {or: [title, description]} ]`.\n- `--limit N` caps total issues fetched (default 50, `0` = everything); `--page-size N` (max 100)\n  sets the per-page size; `--json` emits one JSON object per issue instead of TSV with a header\n  (`identifier`, `title`, `state`, `assignee`, `updatedAt`, `url`). Row counts go to stderr.\n- Exit codes: `0` success, `1` request failed, GraphQL `.errors`, or bad arguments — the API's own\n  message and `extensions.code` are on stderr.\n\nIf the script errors, read it — it's plain `curl` + `jq` — and debug against `references\u002Fapi.md`.\n\nFor filter shapes the flags don't cover — comparators like `lte`\u002F`gte`, `or` groups, nested\n`some`\u002F`every` — pass the `filter` object yourself with `linear_gql`:\n\n```bash\nlinear_gql 'query($teamKey: String!) {\n  issues(first: 50, orderBy: updatedAt, filter: {\n    team: { key: { eq: $teamKey } }\n    priority: { lte: 2, gte: 1 }\n    state: { type: { nin: [\"completed\", \"canceled\"] } }\n  }) { nodes { identifier title priority state { name } assignee { name } } }\n}' '{\"teamKey\": \"ENG\"}' | jq '.data.issues.nodes'\n```\n\nFull filter grammar: `references\u002Fapi.md`, section Filter operators.\n\n### 5. Create an issue\n\nYou need the team's UUID (not its key). Get it once (recipe 8), then:\n\n```bash\nlinear_gql 'mutation($input: IssueCreateInput!) {\n  issueCreate(input: $input) {\n    success\n    issue { id identifier url }\n  }\n}' '{\"input\": {\n  \"teamId\": \"TEAM_UUID\",\n  \"title\": \"Crash on empty input\",\n  \"description\": \"Steps to reproduce…\\n\\n1. …\",\n  \"priority\": 2,\n  \"assigneeId\": \"USER_UUID\",\n  \"labelIds\": [\"LABEL_UUID\"]\n}}' | jq '.data.issueCreate'\n```\n\n`description` is **Markdown**.\n\n### 6. Update an issue (change state, assignee, priority, …)\n\n```bash\nlinear_gql 'mutation($id: String!, $input: IssueUpdateInput!) {\n  issueUpdate(id: $id, input: $input) {\n    success\n    issue { identifier state { name } assignee { name } }\n  }\n}' '{\"id\": \"ENG-123\", \"input\": {\"stateId\": \"STATE_UUID\", \"priority\": 1}}' | jq '.data.issueUpdate'\n```\n\nTo move to \"Done\" \u002F \"In Progress\" \u002F etc. you need the workflow **state UUID**, which is per-team\n(recipe 8 shows how to list them).\n\n### 7. Comment on an issue\n\n```bash\nlinear_gql 'mutation($input: CommentCreateInput!) {\n  commentCreate(input: $input) { success comment { id url } }\n}' '{\"input\": {\"issueId\": \"ISSUE_UUID\", \"body\": \"Reproduced on main — looking into it.\"}}' \\\n  | jq '.data.commentCreate'\n```\n\n`body` is Markdown. `issueId` must be the UUID, not the identifier — fetch it with recipe 3 first.\n\n### 8. Discover teams, workflow states, labels, members\n\nYou'll need these UUIDs for create\u002Fupdate mutations.\n\n```bash\nlinear_gql '{\n  teams {\n    nodes {\n      id key name\n      states { nodes { id name type position } }\n      labels { nodes { id name color } }\n      members { nodes { id name email } }\n    }\n  }\n}' | jq '.data.teams.nodes'\n```\n\nState `type` ∈ `backlog`, `unstarted`, `started`, `completed`, `canceled`, `triage`, `duplicate`.\n\n### 9. Projects and cycles\n\n```bash\nlinear_gql '{\n  projects(first: 25, orderBy: updatedAt, filter: {status: {type: {neq: \"completed\"}}}) {\n    nodes {\n      id name description progress targetDate url\n      status { name type }\n      lead { name }\n      teams { nodes { key } }\n      issues(first: 5) { nodes { identifier title state { name } } }\n    }\n  }\n}' | jq '.data.projects.nodes'\n\n# current cycle for a team\nlinear_gql 'query($teamId: String!) {\n  team(id: $teamId) {\n    activeCycle {\n      id number name startsAt endsAt progress\n      issues { nodes { identifier title state { name } assignee { name } } }\n    }\n  }\n}' '{\"teamId\": \"TEAM_UUID\"}' | jq '.data.team.activeCycle'\n```\n\nConnections have no `totalCount` field — to count issues, paginate and count `nodes`, or read an\naggregate field like `team { issueCount }`. Exception: the search payloads (`searchIssues`,\n`searchProjects`, `searchDocuments`) do return `totalCount`.\n\n### 10. Recent activity across the workspace\n\n```bash\nlinear_gql '{\n  issues(first: 25, orderBy: updatedAt) {\n    nodes { identifier title state { name } assignee { name } team { key } updatedAt }\n  }\n}' | jq '.data.issues.nodes'\n```\n\n## Pagination\n\nEvery list field (`issues`, `nodes`, `projects`, `comments`, …) is a **connection** with cursor\npagination. The response carries `pageInfo`:\n\n```bash\nlinear_gql 'query($cursor: String) {\n  issues(first: 50, after: $cursor, orderBy: createdAt) {\n    pageInfo { hasNextPage endCursor }\n    nodes { identifier title }\n  }\n}' '{\"cursor\": null}' | jq '.data.issues'\n```\n\nLoop: pass `pageInfo.endCursor` as `$cursor`, stop when `hasNextPage` is `false`. Also stop (and\nprint the body) if the response has `.errors` or the extracted cursor is empty or the literal string\n`null` — otherwise an error envelope loops forever. Always bound the loop with a max page count.\n`first` caps at **250** per page (default 50). For reverse pagination use `last` \u002F `before`.\n\n## Rate limits\n\nLinear enforces **per-user request limits** and **complexity limits** (roughly proportional to how\nmany nodes a query could touch). Every response carries:\n\n```\nX-RateLimit-Requests-Limit \u002F -Remaining \u002F -Reset\nX-Complexity\nX-RateLimit-Complexity-Limit \u002F -Remaining \u002F -Reset\n```\n\nAPI-key auth gets 5,000 requests\u002Fhour and 3,000,000 complexity points\u002Fhour (OAuth apps: 5,000\nrequests and 2,000,000 points per user per hour); a single query may not exceed 10,000 points. When\nyou're over, Linear returns **HTTP `400`** (not `429`) with\n`errors[].extensions.code: \"RATELIMITED\"`. The `-Reset` headers are **UTC epoch milliseconds** —\nworks on both BSD\u002FmacOS and GNU date:\n\n```bash\nsleep $(( reset_ms \u002F 1000 - $(date +%s) + 1 ))   # reset_ms from X-RateLimit-Requests-Reset\n```\n\nTo lower complexity, request fewer fields, cap `first:`, and don't deeply nest connections you don't\nneed (e.g. don't select `comments` on every issue in a list).\n\n## Error handling\n\nGraphQL returns HTTP `200` for most application errors — **always check the body's `errors[]`**.\n\n- **HTTP `400` + `code: \"GRAPHQL_VALIDATION_FAILED\"`** — Schema validation failed (unknown field\u002Ftype). `errors[].message` names the bad field — fix the query, don't debug quoting.\n- **HTTP `500` + `code: \"GRAPHQL_VALIDATION_FAILED\"`** — GraphQL **syntax** error (unbalanced braces, etc.). `errors[].message` shows the parse position.\n- **HTTP `401`** — Bad or missing API key. Check `LINEAR_API_KEY`. Personal keys go in `Authorization:` with **no** `Bearer` prefix.\n- **HTTP `400` + `code: \"RATELIMITED\"`** — Rate or complexity limit hit. Sleep until `X-RateLimit-…-Reset` (epoch **ms**), retry; or simplify the query (fewer fields, smaller `first:`).\n- **`errors[].extensions.code: \"INVALID_INPUT\"` \u002F `\"INPUT_ERROR\"`** — Validation failed. `message` names the bad field. Common: passing a key (`ENG`) where a UUID is required, or a query over the 10,000-point complexity cap.\n- **`errors[].extensions.code: \"ENTITY_NOT_FOUND\"`** — ID doesn't exist or not visible. Check the ID. API-key scope is workspace-wide but respects team\u002Fproject access.\n- **`errors[].message: \"Cannot query field …\"`** — Typo or schema mismatch. Field doesn't exist. Check spelling; use introspection (`references\u002Fapi.md`).\n\nMutations return a `success` boolean even when HTTP and `errors` are clean — check it before\nassuming the write landed.\n\n## Going deeper\n\n`references\u002Fapi.md` has the fuller catalog: all major object types and their fields, the filter\noperator grammar, webhook config, file attachments, reactions, notifications, favorites,\nworkspace\u002Forganization queries, and schema introspection. Read it when you need an object or\nmutation not covered above, or when you need the exact input shape for a create\u002Fupdate.\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,79,91,96,152,159,180,208,262,272,413,418,701,733,782,788,795,898,943,949,1040,1046,1232,1246,1274,1329,1571,1598,1655,1763,1775,1781,1786,1941,1958,1964,2062,2074,2080,2164,2183,2189,2194,2310,2365,2371,2623,2681,2687,2763,2769,2816,2915,2994,3000,3019,3028,3077,3156,3176,3182,3206,3429,3450,3456,3466],{"type":39,"tag":40,"props":41,"children":42},"element","p",{},[43,46,52,54,61,63,69,71,77],{"type":44,"value":45},"text","Linear has a ",{"type":39,"tag":47,"props":48,"children":49},"strong",{},[50],{"type":44,"value":51},"single GraphQL endpoint",{"type":44,"value":53}," — there is no REST API. Every read is a ",{"type":39,"tag":55,"props":56,"children":58},"code",{"className":57},[],[59],{"type":44,"value":60},"query",{"type":44,"value":62},", every\nwrite is a ",{"type":39,"tag":55,"props":64,"children":66},{"className":65},[],[67],{"type":44,"value":68},"mutation",{"type":44,"value":70},", and everything goes to one URL. Don't look for ",{"type":39,"tag":55,"props":72,"children":74},{"className":73},[],[75],{"type":44,"value":76},"\u002Fapi\u002Fv1\u002Fissues",{"type":44,"value":78},"-style paths;\nthey don't exist.",{"type":39,"tag":80,"props":81,"children":85},"pre",{"className":82,"code":84,"language":44},[83],"language-text","POST https:\u002F\u002Fapi.linear.app\u002Fgraphql\n",[86],{"type":39,"tag":55,"props":87,"children":89},{"__ignoreMap":88},"",[90],{"type":44,"value":84},{"type":39,"tag":40,"props":92,"children":93},{},[94],{"type":44,"value":95},"Two ID systems coexist:",{"type":39,"tag":97,"props":98,"children":99},"ul",{},[100,119],{"type":39,"tag":101,"props":102,"children":103},"li",{},[104,109,111,117],{"type":39,"tag":47,"props":105,"children":106},{},[107],{"type":44,"value":108},"UUID",{"type":44,"value":110}," (",{"type":39,"tag":55,"props":112,"children":114},{"className":113},[],[115],{"type":44,"value":116},"id",{"type":44,"value":118},") — what the API uses everywhere for lookups and mutations.",{"type":39,"tag":101,"props":120,"children":121},{},[122,127,128,134,136,142,144,150],{"type":39,"tag":47,"props":123,"children":124},{},[125],{"type":44,"value":126},"Identifier",{"type":44,"value":110},{"type":39,"tag":55,"props":129,"children":131},{"className":130},[],[132],{"type":44,"value":133},"identifier",{"type":44,"value":135},", e.g. ",{"type":39,"tag":55,"props":137,"children":139},{"className":138},[],[140],{"type":44,"value":141},"ENG-123",{"type":44,"value":143},") — the human-readable key shown in the UI. You can\nfetch an issue by identifier with ",{"type":39,"tag":55,"props":145,"children":147},{"className":146},[],[148],{"type":44,"value":149},"issue(id: \"ENG-123\")",{"type":44,"value":151}," (Linear accepts both).",{"type":39,"tag":153,"props":154,"children":156},"h2",{"id":155},"request-setup",[157],{"type":44,"value":158},"Request setup",{"type":39,"tag":40,"props":160,"children":161},{},[162,164,170,172,178],{"type":44,"value":163},"Authentication is handled by the runtime — credentials are injected into outbound requests to this\nAPI, so there is nothing to set up. Do not try to create, mint, refresh, or validate tokens or keys.\nCredential variables exist only to keep requests well-formed; if one is unset, set it to any\nplaceholder value. A persistent ",{"type":39,"tag":55,"props":165,"children":167},{"className":166},[],[168],{"type":44,"value":169},"401",{"type":44,"value":171},"\u002F",{"type":39,"tag":55,"props":173,"children":175},{"className":174},[],[176],{"type":44,"value":177},"403",{"type":44,"value":179}," means the credential isn't configured for this workspace\n— report that instead of debugging auth.",{"type":39,"tag":40,"props":181,"children":182},{},[183,185,191,193,206],{"type":44,"value":184},"Linear expects the credential in the ",{"type":39,"tag":55,"props":186,"children":188},{"className":187},[],[189],{"type":44,"value":190},"Authorization",{"type":44,"value":192}," header ",{"type":39,"tag":47,"props":194,"children":195},{},[196,198,204],{"type":44,"value":197},"as the value itself, with no ",{"type":39,"tag":55,"props":199,"children":201},{"className":200},[],[202],{"type":44,"value":203},"Bearer",{"type":44,"value":205},"\nprefix",{"type":44,"value":207}," — send the header exactly as shown in the recipes below.",{"type":39,"tag":80,"props":209,"children":213},{"className":210,"code":211,"language":212,"meta":88,"style":88},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","export LINEAR_API_KEY=\"placeholder\"    # injected by the runtime; any value works\n","bash",[214],{"type":39,"tag":55,"props":215,"children":216},{"__ignoreMap":88},[217],{"type":39,"tag":218,"props":219,"children":222},"span",{"class":220,"line":221},"line",1,[223,229,235,241,246,252,256],{"type":39,"tag":218,"props":224,"children":226},{"style":225},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[227],{"type":44,"value":228},"export",{"type":39,"tag":218,"props":230,"children":232},{"style":231},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[233],{"type":44,"value":234}," LINEAR_API_KEY",{"type":39,"tag":218,"props":236,"children":238},{"style":237},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[239],{"type":44,"value":240},"=",{"type":39,"tag":218,"props":242,"children":243},{"style":237},[244],{"type":44,"value":245},"\"",{"type":39,"tag":218,"props":247,"children":249},{"style":248},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[250],{"type":44,"value":251},"placeholder",{"type":39,"tag":218,"props":253,"children":254},{"style":237},[255],{"type":44,"value":245},{"type":39,"tag":218,"props":257,"children":259},{"style":258},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[260],{"type":44,"value":261},"    # injected by the runtime; any value works\n",{"type":39,"tag":40,"props":263,"children":264},{},[265,270],{"type":39,"tag":47,"props":266,"children":267},{},[268],{"type":44,"value":269},"Sanity check",{"type":44,"value":271}," — confirm the workspace is wired up and see who the configured identity is:",{"type":39,"tag":80,"props":273,"children":275},{"className":210,"code":274,"language":212,"meta":88,"style":88},"curl -sS \"https:\u002F\u002Fapi.linear.app\u002Fgraphql\" \\\n  -H \"Authorization: ${LINEAR_API_KEY}\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"query\": \"{ viewer { id name email } }\"}' | jq .\n",[276],{"type":39,"tag":55,"props":277,"children":278},{"__ignoreMap":88},[279,312,349,374],{"type":39,"tag":218,"props":280,"children":281},{"class":220,"line":221},[282,288,293,298,303,307],{"type":39,"tag":218,"props":283,"children":285},{"style":284},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[286],{"type":44,"value":287},"curl",{"type":39,"tag":218,"props":289,"children":290},{"style":248},[291],{"type":44,"value":292}," -sS",{"type":39,"tag":218,"props":294,"children":295},{"style":237},[296],{"type":44,"value":297}," \"",{"type":39,"tag":218,"props":299,"children":300},{"style":248},[301],{"type":44,"value":302},"https:\u002F\u002Fapi.linear.app\u002Fgraphql",{"type":39,"tag":218,"props":304,"children":305},{"style":237},[306],{"type":44,"value":245},{"type":39,"tag":218,"props":308,"children":309},{"style":231},[310],{"type":44,"value":311}," \\\n",{"type":39,"tag":218,"props":313,"children":315},{"class":220,"line":314},2,[316,321,325,330,335,340,345],{"type":39,"tag":218,"props":317,"children":318},{"style":248},[319],{"type":44,"value":320},"  -H",{"type":39,"tag":218,"props":322,"children":323},{"style":237},[324],{"type":44,"value":297},{"type":39,"tag":218,"props":326,"children":327},{"style":248},[328],{"type":44,"value":329},"Authorization: ",{"type":39,"tag":218,"props":331,"children":332},{"style":237},[333],{"type":44,"value":334},"${",{"type":39,"tag":218,"props":336,"children":337},{"style":231},[338],{"type":44,"value":339},"LINEAR_API_KEY",{"type":39,"tag":218,"props":341,"children":342},{"style":237},[343],{"type":44,"value":344},"}\"",{"type":39,"tag":218,"props":346,"children":347},{"style":231},[348],{"type":44,"value":311},{"type":39,"tag":218,"props":350,"children":352},{"class":220,"line":351},3,[353,357,361,366,370],{"type":39,"tag":218,"props":354,"children":355},{"style":248},[356],{"type":44,"value":320},{"type":39,"tag":218,"props":358,"children":359},{"style":237},[360],{"type":44,"value":297},{"type":39,"tag":218,"props":362,"children":363},{"style":248},[364],{"type":44,"value":365},"Content-Type: application\u002Fjson",{"type":39,"tag":218,"props":367,"children":368},{"style":237},[369],{"type":44,"value":245},{"type":39,"tag":218,"props":371,"children":372},{"style":231},[373],{"type":44,"value":311},{"type":39,"tag":218,"props":375,"children":377},{"class":220,"line":376},4,[378,383,388,393,398,403,408],{"type":39,"tag":218,"props":379,"children":380},{"style":248},[381],{"type":44,"value":382},"  -d",{"type":39,"tag":218,"props":384,"children":385},{"style":237},[386],{"type":44,"value":387}," '",{"type":39,"tag":218,"props":389,"children":390},{"style":248},[391],{"type":44,"value":392},"{\"query\": \"{ viewer { id name email } }\"}",{"type":39,"tag":218,"props":394,"children":395},{"style":237},[396],{"type":44,"value":397},"'",{"type":39,"tag":218,"props":399,"children":400},{"style":237},[401],{"type":44,"value":402}," |",{"type":39,"tag":218,"props":404,"children":405},{"style":284},[406],{"type":44,"value":407}," jq",{"type":39,"tag":218,"props":409,"children":410},{"style":248},[411],{"type":44,"value":412}," .\n",{"type":39,"tag":40,"props":414,"children":415},{},[416],{"type":44,"value":417},"Define a helper once per session so you don't repeat the boilerplate. It takes a query string and an\noptional variables JSON object:",{"type":39,"tag":80,"props":419,"children":421},{"className":210,"code":420,"language":212,"meta":88,"style":88},"linear_gql() {\n  local query=\"$1\" vars=\"${2:-null}\"\n  jq -n --arg q \"$query\" --argjson v \"$vars\" '{query:$q, variables:$v}' | \\\n  curl -sS \"https:\u002F\u002Fapi.linear.app\u002Fgraphql\" \\\n    -H \"Authorization: ${LINEAR_API_KEY}\" \\\n    -H \"Content-Type: application\u002Fjson\" \\\n    -d @-\n}\n",[422],{"type":39,"tag":55,"props":423,"children":424},{"__ignoreMap":88},[425,444,513,593,621,654,678,692],{"type":39,"tag":218,"props":426,"children":427},{"class":220,"line":221},[428,434,439],{"type":39,"tag":218,"props":429,"children":431},{"style":430},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[432],{"type":44,"value":433},"linear_gql",{"type":39,"tag":218,"props":435,"children":436},{"style":237},[437],{"type":44,"value":438},"()",{"type":39,"tag":218,"props":440,"children":441},{"style":237},[442],{"type":44,"value":443}," {\n",{"type":39,"tag":218,"props":445,"children":446},{"class":220,"line":314},[447,452,457,461,465,471,475,480,484,488,493,498,503,508],{"type":39,"tag":218,"props":448,"children":449},{"style":225},[450],{"type":44,"value":451},"  local",{"type":39,"tag":218,"props":453,"children":454},{"style":231},[455],{"type":44,"value":456}," query",{"type":39,"tag":218,"props":458,"children":459},{"style":237},[460],{"type":44,"value":240},{"type":39,"tag":218,"props":462,"children":463},{"style":237},[464],{"type":44,"value":245},{"type":39,"tag":218,"props":466,"children":468},{"style":467},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[469],{"type":44,"value":470},"$1",{"type":39,"tag":218,"props":472,"children":473},{"style":237},[474],{"type":44,"value":245},{"type":39,"tag":218,"props":476,"children":477},{"style":231},[478],{"type":44,"value":479}," vars",{"type":39,"tag":218,"props":481,"children":482},{"style":237},[483],{"type":44,"value":240},{"type":39,"tag":218,"props":485,"children":486},{"style":237},[487],{"type":44,"value":245},{"type":39,"tag":218,"props":489,"children":490},{"style":467},[491],{"type":44,"value":492},"${2",{"type":39,"tag":218,"props":494,"children":495},{"style":237},[496],{"type":44,"value":497},":-",{"type":39,"tag":218,"props":499,"children":500},{"style":231},[501],{"type":44,"value":502},"null",{"type":39,"tag":218,"props":504,"children":505},{"style":467},[506],{"type":44,"value":507},"}",{"type":39,"tag":218,"props":509,"children":510},{"style":237},[511],{"type":44,"value":512},"\"\n",{"type":39,"tag":218,"props":514,"children":515},{"class":220,"line":351},[516,521,526,531,536,540,545,549,554,559,563,568,572,576,581,585,589],{"type":39,"tag":218,"props":517,"children":518},{"style":284},[519],{"type":44,"value":520},"  jq",{"type":39,"tag":218,"props":522,"children":523},{"style":248},[524],{"type":44,"value":525}," -n",{"type":39,"tag":218,"props":527,"children":528},{"style":248},[529],{"type":44,"value":530}," --arg",{"type":39,"tag":218,"props":532,"children":533},{"style":248},[534],{"type":44,"value":535}," q",{"type":39,"tag":218,"props":537,"children":538},{"style":237},[539],{"type":44,"value":297},{"type":39,"tag":218,"props":541,"children":542},{"style":231},[543],{"type":44,"value":544},"$query",{"type":39,"tag":218,"props":546,"children":547},{"style":237},[548],{"type":44,"value":245},{"type":39,"tag":218,"props":550,"children":551},{"style":248},[552],{"type":44,"value":553}," --argjson",{"type":39,"tag":218,"props":555,"children":556},{"style":248},[557],{"type":44,"value":558}," v",{"type":39,"tag":218,"props":560,"children":561},{"style":237},[562],{"type":44,"value":297},{"type":39,"tag":218,"props":564,"children":565},{"style":231},[566],{"type":44,"value":567},"$vars",{"type":39,"tag":218,"props":569,"children":570},{"style":237},[571],{"type":44,"value":245},{"type":39,"tag":218,"props":573,"children":574},{"style":237},[575],{"type":44,"value":387},{"type":39,"tag":218,"props":577,"children":578},{"style":248},[579],{"type":44,"value":580},"{query:$q, variables:$v}",{"type":39,"tag":218,"props":582,"children":583},{"style":237},[584],{"type":44,"value":397},{"type":39,"tag":218,"props":586,"children":587},{"style":237},[588],{"type":44,"value":402},{"type":39,"tag":218,"props":590,"children":591},{"style":231},[592],{"type":44,"value":311},{"type":39,"tag":218,"props":594,"children":595},{"class":220,"line":376},[596,601,605,609,613,617],{"type":39,"tag":218,"props":597,"children":598},{"style":284},[599],{"type":44,"value":600},"  curl",{"type":39,"tag":218,"props":602,"children":603},{"style":248},[604],{"type":44,"value":292},{"type":39,"tag":218,"props":606,"children":607},{"style":237},[608],{"type":44,"value":297},{"type":39,"tag":218,"props":610,"children":611},{"style":248},[612],{"type":44,"value":302},{"type":39,"tag":218,"props":614,"children":615},{"style":237},[616],{"type":44,"value":245},{"type":39,"tag":218,"props":618,"children":619},{"style":231},[620],{"type":44,"value":311},{"type":39,"tag":218,"props":622,"children":624},{"class":220,"line":623},5,[625,630,634,638,642,646,650],{"type":39,"tag":218,"props":626,"children":627},{"style":248},[628],{"type":44,"value":629},"    -H",{"type":39,"tag":218,"props":631,"children":632},{"style":237},[633],{"type":44,"value":297},{"type":39,"tag":218,"props":635,"children":636},{"style":248},[637],{"type":44,"value":329},{"type":39,"tag":218,"props":639,"children":640},{"style":237},[641],{"type":44,"value":334},{"type":39,"tag":218,"props":643,"children":644},{"style":231},[645],{"type":44,"value":339},{"type":39,"tag":218,"props":647,"children":648},{"style":237},[649],{"type":44,"value":344},{"type":39,"tag":218,"props":651,"children":652},{"style":231},[653],{"type":44,"value":311},{"type":39,"tag":218,"props":655,"children":657},{"class":220,"line":656},6,[658,662,666,670,674],{"type":39,"tag":218,"props":659,"children":660},{"style":248},[661],{"type":44,"value":629},{"type":39,"tag":218,"props":663,"children":664},{"style":237},[665],{"type":44,"value":297},{"type":39,"tag":218,"props":667,"children":668},{"style":248},[669],{"type":44,"value":365},{"type":39,"tag":218,"props":671,"children":672},{"style":237},[673],{"type":44,"value":245},{"type":39,"tag":218,"props":675,"children":676},{"style":231},[677],{"type":44,"value":311},{"type":39,"tag":218,"props":679,"children":681},{"class":220,"line":680},7,[682,687],{"type":39,"tag":218,"props":683,"children":684},{"style":248},[685],{"type":44,"value":686},"    -d",{"type":39,"tag":218,"props":688,"children":689},{"style":248},[690],{"type":44,"value":691}," @-\n",{"type":39,"tag":218,"props":693,"children":695},{"class":220,"line":694},8,[696],{"type":39,"tag":218,"props":697,"children":698},{"style":237},[699],{"type":44,"value":700},"}\n",{"type":39,"tag":40,"props":702,"children":703},{},[704,723,725,731],{"type":39,"tag":47,"props":705,"children":706},{},[707,709,715,717],{"type":44,"value":708},"Always check ",{"type":39,"tag":55,"props":710,"children":712},{"className":711},[],[713],{"type":44,"value":714},".errors",{"type":44,"value":716}," before trusting ",{"type":39,"tag":55,"props":718,"children":720},{"className":719},[],[721],{"type":44,"value":722},".data",{"type":44,"value":724}," — GraphQL returns HTTP ",{"type":39,"tag":55,"props":726,"children":728},{"className":727},[],[729],{"type":44,"value":730},"200",{"type":44,"value":732}," even on failures:",{"type":39,"tag":80,"props":734,"children":736},{"className":210,"code":735,"language":212,"meta":88,"style":88},"linear_gql '{ viewer { id } }' | jq 'if .errors then .errors else .data end'\n",[737],{"type":39,"tag":55,"props":738,"children":739},{"__ignoreMap":88},[740],{"type":39,"tag":218,"props":741,"children":742},{"class":220,"line":221},[743,747,751,756,760,764,768,772,777],{"type":39,"tag":218,"props":744,"children":745},{"style":284},[746],{"type":44,"value":433},{"type":39,"tag":218,"props":748,"children":749},{"style":237},[750],{"type":44,"value":387},{"type":39,"tag":218,"props":752,"children":753},{"style":248},[754],{"type":44,"value":755},"{ viewer { id } }",{"type":39,"tag":218,"props":757,"children":758},{"style":237},[759],{"type":44,"value":397},{"type":39,"tag":218,"props":761,"children":762},{"style":237},[763],{"type":44,"value":402},{"type":39,"tag":218,"props":765,"children":766},{"style":284},[767],{"type":44,"value":407},{"type":39,"tag":218,"props":769,"children":770},{"style":237},[771],{"type":44,"value":387},{"type":39,"tag":218,"props":773,"children":774},{"style":248},[775],{"type":44,"value":776},"if .errors then .errors else .data end",{"type":39,"tag":218,"props":778,"children":779},{"style":237},[780],{"type":44,"value":781},"'\n",{"type":39,"tag":153,"props":783,"children":785},{"id":784},"core-operations",[786],{"type":44,"value":787},"Core operations",{"type":39,"tag":789,"props":790,"children":792},"h3",{"id":791},"_1-who-am-i-whats-assigned-to-me",[793],{"type":44,"value":794},"1. Who am I \u002F what's assigned to me",{"type":39,"tag":80,"props":796,"children":798},{"className":210,"code":797,"language":212,"meta":88,"style":88},"linear_gql '{\n  viewer {\n    id name email\n    assignedIssues(first: 25, orderBy: updatedAt, filter: {state: {type: {nin: [\"completed\",\"canceled\"]}}}) {\n      nodes { identifier title state { name type } priority team { key } updatedAt }\n    }\n  }\n}' | jq '.errors \u002F\u002F .data.viewer'\n",[799],{"type":39,"tag":55,"props":800,"children":801},{"__ignoreMap":88},[802,818,826,834,842,850,858,866],{"type":39,"tag":218,"props":803,"children":804},{"class":220,"line":221},[805,809,813],{"type":39,"tag":218,"props":806,"children":807},{"style":284},[808],{"type":44,"value":433},{"type":39,"tag":218,"props":810,"children":811},{"style":237},[812],{"type":44,"value":387},{"type":39,"tag":218,"props":814,"children":815},{"style":248},[816],{"type":44,"value":817},"{\n",{"type":39,"tag":218,"props":819,"children":820},{"class":220,"line":314},[821],{"type":39,"tag":218,"props":822,"children":823},{"style":248},[824],{"type":44,"value":825},"  viewer {\n",{"type":39,"tag":218,"props":827,"children":828},{"class":220,"line":351},[829],{"type":39,"tag":218,"props":830,"children":831},{"style":248},[832],{"type":44,"value":833},"    id name email\n",{"type":39,"tag":218,"props":835,"children":836},{"class":220,"line":376},[837],{"type":39,"tag":218,"props":838,"children":839},{"style":248},[840],{"type":44,"value":841},"    assignedIssues(first: 25, orderBy: updatedAt, filter: {state: {type: {nin: [\"completed\",\"canceled\"]}}}) {\n",{"type":39,"tag":218,"props":843,"children":844},{"class":220,"line":623},[845],{"type":39,"tag":218,"props":846,"children":847},{"style":248},[848],{"type":44,"value":849},"      nodes { identifier title state { name type } priority team { key } updatedAt }\n",{"type":39,"tag":218,"props":851,"children":852},{"class":220,"line":656},[853],{"type":39,"tag":218,"props":854,"children":855},{"style":248},[856],{"type":44,"value":857},"    }\n",{"type":39,"tag":218,"props":859,"children":860},{"class":220,"line":680},[861],{"type":39,"tag":218,"props":862,"children":863},{"style":248},[864],{"type":44,"value":865},"  }\n",{"type":39,"tag":218,"props":867,"children":868},{"class":220,"line":694},[869,873,877,881,885,889,894],{"type":39,"tag":218,"props":870,"children":871},{"style":248},[872],{"type":44,"value":507},{"type":39,"tag":218,"props":874,"children":875},{"style":237},[876],{"type":44,"value":397},{"type":39,"tag":218,"props":878,"children":879},{"style":237},[880],{"type":44,"value":402},{"type":39,"tag":218,"props":882,"children":883},{"style":284},[884],{"type":44,"value":407},{"type":39,"tag":218,"props":886,"children":887},{"style":237},[888],{"type":44,"value":387},{"type":39,"tag":218,"props":890,"children":891},{"style":248},[892],{"type":44,"value":893},".errors \u002F\u002F .data.viewer",{"type":39,"tag":218,"props":895,"children":896},{"style":237},[897],{"type":44,"value":781},{"type":39,"tag":40,"props":899,"children":900},{},[901,903,909,911,917,919,925,927,933,935,941],{"type":44,"value":902},"Priority: ",{"type":39,"tag":55,"props":904,"children":906},{"className":905},[],[907],{"type":44,"value":908},"0",{"type":44,"value":910}," = no priority, ",{"type":39,"tag":55,"props":912,"children":914},{"className":913},[],[915],{"type":44,"value":916},"1",{"type":44,"value":918}," = Urgent, ",{"type":39,"tag":55,"props":920,"children":922},{"className":921},[],[923],{"type":44,"value":924},"2",{"type":44,"value":926}," = High, ",{"type":39,"tag":55,"props":928,"children":930},{"className":929},[],[931],{"type":44,"value":932},"3",{"type":44,"value":934}," = Medium, ",{"type":39,"tag":55,"props":936,"children":938},{"className":937},[],[939],{"type":44,"value":940},"4",{"type":44,"value":942}," = Low.",{"type":39,"tag":789,"props":944,"children":946},{"id":945},"_2-search-issues",[947],{"type":44,"value":948},"2. Search issues",{"type":39,"tag":80,"props":950,"children":952},{"className":210,"code":951,"language":212,"meta":88,"style":88},"linear_gql 'query($q: String!) {\n  searchIssues(term: $q, first: 25) {\n    nodes { identifier title state { name } assignee { name } team { key } priority url }\n  }\n}' '{\"q\": \"login crash\"}' | jq '.data.searchIssues.nodes'\n",[953],{"type":39,"tag":55,"props":954,"children":955},{"__ignoreMap":88},[956,972,980,988,995],{"type":39,"tag":218,"props":957,"children":958},{"class":220,"line":221},[959,963,967],{"type":39,"tag":218,"props":960,"children":961},{"style":284},[962],{"type":44,"value":433},{"type":39,"tag":218,"props":964,"children":965},{"style":237},[966],{"type":44,"value":387},{"type":39,"tag":218,"props":968,"children":969},{"style":248},[970],{"type":44,"value":971},"query($q: String!) {\n",{"type":39,"tag":218,"props":973,"children":974},{"class":220,"line":314},[975],{"type":39,"tag":218,"props":976,"children":977},{"style":248},[978],{"type":44,"value":979},"  searchIssues(term: $q, first: 25) {\n",{"type":39,"tag":218,"props":981,"children":982},{"class":220,"line":351},[983],{"type":39,"tag":218,"props":984,"children":985},{"style":248},[986],{"type":44,"value":987},"    nodes { identifier title state { name } assignee { name } team { key } priority url }\n",{"type":39,"tag":218,"props":989,"children":990},{"class":220,"line":376},[991],{"type":39,"tag":218,"props":992,"children":993},{"style":248},[994],{"type":44,"value":865},{"type":39,"tag":218,"props":996,"children":997},{"class":220,"line":623},[998,1002,1006,1010,1015,1019,1023,1027,1031,1036],{"type":39,"tag":218,"props":999,"children":1000},{"style":248},[1001],{"type":44,"value":507},{"type":39,"tag":218,"props":1003,"children":1004},{"style":237},[1005],{"type":44,"value":397},{"type":39,"tag":218,"props":1007,"children":1008},{"style":237},[1009],{"type":44,"value":387},{"type":39,"tag":218,"props":1011,"children":1012},{"style":248},[1013],{"type":44,"value":1014},"{\"q\": \"login crash\"}",{"type":39,"tag":218,"props":1016,"children":1017},{"style":237},[1018],{"type":44,"value":397},{"type":39,"tag":218,"props":1020,"children":1021},{"style":237},[1022],{"type":44,"value":402},{"type":39,"tag":218,"props":1024,"children":1025},{"style":284},[1026],{"type":44,"value":407},{"type":39,"tag":218,"props":1028,"children":1029},{"style":237},[1030],{"type":44,"value":387},{"type":39,"tag":218,"props":1032,"children":1033},{"style":248},[1034],{"type":44,"value":1035},".data.searchIssues.nodes",{"type":39,"tag":218,"props":1037,"children":1038},{"style":237},[1039],{"type":44,"value":781},{"type":39,"tag":789,"props":1041,"children":1043},{"id":1042},"_3-get-one-issue-by-identifier-or-uuid",[1044],{"type":44,"value":1045},"3. Get one issue (by identifier or UUID)",{"type":39,"tag":80,"props":1047,"children":1049},{"className":210,"code":1048,"language":212,"meta":88,"style":88},"linear_gql 'query($id: String!) {\n  issue(id: $id) {\n    id identifier title description url priority estimate\n    state { name type }\n    assignee { name email }\n    creator { name }\n    team { id key name }\n    project { id name }\n    cycle { id number name }\n    labels { nodes { name color } }\n    comments(first: 50) { nodes { body user { name } createdAt } }\n    children { nodes { identifier title state { name } } }\n    parent { identifier title }\n    createdAt updatedAt dueDate\n  }\n}' '{\"id\": \"ENG-123\"}' | jq '.data.issue'\n",[1050],{"type":39,"tag":55,"props":1051,"children":1052},{"__ignoreMap":88},[1053,1069,1077,1085,1093,1101,1109,1117,1125,1134,1143,1152,1160,1169,1178,1186],{"type":39,"tag":218,"props":1054,"children":1055},{"class":220,"line":221},[1056,1060,1064],{"type":39,"tag":218,"props":1057,"children":1058},{"style":284},[1059],{"type":44,"value":433},{"type":39,"tag":218,"props":1061,"children":1062},{"style":237},[1063],{"type":44,"value":387},{"type":39,"tag":218,"props":1065,"children":1066},{"style":248},[1067],{"type":44,"value":1068},"query($id: String!) {\n",{"type":39,"tag":218,"props":1070,"children":1071},{"class":220,"line":314},[1072],{"type":39,"tag":218,"props":1073,"children":1074},{"style":248},[1075],{"type":44,"value":1076},"  issue(id: $id) {\n",{"type":39,"tag":218,"props":1078,"children":1079},{"class":220,"line":351},[1080],{"type":39,"tag":218,"props":1081,"children":1082},{"style":248},[1083],{"type":44,"value":1084},"    id identifier title description url priority estimate\n",{"type":39,"tag":218,"props":1086,"children":1087},{"class":220,"line":376},[1088],{"type":39,"tag":218,"props":1089,"children":1090},{"style":248},[1091],{"type":44,"value":1092},"    state { name type }\n",{"type":39,"tag":218,"props":1094,"children":1095},{"class":220,"line":623},[1096],{"type":39,"tag":218,"props":1097,"children":1098},{"style":248},[1099],{"type":44,"value":1100},"    assignee { name email }\n",{"type":39,"tag":218,"props":1102,"children":1103},{"class":220,"line":656},[1104],{"type":39,"tag":218,"props":1105,"children":1106},{"style":248},[1107],{"type":44,"value":1108},"    creator { name }\n",{"type":39,"tag":218,"props":1110,"children":1111},{"class":220,"line":680},[1112],{"type":39,"tag":218,"props":1113,"children":1114},{"style":248},[1115],{"type":44,"value":1116},"    team { id key name }\n",{"type":39,"tag":218,"props":1118,"children":1119},{"class":220,"line":694},[1120],{"type":39,"tag":218,"props":1121,"children":1122},{"style":248},[1123],{"type":44,"value":1124},"    project { id name }\n",{"type":39,"tag":218,"props":1126,"children":1128},{"class":220,"line":1127},9,[1129],{"type":39,"tag":218,"props":1130,"children":1131},{"style":248},[1132],{"type":44,"value":1133},"    cycle { id number name }\n",{"type":39,"tag":218,"props":1135,"children":1137},{"class":220,"line":1136},10,[1138],{"type":39,"tag":218,"props":1139,"children":1140},{"style":248},[1141],{"type":44,"value":1142},"    labels { nodes { name color } }\n",{"type":39,"tag":218,"props":1144,"children":1146},{"class":220,"line":1145},11,[1147],{"type":39,"tag":218,"props":1148,"children":1149},{"style":248},[1150],{"type":44,"value":1151},"    comments(first: 50) { nodes { body user { name } createdAt } }\n",{"type":39,"tag":218,"props":1153,"children":1154},{"class":220,"line":27},[1155],{"type":39,"tag":218,"props":1156,"children":1157},{"style":248},[1158],{"type":44,"value":1159},"    children { nodes { identifier title state { name } } }\n",{"type":39,"tag":218,"props":1161,"children":1163},{"class":220,"line":1162},13,[1164],{"type":39,"tag":218,"props":1165,"children":1166},{"style":248},[1167],{"type":44,"value":1168},"    parent { identifier title }\n",{"type":39,"tag":218,"props":1170,"children":1172},{"class":220,"line":1171},14,[1173],{"type":39,"tag":218,"props":1174,"children":1175},{"style":248},[1176],{"type":44,"value":1177},"    createdAt updatedAt dueDate\n",{"type":39,"tag":218,"props":1179,"children":1181},{"class":220,"line":1180},15,[1182],{"type":39,"tag":218,"props":1183,"children":1184},{"style":248},[1185],{"type":44,"value":865},{"type":39,"tag":218,"props":1187,"children":1189},{"class":220,"line":1188},16,[1190,1194,1198,1202,1207,1211,1215,1219,1223,1228],{"type":39,"tag":218,"props":1191,"children":1192},{"style":248},[1193],{"type":44,"value":507},{"type":39,"tag":218,"props":1195,"children":1196},{"style":237},[1197],{"type":44,"value":397},{"type":39,"tag":218,"props":1199,"children":1200},{"style":237},[1201],{"type":44,"value":387},{"type":39,"tag":218,"props":1203,"children":1204},{"style":248},[1205],{"type":44,"value":1206},"{\"id\": \"ENG-123\"}",{"type":39,"tag":218,"props":1208,"children":1209},{"style":237},[1210],{"type":44,"value":397},{"type":39,"tag":218,"props":1212,"children":1213},{"style":237},[1214],{"type":44,"value":402},{"type":39,"tag":218,"props":1216,"children":1217},{"style":284},[1218],{"type":44,"value":407},{"type":39,"tag":218,"props":1220,"children":1221},{"style":237},[1222],{"type":44,"value":387},{"type":39,"tag":218,"props":1224,"children":1225},{"style":248},[1226],{"type":44,"value":1227},".data.issue",{"type":39,"tag":218,"props":1229,"children":1230},{"style":237},[1231],{"type":44,"value":781},{"type":39,"tag":789,"props":1233,"children":1235},{"id":1234},"_4-list-and-filter-issues-scriptslinear_issuessh",[1236,1238,1244],{"type":44,"value":1237},"4. List and filter issues (",{"type":39,"tag":55,"props":1239,"children":1241},{"className":1240},[],[1242],{"type":44,"value":1243},"scripts\u002Flinear_issues.sh",{"type":44,"value":1245},")",{"type":39,"tag":40,"props":1247,"children":1248},{},[1249,1251,1257,1259,1265,1267,1272],{"type":44,"value":1250},"List issues through the bundled script (path is relative to this skill's directory): it builds an\n",{"type":39,"tag":55,"props":1252,"children":1254},{"className":1253},[],[1255],{"type":44,"value":1256},"IssueFilter",{"type":44,"value":1258}," from flags, pages through ",{"type":39,"tag":55,"props":1260,"children":1262},{"className":1261},[],[1263],{"type":44,"value":1264},"pageInfo.endCursor",{"type":44,"value":1266},", checks ",{"type":39,"tag":55,"props":1268,"children":1270},{"className":1269},[],[1271],{"type":44,"value":714},{"type":44,"value":1273}," on every response,\nand emits TSV or JSONL.",{"type":39,"tag":80,"props":1275,"children":1277},{"className":210,"code":1276,"language":212,"meta":88,"style":88},"scripts\u002Flinear_issues.sh --team ENG --state-type started --assignee me --limit 100\n",[1278],{"type":39,"tag":55,"props":1279,"children":1280},{"__ignoreMap":88},[1281],{"type":39,"tag":218,"props":1282,"children":1283},{"class":220,"line":221},[1284,1288,1293,1298,1303,1308,1313,1318,1323],{"type":39,"tag":218,"props":1285,"children":1286},{"style":284},[1287],{"type":44,"value":1243},{"type":39,"tag":218,"props":1289,"children":1290},{"style":248},[1291],{"type":44,"value":1292}," --team",{"type":39,"tag":218,"props":1294,"children":1295},{"style":248},[1296],{"type":44,"value":1297}," ENG",{"type":39,"tag":218,"props":1299,"children":1300},{"style":248},[1301],{"type":44,"value":1302}," --state-type",{"type":39,"tag":218,"props":1304,"children":1305},{"style":248},[1306],{"type":44,"value":1307}," started",{"type":39,"tag":218,"props":1309,"children":1310},{"style":248},[1311],{"type":44,"value":1312}," --assignee",{"type":39,"tag":218,"props":1314,"children":1315},{"style":248},[1316],{"type":44,"value":1317}," me",{"type":39,"tag":218,"props":1319,"children":1320},{"style":248},[1321],{"type":44,"value":1322}," --limit",{"type":39,"tag":218,"props":1324,"children":1326},{"style":1325},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1327],{"type":44,"value":1328}," 100\n",{"type":39,"tag":97,"props":1330,"children":1331},{},[1332,1442,1461,1537],{"type":39,"tag":101,"props":1333,"children":1334},{},[1335,1337,1343,1345,1351,1352,1358,1360,1366,1368,1374,1375,1381,1382,1388,1389,1395,1396,1402,1403,1409,1411,1417,1419,1425,1427,1433,1435,1440],{"type":44,"value":1336},"All filter flags are optional and combine (AND): ",{"type":39,"tag":55,"props":1338,"children":1340},{"className":1339},[],[1341],{"type":44,"value":1342},"--team KEY",{"type":44,"value":1344},", ",{"type":39,"tag":55,"props":1346,"children":1348},{"className":1347},[],[1349],{"type":44,"value":1350},"--state NAME",{"type":44,"value":1344},{"type":39,"tag":55,"props":1353,"children":1355},{"className":1354},[],[1356],{"type":44,"value":1357},"--state-type TYPE",{"type":44,"value":1359}," (one of ",{"type":39,"tag":55,"props":1361,"children":1363},{"className":1362},[],[1364],{"type":44,"value":1365},"backlog",{"type":44,"value":1367}," ",{"type":39,"tag":55,"props":1369,"children":1371},{"className":1370},[],[1372],{"type":44,"value":1373},"unstarted",{"type":44,"value":1367},{"type":39,"tag":55,"props":1376,"children":1378},{"className":1377},[],[1379],{"type":44,"value":1380},"started",{"type":44,"value":1367},{"type":39,"tag":55,"props":1383,"children":1385},{"className":1384},[],[1386],{"type":44,"value":1387},"completed",{"type":44,"value":1367},{"type":39,"tag":55,"props":1390,"children":1392},{"className":1391},[],[1393],{"type":44,"value":1394},"canceled",{"type":44,"value":1367},{"type":39,"tag":55,"props":1397,"children":1399},{"className":1398},[],[1400],{"type":44,"value":1401},"triage",{"type":44,"value":1367},{"type":39,"tag":55,"props":1404,"children":1406},{"className":1405},[],[1407],{"type":44,"value":1408},"duplicate",{"type":44,"value":1410},"),\n",{"type":39,"tag":55,"props":1412,"children":1414},{"className":1413},[],[1415],{"type":44,"value":1416},"--assignee EMAIL",{"type":44,"value":1418}," (or ",{"type":39,"tag":55,"props":1420,"children":1422},{"className":1421},[],[1423],{"type":44,"value":1424},"me",{"type":44,"value":1426}," — resolves the viewer id first), ",{"type":39,"tag":55,"props":1428,"children":1430},{"className":1429},[],[1431],{"type":44,"value":1432},"--label NAME",{"type":44,"value":1434},". Instance specifics come from\n",{"type":39,"tag":55,"props":1436,"children":1438},{"className":1437},[],[1439],{"type":44,"value":339},{"type":44,"value":1441}," above.",{"type":39,"tag":101,"props":1443,"children":1444},{},[1445,1451,1453,1459],{"type":39,"tag":55,"props":1446,"children":1448},{"className":1447},[],[1449],{"type":44,"value":1450},"--query TEXT",{"type":44,"value":1452}," does a case-insensitive substring match over title and description; combined with\nother flags it's wrapped as ",{"type":39,"tag":55,"props":1454,"children":1456},{"className":1455},[],[1457],{"type":44,"value":1458},"and: [ {…flags}, {or: [title, description]} ]",{"type":44,"value":1460},".",{"type":39,"tag":101,"props":1462,"children":1463},{},[1464,1470,1472,1477,1479,1485,1487,1493,1495,1500,1501,1507,1508,1514,1515,1521,1522,1528,1529,1535],{"type":39,"tag":55,"props":1465,"children":1467},{"className":1466},[],[1468],{"type":44,"value":1469},"--limit N",{"type":44,"value":1471}," caps total issues fetched (default 50, ",{"type":39,"tag":55,"props":1473,"children":1475},{"className":1474},[],[1476],{"type":44,"value":908},{"type":44,"value":1478}," = everything); ",{"type":39,"tag":55,"props":1480,"children":1482},{"className":1481},[],[1483],{"type":44,"value":1484},"--page-size N",{"type":44,"value":1486}," (max 100)\nsets the per-page size; ",{"type":39,"tag":55,"props":1488,"children":1490},{"className":1489},[],[1491],{"type":44,"value":1492},"--json",{"type":44,"value":1494}," emits one JSON object per issue instead of TSV with a header\n(",{"type":39,"tag":55,"props":1496,"children":1498},{"className":1497},[],[1499],{"type":44,"value":133},{"type":44,"value":1344},{"type":39,"tag":55,"props":1502,"children":1504},{"className":1503},[],[1505],{"type":44,"value":1506},"title",{"type":44,"value":1344},{"type":39,"tag":55,"props":1509,"children":1511},{"className":1510},[],[1512],{"type":44,"value":1513},"state",{"type":44,"value":1344},{"type":39,"tag":55,"props":1516,"children":1518},{"className":1517},[],[1519],{"type":44,"value":1520},"assignee",{"type":44,"value":1344},{"type":39,"tag":55,"props":1523,"children":1525},{"className":1524},[],[1526],{"type":44,"value":1527},"updatedAt",{"type":44,"value":1344},{"type":39,"tag":55,"props":1530,"children":1532},{"className":1531},[],[1533],{"type":44,"value":1534},"url",{"type":44,"value":1536},"). Row counts go to stderr.",{"type":39,"tag":101,"props":1538,"children":1539},{},[1540,1542,1547,1549,1554,1556,1561,1563,1569],{"type":44,"value":1541},"Exit codes: ",{"type":39,"tag":55,"props":1543,"children":1545},{"className":1544},[],[1546],{"type":44,"value":908},{"type":44,"value":1548}," success, ",{"type":39,"tag":55,"props":1550,"children":1552},{"className":1551},[],[1553],{"type":44,"value":916},{"type":44,"value":1555}," request failed, GraphQL ",{"type":39,"tag":55,"props":1557,"children":1559},{"className":1558},[],[1560],{"type":44,"value":714},{"type":44,"value":1562},", or bad arguments — the API's own\nmessage and ",{"type":39,"tag":55,"props":1564,"children":1566},{"className":1565},[],[1567],{"type":44,"value":1568},"extensions.code",{"type":44,"value":1570}," are on stderr.",{"type":39,"tag":40,"props":1572,"children":1573},{},[1574,1576,1581,1583,1589,1591,1597],{"type":44,"value":1575},"If the script errors, read it — it's plain ",{"type":39,"tag":55,"props":1577,"children":1579},{"className":1578},[],[1580],{"type":44,"value":287},{"type":44,"value":1582}," + ",{"type":39,"tag":55,"props":1584,"children":1586},{"className":1585},[],[1587],{"type":44,"value":1588},"jq",{"type":44,"value":1590}," — and debug against ",{"type":39,"tag":55,"props":1592,"children":1594},{"className":1593},[],[1595],{"type":44,"value":1596},"references\u002Fapi.md",{"type":44,"value":1460},{"type":39,"tag":40,"props":1599,"children":1600},{},[1601,1603,1609,1610,1616,1617,1623,1625,1631,1632,1638,1640,1646,1648,1653],{"type":44,"value":1602},"For filter shapes the flags don't cover — comparators like ",{"type":39,"tag":55,"props":1604,"children":1606},{"className":1605},[],[1607],{"type":44,"value":1608},"lte",{"type":44,"value":171},{"type":39,"tag":55,"props":1611,"children":1613},{"className":1612},[],[1614],{"type":44,"value":1615},"gte",{"type":44,"value":1344},{"type":39,"tag":55,"props":1618,"children":1620},{"className":1619},[],[1621],{"type":44,"value":1622},"or",{"type":44,"value":1624}," groups, nested\n",{"type":39,"tag":55,"props":1626,"children":1628},{"className":1627},[],[1629],{"type":44,"value":1630},"some",{"type":44,"value":171},{"type":39,"tag":55,"props":1633,"children":1635},{"className":1634},[],[1636],{"type":44,"value":1637},"every",{"type":44,"value":1639}," — pass the ",{"type":39,"tag":55,"props":1641,"children":1643},{"className":1642},[],[1644],{"type":44,"value":1645},"filter",{"type":44,"value":1647}," object yourself with ",{"type":39,"tag":55,"props":1649,"children":1651},{"className":1650},[],[1652],{"type":44,"value":433},{"type":44,"value":1654},":",{"type":39,"tag":80,"props":1656,"children":1658},{"className":210,"code":1657,"language":212,"meta":88,"style":88},"linear_gql 'query($teamKey: String!) {\n  issues(first: 50, orderBy: updatedAt, filter: {\n    team: { key: { eq: $teamKey } }\n    priority: { lte: 2, gte: 1 }\n    state: { type: { nin: [\"completed\", \"canceled\"] } }\n  }) { nodes { identifier title priority state { name } assignee { name } } }\n}' '{\"teamKey\": \"ENG\"}' | jq '.data.issues.nodes'\n",[1659],{"type":39,"tag":55,"props":1660,"children":1661},{"__ignoreMap":88},[1662,1678,1686,1694,1702,1710,1718],{"type":39,"tag":218,"props":1663,"children":1664},{"class":220,"line":221},[1665,1669,1673],{"type":39,"tag":218,"props":1666,"children":1667},{"style":284},[1668],{"type":44,"value":433},{"type":39,"tag":218,"props":1670,"children":1671},{"style":237},[1672],{"type":44,"value":387},{"type":39,"tag":218,"props":1674,"children":1675},{"style":248},[1676],{"type":44,"value":1677},"query($teamKey: String!) {\n",{"type":39,"tag":218,"props":1679,"children":1680},{"class":220,"line":314},[1681],{"type":39,"tag":218,"props":1682,"children":1683},{"style":248},[1684],{"type":44,"value":1685},"  issues(first: 50, orderBy: updatedAt, filter: {\n",{"type":39,"tag":218,"props":1687,"children":1688},{"class":220,"line":351},[1689],{"type":39,"tag":218,"props":1690,"children":1691},{"style":248},[1692],{"type":44,"value":1693},"    team: { key: { eq: $teamKey } }\n",{"type":39,"tag":218,"props":1695,"children":1696},{"class":220,"line":376},[1697],{"type":39,"tag":218,"props":1698,"children":1699},{"style":248},[1700],{"type":44,"value":1701},"    priority: { lte: 2, gte: 1 }\n",{"type":39,"tag":218,"props":1703,"children":1704},{"class":220,"line":623},[1705],{"type":39,"tag":218,"props":1706,"children":1707},{"style":248},[1708],{"type":44,"value":1709},"    state: { type: { nin: [\"completed\", \"canceled\"] } }\n",{"type":39,"tag":218,"props":1711,"children":1712},{"class":220,"line":656},[1713],{"type":39,"tag":218,"props":1714,"children":1715},{"style":248},[1716],{"type":44,"value":1717},"  }) { nodes { identifier title priority state { name } assignee { name } } }\n",{"type":39,"tag":218,"props":1719,"children":1720},{"class":220,"line":680},[1721,1725,1729,1733,1738,1742,1746,1750,1754,1759],{"type":39,"tag":218,"props":1722,"children":1723},{"style":248},[1724],{"type":44,"value":507},{"type":39,"tag":218,"props":1726,"children":1727},{"style":237},[1728],{"type":44,"value":397},{"type":39,"tag":218,"props":1730,"children":1731},{"style":237},[1732],{"type":44,"value":387},{"type":39,"tag":218,"props":1734,"children":1735},{"style":248},[1736],{"type":44,"value":1737},"{\"teamKey\": \"ENG\"}",{"type":39,"tag":218,"props":1739,"children":1740},{"style":237},[1741],{"type":44,"value":397},{"type":39,"tag":218,"props":1743,"children":1744},{"style":237},[1745],{"type":44,"value":402},{"type":39,"tag":218,"props":1747,"children":1748},{"style":284},[1749],{"type":44,"value":407},{"type":39,"tag":218,"props":1751,"children":1752},{"style":237},[1753],{"type":44,"value":387},{"type":39,"tag":218,"props":1755,"children":1756},{"style":248},[1757],{"type":44,"value":1758},".data.issues.nodes",{"type":39,"tag":218,"props":1760,"children":1761},{"style":237},[1762],{"type":44,"value":781},{"type":39,"tag":40,"props":1764,"children":1765},{},[1766,1768,1773],{"type":44,"value":1767},"Full filter grammar: ",{"type":39,"tag":55,"props":1769,"children":1771},{"className":1770},[],[1772],{"type":44,"value":1596},{"type":44,"value":1774},", section Filter operators.",{"type":39,"tag":789,"props":1776,"children":1778},{"id":1777},"_5-create-an-issue",[1779],{"type":44,"value":1780},"5. Create an issue",{"type":39,"tag":40,"props":1782,"children":1783},{},[1784],{"type":44,"value":1785},"You need the team's UUID (not its key). Get it once (recipe 8), then:",{"type":39,"tag":80,"props":1787,"children":1789},{"className":210,"code":1788,"language":212,"meta":88,"style":88},"linear_gql 'mutation($input: IssueCreateInput!) {\n  issueCreate(input: $input) {\n    success\n    issue { id identifier url }\n  }\n}' '{\"input\": {\n  \"teamId\": \"TEAM_UUID\",\n  \"title\": \"Crash on empty input\",\n  \"description\": \"Steps to reproduce…\\n\\n1. …\",\n  \"priority\": 2,\n  \"assigneeId\": \"USER_UUID\",\n  \"labelIds\": [\"LABEL_UUID\"]\n}}' | jq '.data.issueCreate'\n",[1790],{"type":39,"tag":55,"props":1791,"children":1792},{"__ignoreMap":88},[1793,1809,1817,1825,1833,1840,1860,1868,1876,1884,1892,1900,1908],{"type":39,"tag":218,"props":1794,"children":1795},{"class":220,"line":221},[1796,1800,1804],{"type":39,"tag":218,"props":1797,"children":1798},{"style":284},[1799],{"type":44,"value":433},{"type":39,"tag":218,"props":1801,"children":1802},{"style":237},[1803],{"type":44,"value":387},{"type":39,"tag":218,"props":1805,"children":1806},{"style":248},[1807],{"type":44,"value":1808},"mutation($input: IssueCreateInput!) {\n",{"type":39,"tag":218,"props":1810,"children":1811},{"class":220,"line":314},[1812],{"type":39,"tag":218,"props":1813,"children":1814},{"style":248},[1815],{"type":44,"value":1816},"  issueCreate(input: $input) {\n",{"type":39,"tag":218,"props":1818,"children":1819},{"class":220,"line":351},[1820],{"type":39,"tag":218,"props":1821,"children":1822},{"style":248},[1823],{"type":44,"value":1824},"    success\n",{"type":39,"tag":218,"props":1826,"children":1827},{"class":220,"line":376},[1828],{"type":39,"tag":218,"props":1829,"children":1830},{"style":248},[1831],{"type":44,"value":1832},"    issue { id identifier url }\n",{"type":39,"tag":218,"props":1834,"children":1835},{"class":220,"line":623},[1836],{"type":39,"tag":218,"props":1837,"children":1838},{"style":248},[1839],{"type":44,"value":865},{"type":39,"tag":218,"props":1841,"children":1842},{"class":220,"line":656},[1843,1847,1851,1855],{"type":39,"tag":218,"props":1844,"children":1845},{"style":248},[1846],{"type":44,"value":507},{"type":39,"tag":218,"props":1848,"children":1849},{"style":237},[1850],{"type":44,"value":397},{"type":39,"tag":218,"props":1852,"children":1853},{"style":237},[1854],{"type":44,"value":387},{"type":39,"tag":218,"props":1856,"children":1857},{"style":248},[1858],{"type":44,"value":1859},"{\"input\": {\n",{"type":39,"tag":218,"props":1861,"children":1862},{"class":220,"line":680},[1863],{"type":39,"tag":218,"props":1864,"children":1865},{"style":248},[1866],{"type":44,"value":1867},"  \"teamId\": \"TEAM_UUID\",\n",{"type":39,"tag":218,"props":1869,"children":1870},{"class":220,"line":694},[1871],{"type":39,"tag":218,"props":1872,"children":1873},{"style":248},[1874],{"type":44,"value":1875},"  \"title\": \"Crash on empty input\",\n",{"type":39,"tag":218,"props":1877,"children":1878},{"class":220,"line":1127},[1879],{"type":39,"tag":218,"props":1880,"children":1881},{"style":248},[1882],{"type":44,"value":1883},"  \"description\": \"Steps to reproduce…\\n\\n1. …\",\n",{"type":39,"tag":218,"props":1885,"children":1886},{"class":220,"line":1136},[1887],{"type":39,"tag":218,"props":1888,"children":1889},{"style":248},[1890],{"type":44,"value":1891},"  \"priority\": 2,\n",{"type":39,"tag":218,"props":1893,"children":1894},{"class":220,"line":1145},[1895],{"type":39,"tag":218,"props":1896,"children":1897},{"style":248},[1898],{"type":44,"value":1899},"  \"assigneeId\": \"USER_UUID\",\n",{"type":39,"tag":218,"props":1901,"children":1902},{"class":220,"line":27},[1903],{"type":39,"tag":218,"props":1904,"children":1905},{"style":248},[1906],{"type":44,"value":1907},"  \"labelIds\": [\"LABEL_UUID\"]\n",{"type":39,"tag":218,"props":1909,"children":1910},{"class":220,"line":1162},[1911,1916,1920,1924,1928,1932,1937],{"type":39,"tag":218,"props":1912,"children":1913},{"style":248},[1914],{"type":44,"value":1915},"}}",{"type":39,"tag":218,"props":1917,"children":1918},{"style":237},[1919],{"type":44,"value":397},{"type":39,"tag":218,"props":1921,"children":1922},{"style":237},[1923],{"type":44,"value":402},{"type":39,"tag":218,"props":1925,"children":1926},{"style":284},[1927],{"type":44,"value":407},{"type":39,"tag":218,"props":1929,"children":1930},{"style":237},[1931],{"type":44,"value":387},{"type":39,"tag":218,"props":1933,"children":1934},{"style":248},[1935],{"type":44,"value":1936},".data.issueCreate",{"type":39,"tag":218,"props":1938,"children":1939},{"style":237},[1940],{"type":44,"value":781},{"type":39,"tag":40,"props":1942,"children":1943},{},[1944,1950,1952,1957],{"type":39,"tag":55,"props":1945,"children":1947},{"className":1946},[],[1948],{"type":44,"value":1949},"description",{"type":44,"value":1951}," is ",{"type":39,"tag":47,"props":1953,"children":1954},{},[1955],{"type":44,"value":1956},"Markdown",{"type":44,"value":1460},{"type":39,"tag":789,"props":1959,"children":1961},{"id":1960},"_6-update-an-issue-change-state-assignee-priority",[1962],{"type":44,"value":1963},"6. Update an issue (change state, assignee, priority, …)",{"type":39,"tag":80,"props":1965,"children":1967},{"className":210,"code":1966,"language":212,"meta":88,"style":88},"linear_gql 'mutation($id: String!, $input: IssueUpdateInput!) {\n  issueUpdate(id: $id, input: $input) {\n    success\n    issue { identifier state { name } assignee { name } }\n  }\n}' '{\"id\": \"ENG-123\", \"input\": {\"stateId\": \"STATE_UUID\", \"priority\": 1}}' | jq '.data.issueUpdate'\n",[1968],{"type":39,"tag":55,"props":1969,"children":1970},{"__ignoreMap":88},[1971,1987,1995,2002,2010,2017],{"type":39,"tag":218,"props":1972,"children":1973},{"class":220,"line":221},[1974,1978,1982],{"type":39,"tag":218,"props":1975,"children":1976},{"style":284},[1977],{"type":44,"value":433},{"type":39,"tag":218,"props":1979,"children":1980},{"style":237},[1981],{"type":44,"value":387},{"type":39,"tag":218,"props":1983,"children":1984},{"style":248},[1985],{"type":44,"value":1986},"mutation($id: String!, $input: IssueUpdateInput!) {\n",{"type":39,"tag":218,"props":1988,"children":1989},{"class":220,"line":314},[1990],{"type":39,"tag":218,"props":1991,"children":1992},{"style":248},[1993],{"type":44,"value":1994},"  issueUpdate(id: $id, input: $input) {\n",{"type":39,"tag":218,"props":1996,"children":1997},{"class":220,"line":351},[1998],{"type":39,"tag":218,"props":1999,"children":2000},{"style":248},[2001],{"type":44,"value":1824},{"type":39,"tag":218,"props":2003,"children":2004},{"class":220,"line":376},[2005],{"type":39,"tag":218,"props":2006,"children":2007},{"style":248},[2008],{"type":44,"value":2009},"    issue { identifier state { name } assignee { name } }\n",{"type":39,"tag":218,"props":2011,"children":2012},{"class":220,"line":623},[2013],{"type":39,"tag":218,"props":2014,"children":2015},{"style":248},[2016],{"type":44,"value":865},{"type":39,"tag":218,"props":2018,"children":2019},{"class":220,"line":656},[2020,2024,2028,2032,2037,2041,2045,2049,2053,2058],{"type":39,"tag":218,"props":2021,"children":2022},{"style":248},[2023],{"type":44,"value":507},{"type":39,"tag":218,"props":2025,"children":2026},{"style":237},[2027],{"type":44,"value":397},{"type":39,"tag":218,"props":2029,"children":2030},{"style":237},[2031],{"type":44,"value":387},{"type":39,"tag":218,"props":2033,"children":2034},{"style":248},[2035],{"type":44,"value":2036},"{\"id\": \"ENG-123\", \"input\": {\"stateId\": \"STATE_UUID\", \"priority\": 1}}",{"type":39,"tag":218,"props":2038,"children":2039},{"style":237},[2040],{"type":44,"value":397},{"type":39,"tag":218,"props":2042,"children":2043},{"style":237},[2044],{"type":44,"value":402},{"type":39,"tag":218,"props":2046,"children":2047},{"style":284},[2048],{"type":44,"value":407},{"type":39,"tag":218,"props":2050,"children":2051},{"style":237},[2052],{"type":44,"value":387},{"type":39,"tag":218,"props":2054,"children":2055},{"style":248},[2056],{"type":44,"value":2057},".data.issueUpdate",{"type":39,"tag":218,"props":2059,"children":2060},{"style":237},[2061],{"type":44,"value":781},{"type":39,"tag":40,"props":2063,"children":2064},{},[2065,2067,2072],{"type":44,"value":2066},"To move to \"Done\" \u002F \"In Progress\" \u002F etc. you need the workflow ",{"type":39,"tag":47,"props":2068,"children":2069},{},[2070],{"type":44,"value":2071},"state UUID",{"type":44,"value":2073},", which is per-team\n(recipe 8 shows how to list them).",{"type":39,"tag":789,"props":2075,"children":2077},{"id":2076},"_7-comment-on-an-issue",[2078],{"type":44,"value":2079},"7. Comment on an issue",{"type":39,"tag":80,"props":2081,"children":2083},{"className":210,"code":2082,"language":212,"meta":88,"style":88},"linear_gql 'mutation($input: CommentCreateInput!) {\n  commentCreate(input: $input) { success comment { id url } }\n}' '{\"input\": {\"issueId\": \"ISSUE_UUID\", \"body\": \"Reproduced on main — looking into it.\"}}' \\\n  | jq '.data.commentCreate'\n",[2084],{"type":39,"tag":55,"props":2085,"children":2086},{"__ignoreMap":88},[2087,2103,2111,2139],{"type":39,"tag":218,"props":2088,"children":2089},{"class":220,"line":221},[2090,2094,2098],{"type":39,"tag":218,"props":2091,"children":2092},{"style":284},[2093],{"type":44,"value":433},{"type":39,"tag":218,"props":2095,"children":2096},{"style":237},[2097],{"type":44,"value":387},{"type":39,"tag":218,"props":2099,"children":2100},{"style":248},[2101],{"type":44,"value":2102},"mutation($input: CommentCreateInput!) {\n",{"type":39,"tag":218,"props":2104,"children":2105},{"class":220,"line":314},[2106],{"type":39,"tag":218,"props":2107,"children":2108},{"style":248},[2109],{"type":44,"value":2110},"  commentCreate(input: $input) { success comment { id url } }\n",{"type":39,"tag":218,"props":2112,"children":2113},{"class":220,"line":351},[2114,2118,2122,2126,2131,2135],{"type":39,"tag":218,"props":2115,"children":2116},{"style":248},[2117],{"type":44,"value":507},{"type":39,"tag":218,"props":2119,"children":2120},{"style":237},[2121],{"type":44,"value":397},{"type":39,"tag":218,"props":2123,"children":2124},{"style":237},[2125],{"type":44,"value":387},{"type":39,"tag":218,"props":2127,"children":2128},{"style":248},[2129],{"type":44,"value":2130},"{\"input\": {\"issueId\": \"ISSUE_UUID\", \"body\": \"Reproduced on main — looking into it.\"}}",{"type":39,"tag":218,"props":2132,"children":2133},{"style":237},[2134],{"type":44,"value":397},{"type":39,"tag":218,"props":2136,"children":2137},{"style":231},[2138],{"type":44,"value":311},{"type":39,"tag":218,"props":2140,"children":2141},{"class":220,"line":376},[2142,2147,2151,2155,2160],{"type":39,"tag":218,"props":2143,"children":2144},{"style":237},[2145],{"type":44,"value":2146},"  |",{"type":39,"tag":218,"props":2148,"children":2149},{"style":284},[2150],{"type":44,"value":407},{"type":39,"tag":218,"props":2152,"children":2153},{"style":237},[2154],{"type":44,"value":387},{"type":39,"tag":218,"props":2156,"children":2157},{"style":248},[2158],{"type":44,"value":2159},".data.commentCreate",{"type":39,"tag":218,"props":2161,"children":2162},{"style":237},[2163],{"type":44,"value":781},{"type":39,"tag":40,"props":2165,"children":2166},{},[2167,2173,2175,2181],{"type":39,"tag":55,"props":2168,"children":2170},{"className":2169},[],[2171],{"type":44,"value":2172},"body",{"type":44,"value":2174}," is Markdown. ",{"type":39,"tag":55,"props":2176,"children":2178},{"className":2177},[],[2179],{"type":44,"value":2180},"issueId",{"type":44,"value":2182}," must be the UUID, not the identifier — fetch it with recipe 3 first.",{"type":39,"tag":789,"props":2184,"children":2186},{"id":2185},"_8-discover-teams-workflow-states-labels-members",[2187],{"type":44,"value":2188},"8. Discover teams, workflow states, labels, members",{"type":39,"tag":40,"props":2190,"children":2191},{},[2192],{"type":44,"value":2193},"You'll need these UUIDs for create\u002Fupdate mutations.",{"type":39,"tag":80,"props":2195,"children":2197},{"className":210,"code":2196,"language":212,"meta":88,"style":88},"linear_gql '{\n  teams {\n    nodes {\n      id key name\n      states { nodes { id name type position } }\n      labels { nodes { id name color } }\n      members { nodes { id name email } }\n    }\n  }\n}' | jq '.data.teams.nodes'\n",[2198],{"type":39,"tag":55,"props":2199,"children":2200},{"__ignoreMap":88},[2201,2216,2224,2232,2240,2248,2256,2264,2271,2278],{"type":39,"tag":218,"props":2202,"children":2203},{"class":220,"line":221},[2204,2208,2212],{"type":39,"tag":218,"props":2205,"children":2206},{"style":284},[2207],{"type":44,"value":433},{"type":39,"tag":218,"props":2209,"children":2210},{"style":237},[2211],{"type":44,"value":387},{"type":39,"tag":218,"props":2213,"children":2214},{"style":248},[2215],{"type":44,"value":817},{"type":39,"tag":218,"props":2217,"children":2218},{"class":220,"line":314},[2219],{"type":39,"tag":218,"props":2220,"children":2221},{"style":248},[2222],{"type":44,"value":2223},"  teams {\n",{"type":39,"tag":218,"props":2225,"children":2226},{"class":220,"line":351},[2227],{"type":39,"tag":218,"props":2228,"children":2229},{"style":248},[2230],{"type":44,"value":2231},"    nodes {\n",{"type":39,"tag":218,"props":2233,"children":2234},{"class":220,"line":376},[2235],{"type":39,"tag":218,"props":2236,"children":2237},{"style":248},[2238],{"type":44,"value":2239},"      id key name\n",{"type":39,"tag":218,"props":2241,"children":2242},{"class":220,"line":623},[2243],{"type":39,"tag":218,"props":2244,"children":2245},{"style":248},[2246],{"type":44,"value":2247},"      states { nodes { id name type position } }\n",{"type":39,"tag":218,"props":2249,"children":2250},{"class":220,"line":656},[2251],{"type":39,"tag":218,"props":2252,"children":2253},{"style":248},[2254],{"type":44,"value":2255},"      labels { nodes { id name color } }\n",{"type":39,"tag":218,"props":2257,"children":2258},{"class":220,"line":680},[2259],{"type":39,"tag":218,"props":2260,"children":2261},{"style":248},[2262],{"type":44,"value":2263},"      members { nodes { id name email } }\n",{"type":39,"tag":218,"props":2265,"children":2266},{"class":220,"line":694},[2267],{"type":39,"tag":218,"props":2268,"children":2269},{"style":248},[2270],{"type":44,"value":857},{"type":39,"tag":218,"props":2272,"children":2273},{"class":220,"line":1127},[2274],{"type":39,"tag":218,"props":2275,"children":2276},{"style":248},[2277],{"type":44,"value":865},{"type":39,"tag":218,"props":2279,"children":2280},{"class":220,"line":1136},[2281,2285,2289,2293,2297,2301,2306],{"type":39,"tag":218,"props":2282,"children":2283},{"style":248},[2284],{"type":44,"value":507},{"type":39,"tag":218,"props":2286,"children":2287},{"style":237},[2288],{"type":44,"value":397},{"type":39,"tag":218,"props":2290,"children":2291},{"style":237},[2292],{"type":44,"value":402},{"type":39,"tag":218,"props":2294,"children":2295},{"style":284},[2296],{"type":44,"value":407},{"type":39,"tag":218,"props":2298,"children":2299},{"style":237},[2300],{"type":44,"value":387},{"type":39,"tag":218,"props":2302,"children":2303},{"style":248},[2304],{"type":44,"value":2305},".data.teams.nodes",{"type":39,"tag":218,"props":2307,"children":2308},{"style":237},[2309],{"type":44,"value":781},{"type":39,"tag":40,"props":2311,"children":2312},{},[2313,2315,2321,2323,2328,2329,2334,2335,2340,2341,2346,2347,2352,2353,2358,2359,2364],{"type":44,"value":2314},"State ",{"type":39,"tag":55,"props":2316,"children":2318},{"className":2317},[],[2319],{"type":44,"value":2320},"type",{"type":44,"value":2322}," ∈ ",{"type":39,"tag":55,"props":2324,"children":2326},{"className":2325},[],[2327],{"type":44,"value":1365},{"type":44,"value":1344},{"type":39,"tag":55,"props":2330,"children":2332},{"className":2331},[],[2333],{"type":44,"value":1373},{"type":44,"value":1344},{"type":39,"tag":55,"props":2336,"children":2338},{"className":2337},[],[2339],{"type":44,"value":1380},{"type":44,"value":1344},{"type":39,"tag":55,"props":2342,"children":2344},{"className":2343},[],[2345],{"type":44,"value":1387},{"type":44,"value":1344},{"type":39,"tag":55,"props":2348,"children":2350},{"className":2349},[],[2351],{"type":44,"value":1394},{"type":44,"value":1344},{"type":39,"tag":55,"props":2354,"children":2356},{"className":2355},[],[2357],{"type":44,"value":1401},{"type":44,"value":1344},{"type":39,"tag":55,"props":2360,"children":2362},{"className":2361},[],[2363],{"type":44,"value":1408},{"type":44,"value":1460},{"type":39,"tag":789,"props":2366,"children":2368},{"id":2367},"_9-projects-and-cycles",[2369],{"type":44,"value":2370},"9. Projects and cycles",{"type":39,"tag":80,"props":2372,"children":2374},{"className":210,"code":2373,"language":212,"meta":88,"style":88},"linear_gql '{\n  projects(first: 25, orderBy: updatedAt, filter: {status: {type: {neq: \"completed\"}}}) {\n    nodes {\n      id name description progress targetDate url\n      status { name type }\n      lead { name }\n      teams { nodes { key } }\n      issues(first: 5) { nodes { identifier title state { name } } }\n    }\n  }\n}' | jq '.data.projects.nodes'\n\n# current cycle for a team\nlinear_gql 'query($teamId: String!) {\n  team(id: $teamId) {\n    activeCycle {\n      id number name startsAt endsAt progress\n      issues { nodes { identifier title state { name } assignee { name } } }\n    }\n  }\n}' '{\"teamId\": \"TEAM_UUID\"}' | jq '.data.team.activeCycle'\n",[2375],{"type":39,"tag":55,"props":2376,"children":2377},{"__ignoreMap":88},[2378,2393,2401,2408,2416,2424,2432,2440,2448,2455,2462,2494,2503,2511,2527,2535,2543,2552,2561,2569,2577],{"type":39,"tag":218,"props":2379,"children":2380},{"class":220,"line":221},[2381,2385,2389],{"type":39,"tag":218,"props":2382,"children":2383},{"style":284},[2384],{"type":44,"value":433},{"type":39,"tag":218,"props":2386,"children":2387},{"style":237},[2388],{"type":44,"value":387},{"type":39,"tag":218,"props":2390,"children":2391},{"style":248},[2392],{"type":44,"value":817},{"type":39,"tag":218,"props":2394,"children":2395},{"class":220,"line":314},[2396],{"type":39,"tag":218,"props":2397,"children":2398},{"style":248},[2399],{"type":44,"value":2400},"  projects(first: 25, orderBy: updatedAt, filter: {status: {type: {neq: \"completed\"}}}) {\n",{"type":39,"tag":218,"props":2402,"children":2403},{"class":220,"line":351},[2404],{"type":39,"tag":218,"props":2405,"children":2406},{"style":248},[2407],{"type":44,"value":2231},{"type":39,"tag":218,"props":2409,"children":2410},{"class":220,"line":376},[2411],{"type":39,"tag":218,"props":2412,"children":2413},{"style":248},[2414],{"type":44,"value":2415},"      id name description progress targetDate url\n",{"type":39,"tag":218,"props":2417,"children":2418},{"class":220,"line":623},[2419],{"type":39,"tag":218,"props":2420,"children":2421},{"style":248},[2422],{"type":44,"value":2423},"      status { name type }\n",{"type":39,"tag":218,"props":2425,"children":2426},{"class":220,"line":656},[2427],{"type":39,"tag":218,"props":2428,"children":2429},{"style":248},[2430],{"type":44,"value":2431},"      lead { name }\n",{"type":39,"tag":218,"props":2433,"children":2434},{"class":220,"line":680},[2435],{"type":39,"tag":218,"props":2436,"children":2437},{"style":248},[2438],{"type":44,"value":2439},"      teams { nodes { key } }\n",{"type":39,"tag":218,"props":2441,"children":2442},{"class":220,"line":694},[2443],{"type":39,"tag":218,"props":2444,"children":2445},{"style":248},[2446],{"type":44,"value":2447},"      issues(first: 5) { nodes { identifier title state { name } } }\n",{"type":39,"tag":218,"props":2449,"children":2450},{"class":220,"line":1127},[2451],{"type":39,"tag":218,"props":2452,"children":2453},{"style":248},[2454],{"type":44,"value":857},{"type":39,"tag":218,"props":2456,"children":2457},{"class":220,"line":1136},[2458],{"type":39,"tag":218,"props":2459,"children":2460},{"style":248},[2461],{"type":44,"value":865},{"type":39,"tag":218,"props":2463,"children":2464},{"class":220,"line":1145},[2465,2469,2473,2477,2481,2485,2490],{"type":39,"tag":218,"props":2466,"children":2467},{"style":248},[2468],{"type":44,"value":507},{"type":39,"tag":218,"props":2470,"children":2471},{"style":237},[2472],{"type":44,"value":397},{"type":39,"tag":218,"props":2474,"children":2475},{"style":237},[2476],{"type":44,"value":402},{"type":39,"tag":218,"props":2478,"children":2479},{"style":284},[2480],{"type":44,"value":407},{"type":39,"tag":218,"props":2482,"children":2483},{"style":237},[2484],{"type":44,"value":387},{"type":39,"tag":218,"props":2486,"children":2487},{"style":248},[2488],{"type":44,"value":2489},".data.projects.nodes",{"type":39,"tag":218,"props":2491,"children":2492},{"style":237},[2493],{"type":44,"value":781},{"type":39,"tag":218,"props":2495,"children":2496},{"class":220,"line":27},[2497],{"type":39,"tag":218,"props":2498,"children":2500},{"emptyLinePlaceholder":2499},true,[2501],{"type":44,"value":2502},"\n",{"type":39,"tag":218,"props":2504,"children":2505},{"class":220,"line":1162},[2506],{"type":39,"tag":218,"props":2507,"children":2508},{"style":258},[2509],{"type":44,"value":2510},"# current cycle for a team\n",{"type":39,"tag":218,"props":2512,"children":2513},{"class":220,"line":1171},[2514,2518,2522],{"type":39,"tag":218,"props":2515,"children":2516},{"style":284},[2517],{"type":44,"value":433},{"type":39,"tag":218,"props":2519,"children":2520},{"style":237},[2521],{"type":44,"value":387},{"type":39,"tag":218,"props":2523,"children":2524},{"style":248},[2525],{"type":44,"value":2526},"query($teamId: String!) {\n",{"type":39,"tag":218,"props":2528,"children":2529},{"class":220,"line":1180},[2530],{"type":39,"tag":218,"props":2531,"children":2532},{"style":248},[2533],{"type":44,"value":2534},"  team(id: $teamId) {\n",{"type":39,"tag":218,"props":2536,"children":2537},{"class":220,"line":1188},[2538],{"type":39,"tag":218,"props":2539,"children":2540},{"style":248},[2541],{"type":44,"value":2542},"    activeCycle {\n",{"type":39,"tag":218,"props":2544,"children":2546},{"class":220,"line":2545},17,[2547],{"type":39,"tag":218,"props":2548,"children":2549},{"style":248},[2550],{"type":44,"value":2551},"      id number name startsAt endsAt progress\n",{"type":39,"tag":218,"props":2553,"children":2555},{"class":220,"line":2554},18,[2556],{"type":39,"tag":218,"props":2557,"children":2558},{"style":248},[2559],{"type":44,"value":2560},"      issues { nodes { identifier title state { name } assignee { name } } }\n",{"type":39,"tag":218,"props":2562,"children":2564},{"class":220,"line":2563},19,[2565],{"type":39,"tag":218,"props":2566,"children":2567},{"style":248},[2568],{"type":44,"value":857},{"type":39,"tag":218,"props":2570,"children":2572},{"class":220,"line":2571},20,[2573],{"type":39,"tag":218,"props":2574,"children":2575},{"style":248},[2576],{"type":44,"value":865},{"type":39,"tag":218,"props":2578,"children":2580},{"class":220,"line":2579},21,[2581,2585,2589,2593,2598,2602,2606,2610,2614,2619],{"type":39,"tag":218,"props":2582,"children":2583},{"style":248},[2584],{"type":44,"value":507},{"type":39,"tag":218,"props":2586,"children":2587},{"style":237},[2588],{"type":44,"value":397},{"type":39,"tag":218,"props":2590,"children":2591},{"style":237},[2592],{"type":44,"value":387},{"type":39,"tag":218,"props":2594,"children":2595},{"style":248},[2596],{"type":44,"value":2597},"{\"teamId\": \"TEAM_UUID\"}",{"type":39,"tag":218,"props":2599,"children":2600},{"style":237},[2601],{"type":44,"value":397},{"type":39,"tag":218,"props":2603,"children":2604},{"style":237},[2605],{"type":44,"value":402},{"type":39,"tag":218,"props":2607,"children":2608},{"style":284},[2609],{"type":44,"value":407},{"type":39,"tag":218,"props":2611,"children":2612},{"style":237},[2613],{"type":44,"value":387},{"type":39,"tag":218,"props":2615,"children":2616},{"style":248},[2617],{"type":44,"value":2618},".data.team.activeCycle",{"type":39,"tag":218,"props":2620,"children":2621},{"style":237},[2622],{"type":44,"value":781},{"type":39,"tag":40,"props":2624,"children":2625},{},[2626,2628,2634,2636,2642,2644,2650,2652,2658,2660,2666,2667,2673,2675,2680],{"type":44,"value":2627},"Connections have no ",{"type":39,"tag":55,"props":2629,"children":2631},{"className":2630},[],[2632],{"type":44,"value":2633},"totalCount",{"type":44,"value":2635}," field — to count issues, paginate and count ",{"type":39,"tag":55,"props":2637,"children":2639},{"className":2638},[],[2640],{"type":44,"value":2641},"nodes",{"type":44,"value":2643},", or read an\naggregate field like ",{"type":39,"tag":55,"props":2645,"children":2647},{"className":2646},[],[2648],{"type":44,"value":2649},"team { issueCount }",{"type":44,"value":2651},". Exception: the search payloads (",{"type":39,"tag":55,"props":2653,"children":2655},{"className":2654},[],[2656],{"type":44,"value":2657},"searchIssues",{"type":44,"value":2659},",\n",{"type":39,"tag":55,"props":2661,"children":2663},{"className":2662},[],[2664],{"type":44,"value":2665},"searchProjects",{"type":44,"value":1344},{"type":39,"tag":55,"props":2668,"children":2670},{"className":2669},[],[2671],{"type":44,"value":2672},"searchDocuments",{"type":44,"value":2674},") do return ",{"type":39,"tag":55,"props":2676,"children":2678},{"className":2677},[],[2679],{"type":44,"value":2633},{"type":44,"value":1460},{"type":39,"tag":789,"props":2682,"children":2684},{"id":2683},"_10-recent-activity-across-the-workspace",[2685],{"type":44,"value":2686},"10. Recent activity across the workspace",{"type":39,"tag":80,"props":2688,"children":2690},{"className":210,"code":2689,"language":212,"meta":88,"style":88},"linear_gql '{\n  issues(first: 25, orderBy: updatedAt) {\n    nodes { identifier title state { name } assignee { name } team { key } updatedAt }\n  }\n}' | jq '.data.issues.nodes'\n",[2691],{"type":39,"tag":55,"props":2692,"children":2693},{"__ignoreMap":88},[2694,2709,2717,2725,2732],{"type":39,"tag":218,"props":2695,"children":2696},{"class":220,"line":221},[2697,2701,2705],{"type":39,"tag":218,"props":2698,"children":2699},{"style":284},[2700],{"type":44,"value":433},{"type":39,"tag":218,"props":2702,"children":2703},{"style":237},[2704],{"type":44,"value":387},{"type":39,"tag":218,"props":2706,"children":2707},{"style":248},[2708],{"type":44,"value":817},{"type":39,"tag":218,"props":2710,"children":2711},{"class":220,"line":314},[2712],{"type":39,"tag":218,"props":2713,"children":2714},{"style":248},[2715],{"type":44,"value":2716},"  issues(first: 25, orderBy: updatedAt) {\n",{"type":39,"tag":218,"props":2718,"children":2719},{"class":220,"line":351},[2720],{"type":39,"tag":218,"props":2721,"children":2722},{"style":248},[2723],{"type":44,"value":2724},"    nodes { identifier title state { name } assignee { name } team { key } updatedAt }\n",{"type":39,"tag":218,"props":2726,"children":2727},{"class":220,"line":376},[2728],{"type":39,"tag":218,"props":2729,"children":2730},{"style":248},[2731],{"type":44,"value":865},{"type":39,"tag":218,"props":2733,"children":2734},{"class":220,"line":623},[2735,2739,2743,2747,2751,2755,2759],{"type":39,"tag":218,"props":2736,"children":2737},{"style":248},[2738],{"type":44,"value":507},{"type":39,"tag":218,"props":2740,"children":2741},{"style":237},[2742],{"type":44,"value":397},{"type":39,"tag":218,"props":2744,"children":2745},{"style":237},[2746],{"type":44,"value":402},{"type":39,"tag":218,"props":2748,"children":2749},{"style":284},[2750],{"type":44,"value":407},{"type":39,"tag":218,"props":2752,"children":2753},{"style":237},[2754],{"type":44,"value":387},{"type":39,"tag":218,"props":2756,"children":2757},{"style":248},[2758],{"type":44,"value":1758},{"type":39,"tag":218,"props":2760,"children":2761},{"style":237},[2762],{"type":44,"value":781},{"type":39,"tag":153,"props":2764,"children":2766},{"id":2765},"pagination",[2767],{"type":44,"value":2768},"Pagination",{"type":39,"tag":40,"props":2770,"children":2771},{},[2772,2774,2780,2781,2786,2787,2793,2794,2800,2802,2807,2809,2815],{"type":44,"value":2773},"Every list field (",{"type":39,"tag":55,"props":2775,"children":2777},{"className":2776},[],[2778],{"type":44,"value":2779},"issues",{"type":44,"value":1344},{"type":39,"tag":55,"props":2782,"children":2784},{"className":2783},[],[2785],{"type":44,"value":2641},{"type":44,"value":1344},{"type":39,"tag":55,"props":2788,"children":2790},{"className":2789},[],[2791],{"type":44,"value":2792},"projects",{"type":44,"value":1344},{"type":39,"tag":55,"props":2795,"children":2797},{"className":2796},[],[2798],{"type":44,"value":2799},"comments",{"type":44,"value":2801},", …) is a ",{"type":39,"tag":47,"props":2803,"children":2804},{},[2805],{"type":44,"value":2806},"connection",{"type":44,"value":2808}," with cursor\npagination. The response carries ",{"type":39,"tag":55,"props":2810,"children":2812},{"className":2811},[],[2813],{"type":44,"value":2814},"pageInfo",{"type":44,"value":1654},{"type":39,"tag":80,"props":2817,"children":2819},{"className":210,"code":2818,"language":212,"meta":88,"style":88},"linear_gql 'query($cursor: String) {\n  issues(first: 50, after: $cursor, orderBy: createdAt) {\n    pageInfo { hasNextPage endCursor }\n    nodes { identifier title }\n  }\n}' '{\"cursor\": null}' | jq '.data.issues'\n",[2820],{"type":39,"tag":55,"props":2821,"children":2822},{"__ignoreMap":88},[2823,2839,2847,2855,2863,2870],{"type":39,"tag":218,"props":2824,"children":2825},{"class":220,"line":221},[2826,2830,2834],{"type":39,"tag":218,"props":2827,"children":2828},{"style":284},[2829],{"type":44,"value":433},{"type":39,"tag":218,"props":2831,"children":2832},{"style":237},[2833],{"type":44,"value":387},{"type":39,"tag":218,"props":2835,"children":2836},{"style":248},[2837],{"type":44,"value":2838},"query($cursor: String) {\n",{"type":39,"tag":218,"props":2840,"children":2841},{"class":220,"line":314},[2842],{"type":39,"tag":218,"props":2843,"children":2844},{"style":248},[2845],{"type":44,"value":2846},"  issues(first: 50, after: $cursor, orderBy: createdAt) {\n",{"type":39,"tag":218,"props":2848,"children":2849},{"class":220,"line":351},[2850],{"type":39,"tag":218,"props":2851,"children":2852},{"style":248},[2853],{"type":44,"value":2854},"    pageInfo { hasNextPage endCursor }\n",{"type":39,"tag":218,"props":2856,"children":2857},{"class":220,"line":376},[2858],{"type":39,"tag":218,"props":2859,"children":2860},{"style":248},[2861],{"type":44,"value":2862},"    nodes { identifier title }\n",{"type":39,"tag":218,"props":2864,"children":2865},{"class":220,"line":623},[2866],{"type":39,"tag":218,"props":2867,"children":2868},{"style":248},[2869],{"type":44,"value":865},{"type":39,"tag":218,"props":2871,"children":2872},{"class":220,"line":656},[2873,2877,2881,2885,2890,2894,2898,2902,2906,2911],{"type":39,"tag":218,"props":2874,"children":2875},{"style":248},[2876],{"type":44,"value":507},{"type":39,"tag":218,"props":2878,"children":2879},{"style":237},[2880],{"type":44,"value":397},{"type":39,"tag":218,"props":2882,"children":2883},{"style":237},[2884],{"type":44,"value":387},{"type":39,"tag":218,"props":2886,"children":2887},{"style":248},[2888],{"type":44,"value":2889},"{\"cursor\": null}",{"type":39,"tag":218,"props":2891,"children":2892},{"style":237},[2893],{"type":44,"value":397},{"type":39,"tag":218,"props":2895,"children":2896},{"style":237},[2897],{"type":44,"value":402},{"type":39,"tag":218,"props":2899,"children":2900},{"style":284},[2901],{"type":44,"value":407},{"type":39,"tag":218,"props":2903,"children":2904},{"style":237},[2905],{"type":44,"value":387},{"type":39,"tag":218,"props":2907,"children":2908},{"style":248},[2909],{"type":44,"value":2910},".data.issues",{"type":39,"tag":218,"props":2912,"children":2913},{"style":237},[2914],{"type":44,"value":781},{"type":39,"tag":40,"props":2916,"children":2917},{},[2918,2920,2925,2927,2933,2935,2941,2942,2948,2950,2955,2957,2962,2964,2970,2972,2977,2979,2985,2987,2993],{"type":44,"value":2919},"Loop: pass ",{"type":39,"tag":55,"props":2921,"children":2923},{"className":2922},[],[2924],{"type":44,"value":1264},{"type":44,"value":2926}," as ",{"type":39,"tag":55,"props":2928,"children":2930},{"className":2929},[],[2931],{"type":44,"value":2932},"$cursor",{"type":44,"value":2934},", stop when ",{"type":39,"tag":55,"props":2936,"children":2938},{"className":2937},[],[2939],{"type":44,"value":2940},"hasNextPage",{"type":44,"value":1951},{"type":39,"tag":55,"props":2943,"children":2945},{"className":2944},[],[2946],{"type":44,"value":2947},"false",{"type":44,"value":2949},". Also stop (and\nprint the body) if the response has ",{"type":39,"tag":55,"props":2951,"children":2953},{"className":2952},[],[2954],{"type":44,"value":714},{"type":44,"value":2956}," or the extracted cursor is empty or the literal string\n",{"type":39,"tag":55,"props":2958,"children":2960},{"className":2959},[],[2961],{"type":44,"value":502},{"type":44,"value":2963}," — otherwise an error envelope loops forever. Always bound the loop with a max page count.\n",{"type":39,"tag":55,"props":2965,"children":2967},{"className":2966},[],[2968],{"type":44,"value":2969},"first",{"type":44,"value":2971}," caps at ",{"type":39,"tag":47,"props":2973,"children":2974},{},[2975],{"type":44,"value":2976},"250",{"type":44,"value":2978}," per page (default 50). For reverse pagination use ",{"type":39,"tag":55,"props":2980,"children":2982},{"className":2981},[],[2983],{"type":44,"value":2984},"last",{"type":44,"value":2986}," \u002F ",{"type":39,"tag":55,"props":2988,"children":2990},{"className":2989},[],[2991],{"type":44,"value":2992},"before",{"type":44,"value":1460},{"type":39,"tag":153,"props":2995,"children":2997},{"id":2996},"rate-limits",[2998],{"type":44,"value":2999},"Rate limits",{"type":39,"tag":40,"props":3001,"children":3002},{},[3003,3005,3010,3012,3017],{"type":44,"value":3004},"Linear enforces ",{"type":39,"tag":47,"props":3006,"children":3007},{},[3008],{"type":44,"value":3009},"per-user request limits",{"type":44,"value":3011}," and ",{"type":39,"tag":47,"props":3013,"children":3014},{},[3015],{"type":44,"value":3016},"complexity limits",{"type":44,"value":3018}," (roughly proportional to how\nmany nodes a query could touch). Every response carries:",{"type":39,"tag":80,"props":3020,"children":3023},{"className":3021,"code":3022,"language":44},[83],"X-RateLimit-Requests-Limit \u002F -Remaining \u002F -Reset\nX-Complexity\nX-RateLimit-Complexity-Limit \u002F -Remaining \u002F -Reset\n",[3024],{"type":39,"tag":55,"props":3025,"children":3026},{"__ignoreMap":88},[3027],{"type":44,"value":3022},{"type":39,"tag":40,"props":3029,"children":3030},{},[3031,3033,3044,3046,3052,3054,3060,3062,3068,3070,3075],{"type":44,"value":3032},"API-key auth gets 5,000 requests\u002Fhour and 3,000,000 complexity points\u002Fhour (OAuth apps: 5,000\nrequests and 2,000,000 points per user per hour); a single query may not exceed 10,000 points. When\nyou're over, Linear returns ",{"type":39,"tag":47,"props":3034,"children":3035},{},[3036,3038],{"type":44,"value":3037},"HTTP ",{"type":39,"tag":55,"props":3039,"children":3041},{"className":3040},[],[3042],{"type":44,"value":3043},"400",{"type":44,"value":3045}," (not ",{"type":39,"tag":55,"props":3047,"children":3049},{"className":3048},[],[3050],{"type":44,"value":3051},"429",{"type":44,"value":3053},") with\n",{"type":39,"tag":55,"props":3055,"children":3057},{"className":3056},[],[3058],{"type":44,"value":3059},"errors[].extensions.code: \"RATELIMITED\"",{"type":44,"value":3061},". The ",{"type":39,"tag":55,"props":3063,"children":3065},{"className":3064},[],[3066],{"type":44,"value":3067},"-Reset",{"type":44,"value":3069}," headers are ",{"type":39,"tag":47,"props":3071,"children":3072},{},[3073],{"type":44,"value":3074},"UTC epoch milliseconds",{"type":44,"value":3076}," —\nworks on both BSD\u002FmacOS and GNU date:",{"type":39,"tag":80,"props":3078,"children":3080},{"className":210,"code":3079,"language":212,"meta":88,"style":88},"sleep $(( reset_ms \u002F 1000 - $(date +%s) + 1 ))   # reset_ms from X-RateLimit-Requests-Reset\n",[3081],{"type":39,"tag":55,"props":3082,"children":3083},{"__ignoreMap":88},[3084],{"type":39,"tag":218,"props":3085,"children":3086},{"class":220,"line":221},[3087,3092,3097,3102,3107,3112,3117,3122,3127,3132,3136,3141,3146,3151],{"type":39,"tag":218,"props":3088,"children":3089},{"style":284},[3090],{"type":44,"value":3091},"sleep",{"type":39,"tag":218,"props":3093,"children":3094},{"style":237},[3095],{"type":44,"value":3096}," $((",{"type":39,"tag":218,"props":3098,"children":3099},{"style":284},[3100],{"type":44,"value":3101}," reset_ms",{"type":39,"tag":218,"props":3103,"children":3104},{"style":248},[3105],{"type":44,"value":3106}," \u002F",{"type":39,"tag":218,"props":3108,"children":3109},{"style":1325},[3110],{"type":44,"value":3111}," 1000",{"type":39,"tag":218,"props":3113,"children":3114},{"style":248},[3115],{"type":44,"value":3116}," -",{"type":39,"tag":218,"props":3118,"children":3119},{"style":237},[3120],{"type":44,"value":3121}," $(",{"type":39,"tag":218,"props":3123,"children":3124},{"style":284},[3125],{"type":44,"value":3126},"date",{"type":39,"tag":218,"props":3128,"children":3129},{"style":248},[3130],{"type":44,"value":3131}," +%s",{"type":39,"tag":218,"props":3133,"children":3134},{"style":237},[3135],{"type":44,"value":1245},{"type":39,"tag":218,"props":3137,"children":3138},{"style":248},[3139],{"type":44,"value":3140}," +",{"type":39,"tag":218,"props":3142,"children":3143},{"style":1325},[3144],{"type":44,"value":3145}," 1",{"type":39,"tag":218,"props":3147,"children":3148},{"style":237},[3149],{"type":44,"value":3150}," ))",{"type":39,"tag":218,"props":3152,"children":3153},{"style":258},[3154],{"type":44,"value":3155},"   # reset_ms from X-RateLimit-Requests-Reset\n",{"type":39,"tag":40,"props":3157,"children":3158},{},[3159,3161,3167,3169,3174],{"type":44,"value":3160},"To lower complexity, request fewer fields, cap ",{"type":39,"tag":55,"props":3162,"children":3164},{"className":3163},[],[3165],{"type":44,"value":3166},"first:",{"type":44,"value":3168},", and don't deeply nest connections you don't\nneed (e.g. don't select ",{"type":39,"tag":55,"props":3170,"children":3172},{"className":3171},[],[3173],{"type":44,"value":2799},{"type":44,"value":3175}," on every issue in a list).",{"type":39,"tag":153,"props":3177,"children":3179},{"id":3178},"error-handling",[3180],{"type":44,"value":3181},"Error handling",{"type":39,"tag":40,"props":3183,"children":3184},{},[3185,3187,3192,3194,3205],{"type":44,"value":3186},"GraphQL returns HTTP ",{"type":39,"tag":55,"props":3188,"children":3190},{"className":3189},[],[3191],{"type":44,"value":730},{"type":44,"value":3193}," for most application errors — ",{"type":39,"tag":47,"props":3195,"children":3196},{},[3197,3199],{"type":44,"value":3198},"always check the body's ",{"type":39,"tag":55,"props":3200,"children":3202},{"className":3201},[],[3203],{"type":44,"value":3204},"errors[]",{"type":44,"value":1460},{"type":39,"tag":97,"props":3207,"children":3208},{},[3209,3238,3273,3315,3358,3395,3409],{"type":39,"tag":101,"props":3210,"children":3211},{},[3212,3228,3230,3236],{"type":39,"tag":47,"props":3213,"children":3214},{},[3215,3216,3221,3222],{"type":44,"value":3037},{"type":39,"tag":55,"props":3217,"children":3219},{"className":3218},[],[3220],{"type":44,"value":3043},{"type":44,"value":1582},{"type":39,"tag":55,"props":3223,"children":3225},{"className":3224},[],[3226],{"type":44,"value":3227},"code: \"GRAPHQL_VALIDATION_FAILED\"",{"type":44,"value":3229}," — Schema validation failed (unknown field\u002Ftype). ",{"type":39,"tag":55,"props":3231,"children":3233},{"className":3232},[],[3234],{"type":44,"value":3235},"errors[].message",{"type":44,"value":3237}," names the bad field — fix the query, don't debug quoting.",{"type":39,"tag":101,"props":3239,"children":3240},{},[3241,3257,3259,3264,3266,3271],{"type":39,"tag":47,"props":3242,"children":3243},{},[3244,3245,3251,3252],{"type":44,"value":3037},{"type":39,"tag":55,"props":3246,"children":3248},{"className":3247},[],[3249],{"type":44,"value":3250},"500",{"type":44,"value":1582},{"type":39,"tag":55,"props":3253,"children":3255},{"className":3254},[],[3256],{"type":44,"value":3227},{"type":44,"value":3258}," — GraphQL ",{"type":39,"tag":47,"props":3260,"children":3261},{},[3262],{"type":44,"value":3263},"syntax",{"type":44,"value":3265}," error (unbalanced braces, etc.). ",{"type":39,"tag":55,"props":3267,"children":3269},{"className":3268},[],[3270],{"type":44,"value":3235},{"type":44,"value":3272}," shows the parse position.",{"type":39,"tag":101,"props":3274,"children":3275},{},[3276,3285,3287,3292,3294,3300,3302,3307,3308,3313],{"type":39,"tag":47,"props":3277,"children":3278},{},[3279,3280],{"type":44,"value":3037},{"type":39,"tag":55,"props":3281,"children":3283},{"className":3282},[],[3284],{"type":44,"value":169},{"type":44,"value":3286}," — Bad or missing API key. Check ",{"type":39,"tag":55,"props":3288,"children":3290},{"className":3289},[],[3291],{"type":44,"value":339},{"type":44,"value":3293},". Personal keys go in ",{"type":39,"tag":55,"props":3295,"children":3297},{"className":3296},[],[3298],{"type":44,"value":3299},"Authorization:",{"type":44,"value":3301}," with ",{"type":39,"tag":47,"props":3303,"children":3304},{},[3305],{"type":44,"value":3306},"no",{"type":44,"value":1367},{"type":39,"tag":55,"props":3309,"children":3311},{"className":3310},[],[3312],{"type":44,"value":203},{"type":44,"value":3314}," prefix.",{"type":39,"tag":101,"props":3316,"children":3317},{},[3318,3334,3336,3342,3344,3349,3351,3356],{"type":39,"tag":47,"props":3319,"children":3320},{},[3321,3322,3327,3328],{"type":44,"value":3037},{"type":39,"tag":55,"props":3323,"children":3325},{"className":3324},[],[3326],{"type":44,"value":3043},{"type":44,"value":1582},{"type":39,"tag":55,"props":3329,"children":3331},{"className":3330},[],[3332],{"type":44,"value":3333},"code: \"RATELIMITED\"",{"type":44,"value":3335}," — Rate or complexity limit hit. Sleep until ",{"type":39,"tag":55,"props":3337,"children":3339},{"className":3338},[],[3340],{"type":44,"value":3341},"X-RateLimit-…-Reset",{"type":44,"value":3343}," (epoch ",{"type":39,"tag":47,"props":3345,"children":3346},{},[3347],{"type":44,"value":3348},"ms",{"type":44,"value":3350},"), retry; or simplify the query (fewer fields, smaller ",{"type":39,"tag":55,"props":3352,"children":3354},{"className":3353},[],[3355],{"type":44,"value":3166},{"type":44,"value":3357},").",{"type":39,"tag":101,"props":3359,"children":3360},{},[3361,3377,3379,3385,3387,3393],{"type":39,"tag":47,"props":3362,"children":3363},{},[3364,3370,3371],{"type":39,"tag":55,"props":3365,"children":3367},{"className":3366},[],[3368],{"type":44,"value":3369},"errors[].extensions.code: \"INVALID_INPUT\"",{"type":44,"value":2986},{"type":39,"tag":55,"props":3372,"children":3374},{"className":3373},[],[3375],{"type":44,"value":3376},"\"INPUT_ERROR\"",{"type":44,"value":3378}," — Validation failed. ",{"type":39,"tag":55,"props":3380,"children":3382},{"className":3381},[],[3383],{"type":44,"value":3384},"message",{"type":44,"value":3386}," names the bad field. Common: passing a key (",{"type":39,"tag":55,"props":3388,"children":3390},{"className":3389},[],[3391],{"type":44,"value":3392},"ENG",{"type":44,"value":3394},") where a UUID is required, or a query over the 10,000-point complexity cap.",{"type":39,"tag":101,"props":3396,"children":3397},{},[3398,3407],{"type":39,"tag":47,"props":3399,"children":3400},{},[3401],{"type":39,"tag":55,"props":3402,"children":3404},{"className":3403},[],[3405],{"type":44,"value":3406},"errors[].extensions.code: \"ENTITY_NOT_FOUND\"",{"type":44,"value":3408}," — ID doesn't exist or not visible. Check the ID. API-key scope is workspace-wide but respects team\u002Fproject access.",{"type":39,"tag":101,"props":3410,"children":3411},{},[3412,3421,3423,3428],{"type":39,"tag":47,"props":3413,"children":3414},{},[3415],{"type":39,"tag":55,"props":3416,"children":3418},{"className":3417},[],[3419],{"type":44,"value":3420},"errors[].message: \"Cannot query field …\"",{"type":44,"value":3422}," — Typo or schema mismatch. Field doesn't exist. Check spelling; use introspection (",{"type":39,"tag":55,"props":3424,"children":3426},{"className":3425},[],[3427],{"type":44,"value":1596},{"type":44,"value":3357},{"type":39,"tag":40,"props":3430,"children":3431},{},[3432,3434,3440,3442,3448],{"type":44,"value":3433},"Mutations return a ",{"type":39,"tag":55,"props":3435,"children":3437},{"className":3436},[],[3438],{"type":44,"value":3439},"success",{"type":44,"value":3441}," boolean even when HTTP and ",{"type":39,"tag":55,"props":3443,"children":3445},{"className":3444},[],[3446],{"type":44,"value":3447},"errors",{"type":44,"value":3449}," are clean — check it before\nassuming the write landed.",{"type":39,"tag":153,"props":3451,"children":3453},{"id":3452},"going-deeper",[3454],{"type":44,"value":3455},"Going deeper",{"type":39,"tag":40,"props":3457,"children":3458},{},[3459,3464],{"type":39,"tag":55,"props":3460,"children":3462},{"className":3461},[],[3463],{"type":44,"value":1596},{"type":44,"value":3465}," has the fuller catalog: all major object types and their fields, the filter\noperator grammar, webhook config, file attachments, reactions, notifications, favorites,\nworkspace\u002Forganization queries, and schema introspection. Read it when you need an object or\nmutation not covered above, or when you need the exact input shape for a create\u002Fupdate.",{"type":39,"tag":3467,"props":3468,"children":3469},"style",{},[3470],{"type":44,"value":3471},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3473,"total":3660},[3474,3495,3509,3521,3540,3553,3574,3594,3608,3623,3631,3644],{"slug":3475,"name":3475,"fn":3476,"description":3477,"org":3478,"tags":3479,"stars":3492,"repoUrl":3493,"updatedAt":3494},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3480,3483,3486,3489],{"name":3481,"slug":3482,"type":16},"Creative","creative",{"name":3484,"slug":3485,"type":16},"Design","design",{"name":3487,"slug":3488,"type":16},"Generative Art","generative-art",{"name":3490,"slug":3491,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":3496,"name":3496,"fn":3497,"description":3498,"org":3499,"tags":3500,"stars":3492,"repoUrl":3493,"updatedAt":3508},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3501,3504,3505],{"name":3502,"slug":3503,"type":16},"Branding","branding",{"name":3484,"slug":3485,"type":16},{"name":3506,"slug":3507,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":3510,"name":3510,"fn":3511,"description":3512,"org":3513,"tags":3514,"stars":3492,"repoUrl":3493,"updatedAt":3520},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3515,3516,3517],{"name":3481,"slug":3482,"type":16},{"name":3484,"slug":3485,"type":16},{"name":3518,"slug":3519,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":3522,"name":3522,"fn":3523,"description":3524,"org":3525,"tags":3526,"stars":3492,"repoUrl":3493,"updatedAt":3539},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3527,3530,3531,3534,3536],{"name":3528,"slug":3529,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":3532,"slug":3533,"type":16},"Anthropic SDK","anthropic-sdk",{"name":3535,"slug":3522,"type":16},"Claude API",{"name":3537,"slug":3538,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":3541,"name":3541,"fn":3542,"description":3543,"org":3544,"tags":3545,"stars":3492,"repoUrl":3493,"updatedAt":3552},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3546,3549],{"name":3547,"slug":3548,"type":16},"Documentation","documentation",{"name":3550,"slug":3551,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":3554,"name":3554,"fn":3555,"description":3556,"org":3557,"tags":3558,"stars":3492,"repoUrl":3493,"updatedAt":3573},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3559,3562,3564,3567,3570],{"name":3560,"slug":3561,"type":16},"Documents","documents",{"name":3563,"slug":3554,"type":16},"DOCX",{"name":3565,"slug":3566,"type":16},"Office","office",{"name":3568,"slug":3569,"type":16},"Templates","templates",{"name":3571,"slug":3572,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":3575,"name":3575,"fn":3576,"description":3577,"org":3578,"tags":3579,"stars":3492,"repoUrl":3493,"updatedAt":3593},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3580,3581,3584,3587,3590],{"name":3484,"slug":3485,"type":16},{"name":3582,"slug":3583,"type":16},"Frontend","frontend",{"name":3585,"slug":3586,"type":16},"React","react",{"name":3588,"slug":3589,"type":16},"Tailwind CSS","tailwind-css",{"name":3591,"slug":3592,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":3595,"name":3595,"fn":3596,"description":3597,"org":3598,"tags":3599,"stars":3492,"repoUrl":3493,"updatedAt":3607},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3600,3603,3604],{"name":3601,"slug":3602,"type":16},"Communications","communications",{"name":3568,"slug":3569,"type":16},{"name":3605,"slug":3606,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":3609,"name":3609,"fn":3610,"description":3611,"org":3612,"tags":3613,"stars":3492,"repoUrl":3493,"updatedAt":3622},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3614,3615,3618,3619],{"name":3528,"slug":3529,"type":16},{"name":3616,"slug":3617,"type":16},"API Development","api-development",{"name":3537,"slug":3538,"type":16},{"name":3620,"slug":3621,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":3519,"name":3519,"fn":3624,"description":3625,"org":3626,"tags":3627,"stars":3492,"repoUrl":3493,"updatedAt":3630},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3628,3629],{"name":3560,"slug":3561,"type":16},{"name":3518,"slug":3519,"type":16},"2026-04-06T17:56:02.483316",{"slug":3632,"name":3632,"fn":3633,"description":3634,"org":3635,"tags":3636,"stars":3492,"repoUrl":3493,"updatedAt":3643},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3637,3640],{"name":3638,"slug":3639,"type":16},"PowerPoint","powerpoint",{"name":3641,"slug":3642,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":3645,"name":3645,"fn":3646,"description":3647,"org":3648,"tags":3649,"stars":3492,"repoUrl":3493,"updatedAt":3659},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3650,3651,3652,3655,3658],{"name":3528,"slug":3529,"type":16},{"name":3547,"slug":3548,"type":16},{"name":3653,"slug":3654,"type":16},"Evals","evals",{"name":3656,"slug":3657,"type":16},"Performance","performance",{"name":3550,"slug":3551,"type":16},"2026-04-19T06:45:40.804",490,{"items":3662,"total":2554},[3663,3675,3694,3709,3723,3740,3754],{"slug":3664,"name":3664,"fn":3665,"description":3666,"org":3667,"tags":3668,"stars":23,"repoUrl":24,"updatedAt":3674},"asana-api","manage Asana tasks and projects","Read and manage Asana tasks, projects, sections, comments, and workspaces. Use this whenever the user wants to list or search tasks, create or update a task, complete a task, comment on a task, move tasks between projects or sections, look up a project or workspace, or ask \"what's on my Asana list\" — even if they don't say \"API\". Also use it for any app.asana.com URL or an Asana task\u002Fproject gid. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3669,3672,3673],{"name":3670,"slug":3671,"type":16},"Productivity","productivity",{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},"2026-06-24T07:44:51.70496",{"slug":3676,"name":3676,"fn":3677,"description":3678,"org":3679,"tags":3680,"stars":23,"repoUrl":24,"updatedAt":3693},"bigquery-api","run SQL queries against BigQuery","Run SQL against Google BigQuery and browse its catalog — submit queries (sync or async), poll job status, page through results, list datasets\u002Ftables, and read table schemas. Use this whenever the user wants to query a BigQuery table, ask \"what's in this dataset\", check a BigQuery job's status, or mentions bigquery.googleapis.com or a `project.dataset.table` path. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3681,3684,3687,3690],{"name":3682,"slug":3683,"type":16},"Data Analysis","data-analysis",{"name":3685,"slug":3686,"type":16},"Database","database",{"name":3688,"slug":3689,"type":16},"Google Cloud","google-cloud",{"name":3691,"slug":3692,"type":16},"SQL","sql","2026-06-24T07:45:14.797877",{"slug":3695,"name":3695,"fn":3696,"description":3697,"org":3698,"tags":3699,"stars":23,"repoUrl":24,"updatedAt":3708},"config-guide","configure Claude agent settings and scopes","Reference guide for configuring @Claude agents — agents, agent scopes, identity profiles, presets, connections, rules, GitHub repositories, and custom instructions. Explains the inheritance model and configuration best practices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3700,3701,3702,3705],{"name":3528,"slug":3529,"type":16},{"name":3535,"slug":3522,"type":16},{"name":3703,"slug":3704,"type":16},"Configuration","configuration",{"name":3706,"slug":3707,"type":16},"GitHub","github","2026-06-25T07:41:36.617524",{"slug":3710,"name":3710,"fn":3711,"description":3712,"org":3713,"tags":3714,"stars":23,"repoUrl":24,"updatedAt":3722},"confluence-api","manage Confluence Cloud content","Read, search, and manage Confluence Cloud pages, spaces, blog posts, comments, attachments, and labels. Use this whenever the user wants to find a page, read a doc, search the wiki with CQL, create or update a page, add a comment, list pages in a space, pull an attachment, or ask \"what does the wiki say about X\" — even if they don't say \"API\". Also use it for any *.atlassian.net\u002Fwiki URL, or a CQL string when the context is wiki content rather than tickets. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3715,3718,3719],{"name":3716,"slug":3717,"type":16},"Confluence","confluence",{"name":3547,"slug":3548,"type":16},{"name":3720,"slug":3721,"type":16},"Knowledge Management","knowledge-management","2026-06-25T07:41:43.531982",{"slug":3724,"name":3724,"fn":3725,"description":3726,"org":3727,"tags":3728,"stars":23,"repoUrl":24,"updatedAt":3739},"datadog-api","manage Datadog monitoring and telemetry","Query and manage Datadog monitoring data — logs, metrics, monitors, dashboards, events, SLOs, traces, and incidents. Use this whenever the user wants to search logs, look at a metric, check which monitors are alerting, investigate a trace, pull SLO status, mute an alert, or ask \"what's happening in Datadog\" — even if they don't say \"API\". Also use it for any URL under *.datadoghq.com. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3729,3730,3733,3736],{"name":3616,"slug":3617,"type":16},{"name":3731,"slug":3732,"type":16},"Datadog","datadog",{"name":3734,"slug":3735,"type":16},"Monitoring","monitoring",{"name":3737,"slug":3738,"type":16},"Observability","observability","2026-06-24T07:46:42.266372",{"slug":3741,"name":3741,"fn":3742,"description":3743,"org":3744,"tags":3745,"stars":23,"repoUrl":24,"updatedAt":3753},"debug-plugins","diagnose Claude plugin loading failures","Diagnose why a plugin or skill configured in @Claude admin settings isn't loading. Checks mount directories, the Claude Code launch command, and startup logs from inside the running container, then explains what failed and how to fix it.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3746,3747,3750],{"name":3535,"slug":3522,"type":16},{"name":3748,"slug":3749,"type":16},"Debugging","debugging",{"name":3751,"slug":3752,"type":16},"Plugin Development","plugin-development","2026-06-24T07:46:32.792809",{"slug":3755,"name":3755,"fn":3756,"description":3757,"org":3758,"tags":3759,"stars":23,"repoUrl":24,"updatedAt":3766},"enterprise-search","search company enterprise knowledge index","Search the company's enterprise knowledge index. Use this FIRST when starting any task that touches company-specific context - projects, people, policies, internal docs, prior decisions - before searching individual sources like Drive, Slack, or Jira directly. Also use it when the user asks \"do we have a doc about X\", \"what's our policy on Y\", or references internal initiatives by name. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3760,3762,3763],{"name":3761,"slug":3755,"type":16},"Enterprise Search",{"name":3720,"slug":3721,"type":16},{"name":3764,"slug":3765,"type":16},"Research","research","2026-06-24T07:46:40.641837"]