[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-linear":3,"mdc--f2oaet-key":35,"related-repo-vercel-labs-linear":1558,"related-org-vercel-labs-linear":1656},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":33,"mdContent":34},"linear","emulate Linear API for local development","Emulated Linear GraphQL API for local development and testing. Use when the user needs to test Linear integrations locally, emulate Linear issues, comments, teams, workflow states, OAuth apps, webhooks, agent sessions, or work with the Linear API without hitting the real Linear service. Triggers include \"Linear API\", \"emulate Linear\", \"mock Linear\", \"test Linear OAuth\", \"Linear webhook\", \"Linear agent\", \"local Linear\", or any task requiring a local Linear API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel-labs","Vercel Labs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel-labs.png",[12,15,18,21],{"name":13,"slug":4,"type":14},"Linear","tag",{"name":16,"slug":17,"type":14},"Local Development","local-development",{"name":19,"slug":20,"type":14},"API Development","api-development",{"name":22,"slug":23,"type":14},"Testing","testing",1511,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Femulate","2026-07-17T06:04:11.495374",null,95,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":32},[],"Local API emulation for CI and no-network sandboxes","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Femulate\u002Ftree\u002FHEAD\u002Fskills\u002Flinear","---\nname: linear\ndescription: Emulated Linear GraphQL API for local development and testing. Use when the user needs to test Linear integrations locally, emulate Linear issues, comments, teams, workflow states, OAuth apps, webhooks, agent sessions, or work with the Linear API without hitting the real Linear service. Triggers include \"Linear API\", \"emulate Linear\", \"mock Linear\", \"test Linear OAuth\", \"Linear webhook\", \"Linear agent\", \"local Linear\", or any task requiring a local Linear API.\nallowed-tools: Bash(npx emulate:*)\n---\n\n# Linear API Emulator\n\nStateful Linear GraphQL API emulation with organizations, users, teams, workflow states, issues, comments, labels, projects, cycles, OAuth apps, tokens, webhooks, and basic agent sessions.\n\n## Start\n\n```bash\n# Linear only\nnpx emulate --service linear\n```\n\nDefault URL: `http:\u002F\u002Flocalhost:4012` when all services are started, or `http:\u002F\u002Flocalhost:4000` when Linear is the only service.\n\n## URL Mapping\n\n| Real Linear URL | Emulator URL |\n|-----------------|--------------|\n| `https:\u002F\u002Fapi.linear.app\u002Fgraphql` | `$LINEAR_EMULATOR_URL\u002Fgraphql` |\n| `https:\u002F\u002Flinear.app\u002Foauth\u002Fauthorize` | `$LINEAR_EMULATOR_URL\u002Foauth\u002Fauthorize` |\n| `https:\u002F\u002Fapi.linear.app\u002Foauth\u002Ftoken` | `$LINEAR_EMULATOR_URL\u002Foauth\u002Ftoken` |\n| `https:\u002F\u002Fapi.linear.app\u002Foauth\u002Frevoke` | `$LINEAR_EMULATOR_URL\u002Foauth\u002Frevoke` |\n\n## Auth\n\nGraphQL accepts a bearer token or bare personal API key:\n\n```bash\ncurl \"$LINEAR_EMULATOR_URL\u002Fgraphql\" \\\n  -H \"Authorization: Bearer lin_test_admin\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"query\":\"{ viewer { id email } }\"}'\n```\n\nScope checks are relaxed by default. Set `linear.strict_scopes: true` in seed config to require supported operation scopes such as `read`, `write`, `issues:create`, `comments:create`, and `admin`.\n\n## Seed Config\n\n```yaml\nlinear:\n  organization:\n    name: Acme\n    url_key: acme\n  users:\n    - email: admin@example.com\n      name: Admin User\n      admin: true\n    - email: dev@example.com\n      name: Developer\n  teams:\n    - key: ENG\n      name: Engineering\n  issues:\n    - team: ENG\n      title: Fix local checkout test\n      state: Todo\n      assignee: dev@example.com\n  oauth_apps:\n    - client_id: lin_example_client_id\n      client_secret: example_client_secret\n      name: My Linear App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Flinear\n      scopes: [read, write, issues:create, comments:create]\n  tokens:\n    - token: lin_test_admin\n      user: admin@example.com\n      scopes: [read, write, issues:create, comments:create, admin]\n  strict_scopes: false\n```\n\n## GraphQL Surface\n\nSupported queries:\n\n- `viewer`\n- `organization`\n- `users`, `user`\n- `teams`, `team`\n- `workflowStates`, `workflowState`\n- `issues`, `issue`\n- `comments`, `comment`\n- `issueLabels`, `issueLabel`\n- `projects`, `project`\n- `cycles`, `cycle`\n- `webhooks`, `webhook`\n- `agentSessions`, `agentSession`\n\nSupported mutations:\n\n- `issueCreate`, `issueUpdate`, `issueDelete`, `issueArchive`, `issueUnarchive`\n- `commentCreate`, `commentUpdate`, `commentDelete`\n- `issueLabelCreate`, `issueLabelUpdate`, `issueLabelDelete`\n- `issueAddLabel`, `issueRemoveLabel`\n- `webhookCreate`, `webhookDelete`\n- `agentSessionCreateOnIssue`, `agentSessionCreateOnComment`, `agentSessionUpdate`\n- `agentActivityCreate`\n\nConnections use Relay-style cursors with `nodes`, `edges`, and `pageInfo`.\n\n## OAuth\n\n- `GET \u002Foauth\u002Fauthorize` - authorization endpoint with local user picker\n- `POST \u002Foauth\u002Fauthorize\u002Fcallback` - local user picker callback\n- `POST \u002Foauth\u002Ftoken` - authorization code, refresh token, and client credentials grants\n- `POST \u002Foauth\u002Frevoke` - revoke access or refresh tokens\n\nOAuth apps can use `actor: user` or `actor: app`. The configured actor is authoritative. User actor apps use authorization code flows. App actor apps use the app install flow and can request client credentials tokens. App actor support is sufficient for local agent and service-account tests, but it is not full production Linear agent behavior.\n\n## Webhooks\n\nCreate local webhook subscriptions through `webhookCreate` or seed config. Supported writes dispatch Linear-shaped payloads with `Linear-Delivery`, `Linear-Event`, and `Linear-Signature` headers when a secret is configured.\n\n## Inspector\n\nOpen `GET \u002F` in the Linear emulator to inspect issues, teams, users, projects, agent sessions, OAuth apps, tokens, webhook subscriptions, and webhook deliveries.\n\n## Current Limits\n\nFull Linear schema coverage, exact production rate limiting, notification inbox behavior, rich document APIs, customer APIs, initiative APIs, exact search relevance, and full production agent behavior are not implemented.\n",{"data":36,"body":38},{"name":4,"description":6,"allowed-tools":37},"Bash(npx emulate:*)",{"type":39,"children":40},"root",[41,50,56,63,113,134,140,252,258,263,379,430,436,1034,1040,1045,1228,1233,1383,1409,1415,1462,1483,1488,1522,1528,1541,1547,1552],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"linear-api-emulator",[47],{"type":48,"value":49},"text","Linear API Emulator",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"Stateful Linear GraphQL API emulation with organizations, users, teams, workflow states, issues, comments, labels, projects, cycles, OAuth apps, tokens, webhooks, and basic agent sessions.",{"type":42,"tag":57,"props":58,"children":60},"h2",{"id":59},"start",[61],{"type":48,"value":62},"Start",{"type":42,"tag":64,"props":65,"children":70},"pre",{"className":66,"code":67,"language":68,"meta":69,"style":69},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Linear only\nnpx emulate --service linear\n","bash","",[71],{"type":42,"tag":72,"props":73,"children":74},"code",{"__ignoreMap":69},[75,87],{"type":42,"tag":76,"props":77,"children":80},"span",{"class":78,"line":79},"line",1,[81],{"type":42,"tag":76,"props":82,"children":84},{"style":83},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[85],{"type":48,"value":86},"# Linear only\n",{"type":42,"tag":76,"props":88,"children":90},{"class":78,"line":89},2,[91,97,103,108],{"type":42,"tag":76,"props":92,"children":94},{"style":93},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[95],{"type":48,"value":96},"npx",{"type":42,"tag":76,"props":98,"children":100},{"style":99},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[101],{"type":48,"value":102}," emulate",{"type":42,"tag":76,"props":104,"children":105},{"style":99},[106],{"type":48,"value":107}," --service",{"type":42,"tag":76,"props":109,"children":110},{"style":99},[111],{"type":48,"value":112}," linear\n",{"type":42,"tag":51,"props":114,"children":115},{},[116,118,124,126,132],{"type":48,"value":117},"Default URL: ",{"type":42,"tag":72,"props":119,"children":121},{"className":120},[],[122],{"type":48,"value":123},"http:\u002F\u002Flocalhost:4012",{"type":48,"value":125}," when all services are started, or ",{"type":42,"tag":72,"props":127,"children":129},{"className":128},[],[130],{"type":48,"value":131},"http:\u002F\u002Flocalhost:4000",{"type":48,"value":133}," when Linear is the only service.",{"type":42,"tag":57,"props":135,"children":137},{"id":136},"url-mapping",[138],{"type":48,"value":139},"URL Mapping",{"type":42,"tag":141,"props":142,"children":143},"table",{},[144,163],{"type":42,"tag":145,"props":146,"children":147},"thead",{},[148],{"type":42,"tag":149,"props":150,"children":151},"tr",{},[152,158],{"type":42,"tag":153,"props":154,"children":155},"th",{},[156],{"type":48,"value":157},"Real Linear URL",{"type":42,"tag":153,"props":159,"children":160},{},[161],{"type":48,"value":162},"Emulator URL",{"type":42,"tag":164,"props":165,"children":166},"tbody",{},[167,189,210,231],{"type":42,"tag":149,"props":168,"children":169},{},[170,180],{"type":42,"tag":171,"props":172,"children":173},"td",{},[174],{"type":42,"tag":72,"props":175,"children":177},{"className":176},[],[178],{"type":48,"value":179},"https:\u002F\u002Fapi.linear.app\u002Fgraphql",{"type":42,"tag":171,"props":181,"children":182},{},[183],{"type":42,"tag":72,"props":184,"children":186},{"className":185},[],[187],{"type":48,"value":188},"$LINEAR_EMULATOR_URL\u002Fgraphql",{"type":42,"tag":149,"props":190,"children":191},{},[192,201],{"type":42,"tag":171,"props":193,"children":194},{},[195],{"type":42,"tag":72,"props":196,"children":198},{"className":197},[],[199],{"type":48,"value":200},"https:\u002F\u002Flinear.app\u002Foauth\u002Fauthorize",{"type":42,"tag":171,"props":202,"children":203},{},[204],{"type":42,"tag":72,"props":205,"children":207},{"className":206},[],[208],{"type":48,"value":209},"$LINEAR_EMULATOR_URL\u002Foauth\u002Fauthorize",{"type":42,"tag":149,"props":211,"children":212},{},[213,222],{"type":42,"tag":171,"props":214,"children":215},{},[216],{"type":42,"tag":72,"props":217,"children":219},{"className":218},[],[220],{"type":48,"value":221},"https:\u002F\u002Fapi.linear.app\u002Foauth\u002Ftoken",{"type":42,"tag":171,"props":223,"children":224},{},[225],{"type":42,"tag":72,"props":226,"children":228},{"className":227},[],[229],{"type":48,"value":230},"$LINEAR_EMULATOR_URL\u002Foauth\u002Ftoken",{"type":42,"tag":149,"props":232,"children":233},{},[234,243],{"type":42,"tag":171,"props":235,"children":236},{},[237],{"type":42,"tag":72,"props":238,"children":240},{"className":239},[],[241],{"type":48,"value":242},"https:\u002F\u002Fapi.linear.app\u002Foauth\u002Frevoke",{"type":42,"tag":171,"props":244,"children":245},{},[246],{"type":42,"tag":72,"props":247,"children":249},{"className":248},[],[250],{"type":48,"value":251},"$LINEAR_EMULATOR_URL\u002Foauth\u002Frevoke",{"type":42,"tag":57,"props":253,"children":255},{"id":254},"auth",[256],{"type":48,"value":257},"Auth",{"type":42,"tag":51,"props":259,"children":260},{},[261],{"type":48,"value":262},"GraphQL accepts a bearer token or bare personal API key:",{"type":42,"tag":64,"props":264,"children":266},{"className":66,"code":265,"language":68,"meta":69,"style":69},"curl \"$LINEAR_EMULATOR_URL\u002Fgraphql\" \\\n  -H \"Authorization: Bearer lin_test_admin\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"query\":\"{ viewer { id email } }\"}'\n",[267],{"type":42,"tag":72,"props":268,"children":269},{"__ignoreMap":69},[270,305,330,355],{"type":42,"tag":76,"props":271,"children":272},{"class":78,"line":79},[273,278,284,290,295,300],{"type":42,"tag":76,"props":274,"children":275},{"style":93},[276],{"type":48,"value":277},"curl",{"type":42,"tag":76,"props":279,"children":281},{"style":280},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[282],{"type":48,"value":283}," \"",{"type":42,"tag":76,"props":285,"children":287},{"style":286},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[288],{"type":48,"value":289},"$LINEAR_EMULATOR_URL",{"type":42,"tag":76,"props":291,"children":292},{"style":99},[293],{"type":48,"value":294},"\u002Fgraphql",{"type":42,"tag":76,"props":296,"children":297},{"style":280},[298],{"type":48,"value":299},"\"",{"type":42,"tag":76,"props":301,"children":302},{"style":286},[303],{"type":48,"value":304}," \\\n",{"type":42,"tag":76,"props":306,"children":307},{"class":78,"line":89},[308,313,317,322,326],{"type":42,"tag":76,"props":309,"children":310},{"style":99},[311],{"type":48,"value":312},"  -H",{"type":42,"tag":76,"props":314,"children":315},{"style":280},[316],{"type":48,"value":283},{"type":42,"tag":76,"props":318,"children":319},{"style":99},[320],{"type":48,"value":321},"Authorization: Bearer lin_test_admin",{"type":42,"tag":76,"props":323,"children":324},{"style":280},[325],{"type":48,"value":299},{"type":42,"tag":76,"props":327,"children":328},{"style":286},[329],{"type":48,"value":304},{"type":42,"tag":76,"props":331,"children":333},{"class":78,"line":332},3,[334,338,342,347,351],{"type":42,"tag":76,"props":335,"children":336},{"style":99},[337],{"type":48,"value":312},{"type":42,"tag":76,"props":339,"children":340},{"style":280},[341],{"type":48,"value":283},{"type":42,"tag":76,"props":343,"children":344},{"style":99},[345],{"type":48,"value":346},"Content-Type: application\u002Fjson",{"type":42,"tag":76,"props":348,"children":349},{"style":280},[350],{"type":48,"value":299},{"type":42,"tag":76,"props":352,"children":353},{"style":286},[354],{"type":48,"value":304},{"type":42,"tag":76,"props":356,"children":358},{"class":78,"line":357},4,[359,364,369,374],{"type":42,"tag":76,"props":360,"children":361},{"style":99},[362],{"type":48,"value":363},"  -d",{"type":42,"tag":76,"props":365,"children":366},{"style":280},[367],{"type":48,"value":368}," '",{"type":42,"tag":76,"props":370,"children":371},{"style":99},[372],{"type":48,"value":373},"{\"query\":\"{ viewer { id email } }\"}",{"type":42,"tag":76,"props":375,"children":376},{"style":280},[377],{"type":48,"value":378},"'\n",{"type":42,"tag":51,"props":380,"children":381},{},[382,384,390,392,398,400,406,407,413,414,420,422,428],{"type":48,"value":383},"Scope checks are relaxed by default. Set ",{"type":42,"tag":72,"props":385,"children":387},{"className":386},[],[388],{"type":48,"value":389},"linear.strict_scopes: true",{"type":48,"value":391}," in seed config to require supported operation scopes such as ",{"type":42,"tag":72,"props":393,"children":395},{"className":394},[],[396],{"type":48,"value":397},"read",{"type":48,"value":399},", ",{"type":42,"tag":72,"props":401,"children":403},{"className":402},[],[404],{"type":48,"value":405},"write",{"type":48,"value":399},{"type":42,"tag":72,"props":408,"children":410},{"className":409},[],[411],{"type":48,"value":412},"issues:create",{"type":48,"value":399},{"type":42,"tag":72,"props":415,"children":417},{"className":416},[],[418],{"type":48,"value":419},"comments:create",{"type":48,"value":421},", and ",{"type":42,"tag":72,"props":423,"children":425},{"className":424},[],[426],{"type":48,"value":427},"admin",{"type":48,"value":429},".",{"type":42,"tag":57,"props":431,"children":433},{"id":432},"seed-config",[434],{"type":48,"value":435},"Seed Config",{"type":42,"tag":64,"props":437,"children":441},{"className":438,"code":439,"language":440,"meta":69,"style":69},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","linear:\n  organization:\n    name: Acme\n    url_key: acme\n  users:\n    - email: admin@example.com\n      name: Admin User\n      admin: true\n    - email: dev@example.com\n      name: Developer\n  teams:\n    - key: ENG\n      name: Engineering\n  issues:\n    - team: ENG\n      title: Fix local checkout test\n      state: Todo\n      assignee: dev@example.com\n  oauth_apps:\n    - client_id: lin_example_client_id\n      client_secret: example_client_secret\n      name: My Linear App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Flinear\n      scopes: [read, write, issues:create, comments:create]\n  tokens:\n    - token: lin_test_admin\n      user: admin@example.com\n      scopes: [read, write, issues:create, comments:create, admin]\n  strict_scopes: false\n","yaml",[442],{"type":42,"tag":72,"props":443,"children":444},{"__ignoreMap":69},[445,458,470,488,505,518,541,559,578,599,616,629,651,668,681,702,720,738,755,768,790,808,825,838,852,907,920,942,959,1016],{"type":42,"tag":76,"props":446,"children":447},{"class":78,"line":79},[448,453],{"type":42,"tag":76,"props":449,"children":451},{"style":450},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[452],{"type":48,"value":4},{"type":42,"tag":76,"props":454,"children":455},{"style":280},[456],{"type":48,"value":457},":\n",{"type":42,"tag":76,"props":459,"children":460},{"class":78,"line":89},[461,466],{"type":42,"tag":76,"props":462,"children":463},{"style":450},[464],{"type":48,"value":465},"  organization",{"type":42,"tag":76,"props":467,"children":468},{"style":280},[469],{"type":48,"value":457},{"type":42,"tag":76,"props":471,"children":472},{"class":78,"line":332},[473,478,483],{"type":42,"tag":76,"props":474,"children":475},{"style":450},[476],{"type":48,"value":477},"    name",{"type":42,"tag":76,"props":479,"children":480},{"style":280},[481],{"type":48,"value":482},":",{"type":42,"tag":76,"props":484,"children":485},{"style":99},[486],{"type":48,"value":487}," Acme\n",{"type":42,"tag":76,"props":489,"children":490},{"class":78,"line":357},[491,496,500],{"type":42,"tag":76,"props":492,"children":493},{"style":450},[494],{"type":48,"value":495},"    url_key",{"type":42,"tag":76,"props":497,"children":498},{"style":280},[499],{"type":48,"value":482},{"type":42,"tag":76,"props":501,"children":502},{"style":99},[503],{"type":48,"value":504}," acme\n",{"type":42,"tag":76,"props":506,"children":508},{"class":78,"line":507},5,[509,514],{"type":42,"tag":76,"props":510,"children":511},{"style":450},[512],{"type":48,"value":513},"  users",{"type":42,"tag":76,"props":515,"children":516},{"style":280},[517],{"type":48,"value":457},{"type":42,"tag":76,"props":519,"children":521},{"class":78,"line":520},6,[522,527,532,536],{"type":42,"tag":76,"props":523,"children":524},{"style":280},[525],{"type":48,"value":526},"    -",{"type":42,"tag":76,"props":528,"children":529},{"style":450},[530],{"type":48,"value":531}," email",{"type":42,"tag":76,"props":533,"children":534},{"style":280},[535],{"type":48,"value":482},{"type":42,"tag":76,"props":537,"children":538},{"style":99},[539],{"type":48,"value":540}," admin@example.com\n",{"type":42,"tag":76,"props":542,"children":544},{"class":78,"line":543},7,[545,550,554],{"type":42,"tag":76,"props":546,"children":547},{"style":450},[548],{"type":48,"value":549},"      name",{"type":42,"tag":76,"props":551,"children":552},{"style":280},[553],{"type":48,"value":482},{"type":42,"tag":76,"props":555,"children":556},{"style":99},[557],{"type":48,"value":558}," Admin User\n",{"type":42,"tag":76,"props":560,"children":562},{"class":78,"line":561},8,[563,568,572],{"type":42,"tag":76,"props":564,"children":565},{"style":450},[566],{"type":48,"value":567},"      admin",{"type":42,"tag":76,"props":569,"children":570},{"style":280},[571],{"type":48,"value":482},{"type":42,"tag":76,"props":573,"children":575},{"style":574},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[576],{"type":48,"value":577}," true\n",{"type":42,"tag":76,"props":579,"children":581},{"class":78,"line":580},9,[582,586,590,594],{"type":42,"tag":76,"props":583,"children":584},{"style":280},[585],{"type":48,"value":526},{"type":42,"tag":76,"props":587,"children":588},{"style":450},[589],{"type":48,"value":531},{"type":42,"tag":76,"props":591,"children":592},{"style":280},[593],{"type":48,"value":482},{"type":42,"tag":76,"props":595,"children":596},{"style":99},[597],{"type":48,"value":598}," dev@example.com\n",{"type":42,"tag":76,"props":600,"children":602},{"class":78,"line":601},10,[603,607,611],{"type":42,"tag":76,"props":604,"children":605},{"style":450},[606],{"type":48,"value":549},{"type":42,"tag":76,"props":608,"children":609},{"style":280},[610],{"type":48,"value":482},{"type":42,"tag":76,"props":612,"children":613},{"style":99},[614],{"type":48,"value":615}," Developer\n",{"type":42,"tag":76,"props":617,"children":619},{"class":78,"line":618},11,[620,625],{"type":42,"tag":76,"props":621,"children":622},{"style":450},[623],{"type":48,"value":624},"  teams",{"type":42,"tag":76,"props":626,"children":627},{"style":280},[628],{"type":48,"value":457},{"type":42,"tag":76,"props":630,"children":632},{"class":78,"line":631},12,[633,637,642,646],{"type":42,"tag":76,"props":634,"children":635},{"style":280},[636],{"type":48,"value":526},{"type":42,"tag":76,"props":638,"children":639},{"style":450},[640],{"type":48,"value":641}," key",{"type":42,"tag":76,"props":643,"children":644},{"style":280},[645],{"type":48,"value":482},{"type":42,"tag":76,"props":647,"children":648},{"style":99},[649],{"type":48,"value":650}," ENG\n",{"type":42,"tag":76,"props":652,"children":654},{"class":78,"line":653},13,[655,659,663],{"type":42,"tag":76,"props":656,"children":657},{"style":450},[658],{"type":48,"value":549},{"type":42,"tag":76,"props":660,"children":661},{"style":280},[662],{"type":48,"value":482},{"type":42,"tag":76,"props":664,"children":665},{"style":99},[666],{"type":48,"value":667}," Engineering\n",{"type":42,"tag":76,"props":669,"children":671},{"class":78,"line":670},14,[672,677],{"type":42,"tag":76,"props":673,"children":674},{"style":450},[675],{"type":48,"value":676},"  issues",{"type":42,"tag":76,"props":678,"children":679},{"style":280},[680],{"type":48,"value":457},{"type":42,"tag":76,"props":682,"children":684},{"class":78,"line":683},15,[685,689,694,698],{"type":42,"tag":76,"props":686,"children":687},{"style":280},[688],{"type":48,"value":526},{"type":42,"tag":76,"props":690,"children":691},{"style":450},[692],{"type":48,"value":693}," team",{"type":42,"tag":76,"props":695,"children":696},{"style":280},[697],{"type":48,"value":482},{"type":42,"tag":76,"props":699,"children":700},{"style":99},[701],{"type":48,"value":650},{"type":42,"tag":76,"props":703,"children":705},{"class":78,"line":704},16,[706,711,715],{"type":42,"tag":76,"props":707,"children":708},{"style":450},[709],{"type":48,"value":710},"      title",{"type":42,"tag":76,"props":712,"children":713},{"style":280},[714],{"type":48,"value":482},{"type":42,"tag":76,"props":716,"children":717},{"style":99},[718],{"type":48,"value":719}," Fix local checkout test\n",{"type":42,"tag":76,"props":721,"children":723},{"class":78,"line":722},17,[724,729,733],{"type":42,"tag":76,"props":725,"children":726},{"style":450},[727],{"type":48,"value":728},"      state",{"type":42,"tag":76,"props":730,"children":731},{"style":280},[732],{"type":48,"value":482},{"type":42,"tag":76,"props":734,"children":735},{"style":99},[736],{"type":48,"value":737}," Todo\n",{"type":42,"tag":76,"props":739,"children":741},{"class":78,"line":740},18,[742,747,751],{"type":42,"tag":76,"props":743,"children":744},{"style":450},[745],{"type":48,"value":746},"      assignee",{"type":42,"tag":76,"props":748,"children":749},{"style":280},[750],{"type":48,"value":482},{"type":42,"tag":76,"props":752,"children":753},{"style":99},[754],{"type":48,"value":598},{"type":42,"tag":76,"props":756,"children":758},{"class":78,"line":757},19,[759,764],{"type":42,"tag":76,"props":760,"children":761},{"style":450},[762],{"type":48,"value":763},"  oauth_apps",{"type":42,"tag":76,"props":765,"children":766},{"style":280},[767],{"type":48,"value":457},{"type":42,"tag":76,"props":769,"children":771},{"class":78,"line":770},20,[772,776,781,785],{"type":42,"tag":76,"props":773,"children":774},{"style":280},[775],{"type":48,"value":526},{"type":42,"tag":76,"props":777,"children":778},{"style":450},[779],{"type":48,"value":780}," client_id",{"type":42,"tag":76,"props":782,"children":783},{"style":280},[784],{"type":48,"value":482},{"type":42,"tag":76,"props":786,"children":787},{"style":99},[788],{"type":48,"value":789}," lin_example_client_id\n",{"type":42,"tag":76,"props":791,"children":793},{"class":78,"line":792},21,[794,799,803],{"type":42,"tag":76,"props":795,"children":796},{"style":450},[797],{"type":48,"value":798},"      client_secret",{"type":42,"tag":76,"props":800,"children":801},{"style":280},[802],{"type":48,"value":482},{"type":42,"tag":76,"props":804,"children":805},{"style":99},[806],{"type":48,"value":807}," example_client_secret\n",{"type":42,"tag":76,"props":809,"children":811},{"class":78,"line":810},22,[812,816,820],{"type":42,"tag":76,"props":813,"children":814},{"style":450},[815],{"type":48,"value":549},{"type":42,"tag":76,"props":817,"children":818},{"style":280},[819],{"type":48,"value":482},{"type":42,"tag":76,"props":821,"children":822},{"style":99},[823],{"type":48,"value":824}," My Linear App\n",{"type":42,"tag":76,"props":826,"children":828},{"class":78,"line":827},23,[829,834],{"type":42,"tag":76,"props":830,"children":831},{"style":450},[832],{"type":48,"value":833},"      redirect_uris",{"type":42,"tag":76,"props":835,"children":836},{"style":280},[837],{"type":48,"value":457},{"type":42,"tag":76,"props":839,"children":841},{"class":78,"line":840},24,[842,847],{"type":42,"tag":76,"props":843,"children":844},{"style":280},[845],{"type":48,"value":846},"        -",{"type":42,"tag":76,"props":848,"children":849},{"style":99},[850],{"type":48,"value":851}," http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Flinear\n",{"type":42,"tag":76,"props":853,"children":855},{"class":78,"line":854},25,[856,861,865,870,874,879,884,888,893,897,902],{"type":42,"tag":76,"props":857,"children":858},{"style":450},[859],{"type":48,"value":860},"      scopes",{"type":42,"tag":76,"props":862,"children":863},{"style":280},[864],{"type":48,"value":482},{"type":42,"tag":76,"props":866,"children":867},{"style":280},[868],{"type":48,"value":869}," [",{"type":42,"tag":76,"props":871,"children":872},{"style":99},[873],{"type":48,"value":397},{"type":42,"tag":76,"props":875,"children":876},{"style":280},[877],{"type":48,"value":878},",",{"type":42,"tag":76,"props":880,"children":881},{"style":99},[882],{"type":48,"value":883}," write",{"type":42,"tag":76,"props":885,"children":886},{"style":280},[887],{"type":48,"value":878},{"type":42,"tag":76,"props":889,"children":890},{"style":99},[891],{"type":48,"value":892}," issues:create",{"type":42,"tag":76,"props":894,"children":895},{"style":280},[896],{"type":48,"value":878},{"type":42,"tag":76,"props":898,"children":899},{"style":99},[900],{"type":48,"value":901}," comments:create",{"type":42,"tag":76,"props":903,"children":904},{"style":280},[905],{"type":48,"value":906},"]\n",{"type":42,"tag":76,"props":908,"children":910},{"class":78,"line":909},26,[911,916],{"type":42,"tag":76,"props":912,"children":913},{"style":450},[914],{"type":48,"value":915},"  tokens",{"type":42,"tag":76,"props":917,"children":918},{"style":280},[919],{"type":48,"value":457},{"type":42,"tag":76,"props":921,"children":923},{"class":78,"line":922},27,[924,928,933,937],{"type":42,"tag":76,"props":925,"children":926},{"style":280},[927],{"type":48,"value":526},{"type":42,"tag":76,"props":929,"children":930},{"style":450},[931],{"type":48,"value":932}," token",{"type":42,"tag":76,"props":934,"children":935},{"style":280},[936],{"type":48,"value":482},{"type":42,"tag":76,"props":938,"children":939},{"style":99},[940],{"type":48,"value":941}," lin_test_admin\n",{"type":42,"tag":76,"props":943,"children":945},{"class":78,"line":944},28,[946,951,955],{"type":42,"tag":76,"props":947,"children":948},{"style":450},[949],{"type":48,"value":950},"      user",{"type":42,"tag":76,"props":952,"children":953},{"style":280},[954],{"type":48,"value":482},{"type":42,"tag":76,"props":956,"children":957},{"style":99},[958],{"type":48,"value":540},{"type":42,"tag":76,"props":960,"children":962},{"class":78,"line":961},29,[963,967,971,975,979,983,987,991,995,999,1003,1007,1012],{"type":42,"tag":76,"props":964,"children":965},{"style":450},[966],{"type":48,"value":860},{"type":42,"tag":76,"props":968,"children":969},{"style":280},[970],{"type":48,"value":482},{"type":42,"tag":76,"props":972,"children":973},{"style":280},[974],{"type":48,"value":869},{"type":42,"tag":76,"props":976,"children":977},{"style":99},[978],{"type":48,"value":397},{"type":42,"tag":76,"props":980,"children":981},{"style":280},[982],{"type":48,"value":878},{"type":42,"tag":76,"props":984,"children":985},{"style":99},[986],{"type":48,"value":883},{"type":42,"tag":76,"props":988,"children":989},{"style":280},[990],{"type":48,"value":878},{"type":42,"tag":76,"props":992,"children":993},{"style":99},[994],{"type":48,"value":892},{"type":42,"tag":76,"props":996,"children":997},{"style":280},[998],{"type":48,"value":878},{"type":42,"tag":76,"props":1000,"children":1001},{"style":99},[1002],{"type":48,"value":901},{"type":42,"tag":76,"props":1004,"children":1005},{"style":280},[1006],{"type":48,"value":878},{"type":42,"tag":76,"props":1008,"children":1009},{"style":99},[1010],{"type":48,"value":1011}," admin",{"type":42,"tag":76,"props":1013,"children":1014},{"style":280},[1015],{"type":48,"value":906},{"type":42,"tag":76,"props":1017,"children":1019},{"class":78,"line":1018},30,[1020,1025,1029],{"type":42,"tag":76,"props":1021,"children":1022},{"style":450},[1023],{"type":48,"value":1024},"  strict_scopes",{"type":42,"tag":76,"props":1026,"children":1027},{"style":280},[1028],{"type":48,"value":482},{"type":42,"tag":76,"props":1030,"children":1031},{"style":574},[1032],{"type":48,"value":1033}," false\n",{"type":42,"tag":57,"props":1035,"children":1037},{"id":1036},"graphql-surface",[1038],{"type":48,"value":1039},"GraphQL Surface",{"type":42,"tag":51,"props":1041,"children":1042},{},[1043],{"type":48,"value":1044},"Supported queries:",{"type":42,"tag":1046,"props":1047,"children":1048},"ul",{},[1049,1059,1068,1084,1100,1116,1132,1148,1164,1180,1196,1212],{"type":42,"tag":1050,"props":1051,"children":1052},"li",{},[1053],{"type":42,"tag":72,"props":1054,"children":1056},{"className":1055},[],[1057],{"type":48,"value":1058},"viewer",{"type":42,"tag":1050,"props":1060,"children":1061},{},[1062],{"type":42,"tag":72,"props":1063,"children":1065},{"className":1064},[],[1066],{"type":48,"value":1067},"organization",{"type":42,"tag":1050,"props":1069,"children":1070},{},[1071,1077,1078],{"type":42,"tag":72,"props":1072,"children":1074},{"className":1073},[],[1075],{"type":48,"value":1076},"users",{"type":48,"value":399},{"type":42,"tag":72,"props":1079,"children":1081},{"className":1080},[],[1082],{"type":48,"value":1083},"user",{"type":42,"tag":1050,"props":1085,"children":1086},{},[1087,1093,1094],{"type":42,"tag":72,"props":1088,"children":1090},{"className":1089},[],[1091],{"type":48,"value":1092},"teams",{"type":48,"value":399},{"type":42,"tag":72,"props":1095,"children":1097},{"className":1096},[],[1098],{"type":48,"value":1099},"team",{"type":42,"tag":1050,"props":1101,"children":1102},{},[1103,1109,1110],{"type":42,"tag":72,"props":1104,"children":1106},{"className":1105},[],[1107],{"type":48,"value":1108},"workflowStates",{"type":48,"value":399},{"type":42,"tag":72,"props":1111,"children":1113},{"className":1112},[],[1114],{"type":48,"value":1115},"workflowState",{"type":42,"tag":1050,"props":1117,"children":1118},{},[1119,1125,1126],{"type":42,"tag":72,"props":1120,"children":1122},{"className":1121},[],[1123],{"type":48,"value":1124},"issues",{"type":48,"value":399},{"type":42,"tag":72,"props":1127,"children":1129},{"className":1128},[],[1130],{"type":48,"value":1131},"issue",{"type":42,"tag":1050,"props":1133,"children":1134},{},[1135,1141,1142],{"type":42,"tag":72,"props":1136,"children":1138},{"className":1137},[],[1139],{"type":48,"value":1140},"comments",{"type":48,"value":399},{"type":42,"tag":72,"props":1143,"children":1145},{"className":1144},[],[1146],{"type":48,"value":1147},"comment",{"type":42,"tag":1050,"props":1149,"children":1150},{},[1151,1157,1158],{"type":42,"tag":72,"props":1152,"children":1154},{"className":1153},[],[1155],{"type":48,"value":1156},"issueLabels",{"type":48,"value":399},{"type":42,"tag":72,"props":1159,"children":1161},{"className":1160},[],[1162],{"type":48,"value":1163},"issueLabel",{"type":42,"tag":1050,"props":1165,"children":1166},{},[1167,1173,1174],{"type":42,"tag":72,"props":1168,"children":1170},{"className":1169},[],[1171],{"type":48,"value":1172},"projects",{"type":48,"value":399},{"type":42,"tag":72,"props":1175,"children":1177},{"className":1176},[],[1178],{"type":48,"value":1179},"project",{"type":42,"tag":1050,"props":1181,"children":1182},{},[1183,1189,1190],{"type":42,"tag":72,"props":1184,"children":1186},{"className":1185},[],[1187],{"type":48,"value":1188},"cycles",{"type":48,"value":399},{"type":42,"tag":72,"props":1191,"children":1193},{"className":1192},[],[1194],{"type":48,"value":1195},"cycle",{"type":42,"tag":1050,"props":1197,"children":1198},{},[1199,1205,1206],{"type":42,"tag":72,"props":1200,"children":1202},{"className":1201},[],[1203],{"type":48,"value":1204},"webhooks",{"type":48,"value":399},{"type":42,"tag":72,"props":1207,"children":1209},{"className":1208},[],[1210],{"type":48,"value":1211},"webhook",{"type":42,"tag":1050,"props":1213,"children":1214},{},[1215,1221,1222],{"type":42,"tag":72,"props":1216,"children":1218},{"className":1217},[],[1219],{"type":48,"value":1220},"agentSessions",{"type":48,"value":399},{"type":42,"tag":72,"props":1223,"children":1225},{"className":1224},[],[1226],{"type":48,"value":1227},"agentSession",{"type":42,"tag":51,"props":1229,"children":1230},{},[1231],{"type":48,"value":1232},"Supported mutations:",{"type":42,"tag":1046,"props":1234,"children":1235},{},[1236,1273,1296,1319,1335,1351,1374],{"type":42,"tag":1050,"props":1237,"children":1238},{},[1239,1245,1246,1252,1253,1259,1260,1266,1267],{"type":42,"tag":72,"props":1240,"children":1242},{"className":1241},[],[1243],{"type":48,"value":1244},"issueCreate",{"type":48,"value":399},{"type":42,"tag":72,"props":1247,"children":1249},{"className":1248},[],[1250],{"type":48,"value":1251},"issueUpdate",{"type":48,"value":399},{"type":42,"tag":72,"props":1254,"children":1256},{"className":1255},[],[1257],{"type":48,"value":1258},"issueDelete",{"type":48,"value":399},{"type":42,"tag":72,"props":1261,"children":1263},{"className":1262},[],[1264],{"type":48,"value":1265},"issueArchive",{"type":48,"value":399},{"type":42,"tag":72,"props":1268,"children":1270},{"className":1269},[],[1271],{"type":48,"value":1272},"issueUnarchive",{"type":42,"tag":1050,"props":1274,"children":1275},{},[1276,1282,1283,1289,1290],{"type":42,"tag":72,"props":1277,"children":1279},{"className":1278},[],[1280],{"type":48,"value":1281},"commentCreate",{"type":48,"value":399},{"type":42,"tag":72,"props":1284,"children":1286},{"className":1285},[],[1287],{"type":48,"value":1288},"commentUpdate",{"type":48,"value":399},{"type":42,"tag":72,"props":1291,"children":1293},{"className":1292},[],[1294],{"type":48,"value":1295},"commentDelete",{"type":42,"tag":1050,"props":1297,"children":1298},{},[1299,1305,1306,1312,1313],{"type":42,"tag":72,"props":1300,"children":1302},{"className":1301},[],[1303],{"type":48,"value":1304},"issueLabelCreate",{"type":48,"value":399},{"type":42,"tag":72,"props":1307,"children":1309},{"className":1308},[],[1310],{"type":48,"value":1311},"issueLabelUpdate",{"type":48,"value":399},{"type":42,"tag":72,"props":1314,"children":1316},{"className":1315},[],[1317],{"type":48,"value":1318},"issueLabelDelete",{"type":42,"tag":1050,"props":1320,"children":1321},{},[1322,1328,1329],{"type":42,"tag":72,"props":1323,"children":1325},{"className":1324},[],[1326],{"type":48,"value":1327},"issueAddLabel",{"type":48,"value":399},{"type":42,"tag":72,"props":1330,"children":1332},{"className":1331},[],[1333],{"type":48,"value":1334},"issueRemoveLabel",{"type":42,"tag":1050,"props":1336,"children":1337},{},[1338,1344,1345],{"type":42,"tag":72,"props":1339,"children":1341},{"className":1340},[],[1342],{"type":48,"value":1343},"webhookCreate",{"type":48,"value":399},{"type":42,"tag":72,"props":1346,"children":1348},{"className":1347},[],[1349],{"type":48,"value":1350},"webhookDelete",{"type":42,"tag":1050,"props":1352,"children":1353},{},[1354,1360,1361,1367,1368],{"type":42,"tag":72,"props":1355,"children":1357},{"className":1356},[],[1358],{"type":48,"value":1359},"agentSessionCreateOnIssue",{"type":48,"value":399},{"type":42,"tag":72,"props":1362,"children":1364},{"className":1363},[],[1365],{"type":48,"value":1366},"agentSessionCreateOnComment",{"type":48,"value":399},{"type":42,"tag":72,"props":1369,"children":1371},{"className":1370},[],[1372],{"type":48,"value":1373},"agentSessionUpdate",{"type":42,"tag":1050,"props":1375,"children":1376},{},[1377],{"type":42,"tag":72,"props":1378,"children":1380},{"className":1379},[],[1381],{"type":48,"value":1382},"agentActivityCreate",{"type":42,"tag":51,"props":1384,"children":1385},{},[1386,1388,1394,1395,1401,1402,1408],{"type":48,"value":1387},"Connections use Relay-style cursors with ",{"type":42,"tag":72,"props":1389,"children":1391},{"className":1390},[],[1392],{"type":48,"value":1393},"nodes",{"type":48,"value":399},{"type":42,"tag":72,"props":1396,"children":1398},{"className":1397},[],[1399],{"type":48,"value":1400},"edges",{"type":48,"value":421},{"type":42,"tag":72,"props":1403,"children":1405},{"className":1404},[],[1406],{"type":48,"value":1407},"pageInfo",{"type":48,"value":429},{"type":42,"tag":57,"props":1410,"children":1412},{"id":1411},"oauth",[1413],{"type":48,"value":1414},"OAuth",{"type":42,"tag":1046,"props":1416,"children":1417},{},[1418,1429,1440,1451],{"type":42,"tag":1050,"props":1419,"children":1420},{},[1421,1427],{"type":42,"tag":72,"props":1422,"children":1424},{"className":1423},[],[1425],{"type":48,"value":1426},"GET \u002Foauth\u002Fauthorize",{"type":48,"value":1428}," - authorization endpoint with local user picker",{"type":42,"tag":1050,"props":1430,"children":1431},{},[1432,1438],{"type":42,"tag":72,"props":1433,"children":1435},{"className":1434},[],[1436],{"type":48,"value":1437},"POST \u002Foauth\u002Fauthorize\u002Fcallback",{"type":48,"value":1439}," - local user picker callback",{"type":42,"tag":1050,"props":1441,"children":1442},{},[1443,1449],{"type":42,"tag":72,"props":1444,"children":1446},{"className":1445},[],[1447],{"type":48,"value":1448},"POST \u002Foauth\u002Ftoken",{"type":48,"value":1450}," - authorization code, refresh token, and client credentials grants",{"type":42,"tag":1050,"props":1452,"children":1453},{},[1454,1460],{"type":42,"tag":72,"props":1455,"children":1457},{"className":1456},[],[1458],{"type":48,"value":1459},"POST \u002Foauth\u002Frevoke",{"type":48,"value":1461}," - revoke access or refresh tokens",{"type":42,"tag":51,"props":1463,"children":1464},{},[1465,1467,1473,1475,1481],{"type":48,"value":1466},"OAuth apps can use ",{"type":42,"tag":72,"props":1468,"children":1470},{"className":1469},[],[1471],{"type":48,"value":1472},"actor: user",{"type":48,"value":1474}," or ",{"type":42,"tag":72,"props":1476,"children":1478},{"className":1477},[],[1479],{"type":48,"value":1480},"actor: app",{"type":48,"value":1482},". The configured actor is authoritative. User actor apps use authorization code flows. App actor apps use the app install flow and can request client credentials tokens. App actor support is sufficient for local agent and service-account tests, but it is not full production Linear agent behavior.",{"type":42,"tag":57,"props":1484,"children":1485},{"id":1204},[1486],{"type":48,"value":1487},"Webhooks",{"type":42,"tag":51,"props":1489,"children":1490},{},[1491,1493,1498,1500,1506,1507,1513,1514,1520],{"type":48,"value":1492},"Create local webhook subscriptions through ",{"type":42,"tag":72,"props":1494,"children":1496},{"className":1495},[],[1497],{"type":48,"value":1343},{"type":48,"value":1499}," or seed config. Supported writes dispatch Linear-shaped payloads with ",{"type":42,"tag":72,"props":1501,"children":1503},{"className":1502},[],[1504],{"type":48,"value":1505},"Linear-Delivery",{"type":48,"value":399},{"type":42,"tag":72,"props":1508,"children":1510},{"className":1509},[],[1511],{"type":48,"value":1512},"Linear-Event",{"type":48,"value":421},{"type":42,"tag":72,"props":1515,"children":1517},{"className":1516},[],[1518],{"type":48,"value":1519},"Linear-Signature",{"type":48,"value":1521}," headers when a secret is configured.",{"type":42,"tag":57,"props":1523,"children":1525},{"id":1524},"inspector",[1526],{"type":48,"value":1527},"Inspector",{"type":42,"tag":51,"props":1529,"children":1530},{},[1531,1533,1539],{"type":48,"value":1532},"Open ",{"type":42,"tag":72,"props":1534,"children":1536},{"className":1535},[],[1537],{"type":48,"value":1538},"GET \u002F",{"type":48,"value":1540}," in the Linear emulator to inspect issues, teams, users, projects, agent sessions, OAuth apps, tokens, webhook subscriptions, and webhook deliveries.",{"type":42,"tag":57,"props":1542,"children":1544},{"id":1543},"current-limits",[1545],{"type":48,"value":1546},"Current Limits",{"type":42,"tag":51,"props":1548,"children":1549},{},[1550],{"type":48,"value":1551},"Full Linear schema coverage, exact production rate limiting, notification inbox behavior, rich document APIs, customer APIs, initiative APIs, exact search relevance, and full production agent behavior are not implemented.",{"type":42,"tag":1553,"props":1554,"children":1555},"style",{},[1556],{"type":48,"value":1557},"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":1559,"total":631},[1560,1572,1586,1608,1618,1639,1646],{"slug":1561,"name":1561,"fn":1562,"description":1563,"org":1564,"tags":1565,"stars":24,"repoUrl":25,"updatedAt":1571},"apple","emulate Apple Sign-in for local development","Emulated Sign in with Apple \u002F Apple OIDC for local development and testing. Use when the user needs to test Apple sign-in locally, emulate Apple OIDC discovery, handle Apple token exchange, configure Apple OAuth clients, or work with Apple userinfo without hitting real Apple APIs. Triggers include \"Apple OAuth\", \"emulate Apple\", \"mock Apple login\", \"test Apple sign-in\", \"Sign in with Apple\", \"Apple OIDC\", \"local Apple auth\", or any task requiring a local Apple OAuth\u002FOIDC provider.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1566,1568,1569,1570],{"name":1567,"slug":1561,"type":14},"Apple",{"name":257,"slug":254,"type":14},{"name":16,"slug":17,"type":14},{"name":22,"slug":23,"type":14},"2026-07-17T06:08:52.141606",{"slug":1573,"name":1573,"fn":1574,"description":1575,"org":1576,"tags":1577,"stars":24,"repoUrl":25,"updatedAt":1585},"aws","emulate AWS cloud services locally","Emulated AWS cloud services (S3, SQS, IAM, STS) for local development and testing. Use when the user needs to interact with AWS API endpoints locally, test S3 bucket and object operations, emulate SQS queues and messages, manage IAM users\u002Froles\u002Faccess keys, test STS assume role, or work without hitting real AWS APIs. Triggers include \"AWS emulator\", \"emulate AWS\", \"mock S3\", \"local SQS\", \"test IAM\", \"emulate S3\", \"AWS locally\", \"STS assume role\", or any task requiring local AWS service emulation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1578,1580,1583,1584],{"name":1579,"slug":1573,"type":14},"AWS",{"name":1581,"slug":1582,"type":14},"Cloud","cloud",{"name":16,"slug":17,"type":14},{"name":22,"slug":23,"type":14},"2026-07-17T06:08:52.818809",{"slug":1587,"name":1587,"fn":1588,"description":1589,"org":1590,"tags":1591,"stars":24,"repoUrl":25,"updatedAt":1607},"emulate","emulate developer APIs for local testing","Local drop-in API emulator for Vercel, GitHub, Google, Slack, Apple, Microsoft, AWS, Linear, and other developer APIs. Use when the user needs to start emulated services, configure seed data, write tests against local APIs, set up CI without network access, or work with the emulate CLI or programmatic API. Triggers include \"start the emulator\", \"emulate services\", \"mock API locally\", \"create emulator config\", \"test against local API\", \"npx emulate\", or any task requiring local service emulation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1592,1593,1594,1595,1598,1599,1600,1603,1606],{"name":19,"slug":20,"type":14},{"name":1567,"slug":1561,"type":14},{"name":1579,"slug":1573,"type":14},{"name":1596,"slug":1597,"type":14},"GitHub","github",{"name":13,"slug":4,"type":14},{"name":16,"slug":17,"type":14},{"name":1601,"slug":1602,"type":14},"Microsoft","microsoft",{"name":1604,"slug":1605,"type":14},"Slack","slack",{"name":22,"slug":23,"type":14},"2026-07-17T06:08:59.816303",{"slug":1597,"name":1597,"fn":1609,"description":1610,"org":1611,"tags":1612,"stars":24,"repoUrl":25,"updatedAt":1617},"emulate GitHub API for local development","Emulated GitHub REST API for local development and testing. Use when the user needs to interact with GitHub API endpoints locally, test GitHub integrations, emulate repos\u002Fissues\u002FPRs, set up GitHub OAuth flows, configure GitHub Apps, test webhooks, or work with actions\u002Fchecks without hitting the real GitHub API. Triggers include \"GitHub API\", \"emulate GitHub\", \"mock GitHub\", \"test GitHub OAuth\", \"GitHub App JWT\", \"local GitHub\", or any task requiring a local GitHub API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1613,1614,1615,1616],{"name":19,"slug":20,"type":14},{"name":1596,"slug":1597,"type":14},{"name":16,"slug":17,"type":14},{"name":22,"slug":23,"type":14},"2026-07-17T06:05:55.104585",{"slug":1619,"name":1619,"fn":1620,"description":1621,"org":1622,"tags":1623,"stars":24,"repoUrl":25,"updatedAt":1638},"google","emulate Google services for local development","Emulated Google OAuth 2.0, OpenID Connect, Gmail, Calendar, and Drive for local development and testing. Use when the user needs to test Google sign-in locally, emulate OIDC discovery, handle Google token exchange, configure Google OAuth clients, work with Gmail messages\u002Fdrafts\u002Fthreads\u002Flabels, manage Calendar events, upload or list Drive files, or work with Google userinfo without hitting real Google APIs. Triggers include \"Google OAuth\", \"emulate Google\", \"mock Google login\", \"test Google sign-in\", \"OIDC emulator\", \"Google OIDC\", \"Gmail API\", \"Google Calendar\", \"Google Drive\", \"local Google auth\", or any task requiring a local Google API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1624,1625,1628,1630,1633,1636,1637],{"name":257,"slug":254,"type":14},{"name":1626,"slug":1627,"type":14},"Gmail","gmail",{"name":1629,"slug":1619,"type":14},"Google",{"name":1631,"slug":1632,"type":14},"Google Calendar","google-calendar",{"name":1634,"slug":1635,"type":14},"Google Drive","google-drive",{"name":16,"slug":17,"type":14},{"name":1414,"slug":1411,"type":14},"2026-07-17T06:08:59.475325",{"slug":4,"name":4,"fn":5,"description":6,"org":1640,"tags":1641,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1642,1643,1644,1645],{"name":19,"slug":20,"type":14},{"name":13,"slug":4,"type":14},{"name":16,"slug":17,"type":14},{"name":22,"slug":23,"type":14},{"slug":1602,"name":1602,"fn":1647,"description":1648,"org":1649,"tags":1650,"stars":24,"repoUrl":25,"updatedAt":1655},"emulate Microsoft Entra ID for local development","Emulated Microsoft Entra ID (Azure AD) OAuth 2.0 \u002F OpenID Connect for local development and testing. Use when the user needs to test Microsoft sign-in locally, emulate Entra ID OIDC discovery, handle Microsoft token exchange, configure Azure AD OAuth clients, work with Microsoft Graph \u002Fme, or test PKCE\u002Fclient credentials flows without hitting real Microsoft APIs. Triggers include \"Microsoft OAuth\", \"Entra ID\", \"Azure AD\", \"emulate Microsoft\", \"mock Microsoft login\", \"test Microsoft sign-in\", \"Microsoft OIDC\", \"local Microsoft auth\", or any task requiring a local Microsoft OAuth\u002FOIDC provider.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1651,1652,1653,1654],{"name":257,"slug":254,"type":14},{"name":16,"slug":17,"type":14},{"name":1601,"slug":1602,"type":14},{"name":1414,"slug":1411,"type":14},"2026-07-17T06:08:55.822349",{"items":1657,"total":1821},[1658,1676,1686,1698,1711,1726,1738,1749,1762,1775,1787,1806],{"slug":1659,"name":1659,"fn":1660,"description":1661,"org":1662,"tags":1663,"stars":1673,"repoUrl":1674,"updatedAt":1675},"agent-browser","automate browser interactions for AI agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1664,1667,1670],{"name":1665,"slug":1666,"type":14},"Agents","agents",{"name":1668,"slug":1669,"type":14},"Automation","automation",{"name":1671,"slug":1672,"type":14},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":1677,"name":1677,"fn":1678,"description":1679,"org":1680,"tags":1681,"stars":1673,"repoUrl":1674,"updatedAt":1685},"agentcore","run browser automation on AWS Bedrock","Run agent-browser on AWS Bedrock AgentCore cloud browsers. Use when the user wants to use AgentCore, run browser automation on AWS, use a cloud browser with AWS credentials, or needs a managed browser session backed by AWS infrastructure. Triggers include \"use agentcore\", \"run on AWS\", \"cloud browser with AWS\", \"bedrock browser\", \"agentcore session\", or any task requiring AWS-hosted browser automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1682,1683,1684],{"name":1668,"slug":1669,"type":14},{"name":1579,"slug":1573,"type":14},{"name":1671,"slug":1672,"type":14},"2026-07-17T06:08:33.665276",{"slug":1687,"name":1687,"fn":1688,"description":1689,"org":1690,"tags":1691,"stars":1673,"repoUrl":1674,"updatedAt":1697},"core","navigate and interact with web pages","Core agent-browser usage guide. Read this before running any agent-browser commands. Covers the snapshot-and-ref workflow, navigating pages, interacting with elements (click, fill, type, select), extracting text and data, taking screenshots, managing tabs, handling forms and auth, waiting for content, running multiple browser sessions in parallel, and troubleshooting common failures. Use when the user asks to interact with a website, fill a form, click something, extract data, take a screenshot, log into a site, test a web app, or automate any browser task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1692,1693,1694],{"name":1665,"slug":1666,"type":14},{"name":1671,"slug":1672,"type":14},{"name":1695,"slug":1696,"type":14},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":1699,"name":1699,"fn":1700,"description":1701,"org":1702,"tags":1703,"stars":1673,"repoUrl":1674,"updatedAt":1710},"derive-client","reverse engineer internal APIs from browser traffic","Reverse-engineer a website's internal API by recording browser traffic into a HAR file, then generate a standalone client or CLI that calls the endpoints directly, with no browser needed after the first recording. Use when asked to \"derive a client\", \"build a CLI for \u003Csite>\", \"reverse engineer this site's API\", \"record network requests\", \"turn this site into an API\", or when the same site will be automated repeatedly and direct HTTP calls would beat driving the browser every time.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1704,1705,1706,1707],{"name":19,"slug":20,"type":14},{"name":1668,"slug":1669,"type":14},{"name":1671,"slug":1672,"type":14},{"name":1708,"slug":1709,"type":14},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":1712,"name":1712,"fn":1713,"description":1714,"org":1715,"tags":1716,"stars":1673,"repoUrl":1674,"updatedAt":1725},"dogfood","perform exploratory testing on web applications","Systematically explore and test a web application to find bugs, UX issues, and other problems. Use when asked to \"dogfood\", \"QA\", \"exploratory test\", \"find issues\", \"bug hunt\", \"test this app\u002Fsite\u002Fplatform\", or review the quality of a web application. Produces a structured report with full reproduction evidence -- step-by-step screenshots, repro videos, and detailed repro steps for every issue -- so findings can be handed directly to the responsible teams.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1717,1718,1721,1724],{"name":1671,"slug":1672,"type":14},{"name":1719,"slug":1720,"type":14},"Debugging","debugging",{"name":1722,"slug":1723,"type":14},"QA","qa",{"name":22,"slug":23,"type":14},"2026-07-17T06:07:41.421482",{"slug":1727,"name":1727,"fn":1728,"description":1729,"org":1730,"tags":1731,"stars":1673,"repoUrl":1674,"updatedAt":1737},"electron","automate Electron desktop applications","Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include \"automate Slack app\", \"control VS Code\", \"interact with Discord app\", \"test this Electron app\", \"connect to desktop app\", or any task requiring automation of a native Electron application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1732,1733,1734],{"name":1665,"slug":1666,"type":14},{"name":1671,"slug":1672,"type":14},{"name":1735,"slug":1736,"type":14},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":1605,"name":1605,"fn":1739,"description":1740,"org":1741,"tags":1742,"stars":1673,"repoUrl":1674,"updatedAt":1748},"interact with Slack workspaces","Interact with Slack workspaces using browser automation. Use when the user needs to check unread channels, navigate Slack, send messages, extract data, find information, search conversations, or automate any Slack task. Triggers include \"check my Slack\", \"what channels have unreads\", \"send a message to\", \"search Slack for\", \"extract from Slack\", \"find who said\", or any task requiring programmatic Slack interaction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1743,1744,1747],{"name":1671,"slug":1672,"type":14},{"name":1745,"slug":1746,"type":14},"Messaging","messaging",{"name":1604,"slug":1605,"type":14},"2026-07-17T06:08:27.679015",{"slug":1750,"name":1750,"fn":1751,"description":1752,"org":1753,"tags":1754,"stars":1673,"repoUrl":1674,"updatedAt":1761},"vercel-sandbox","run browser automation in Vercel Sandbox","Run agent-browser + Chrome inside Vercel Sandbox microVMs for browser automation from any Vercel-deployed app. Use when the user needs browser automation in a Vercel app (Next.js, SvelteKit, Nuxt, Remix, Astro, etc.), wants to run headless Chrome without binary size limits, needs persistent browser sessions across commands, or wants ephemeral isolated browser environments. Triggers include \"Vercel Sandbox browser\", \"microVM Chrome\", \"agent-browser in sandbox\", \"browser automation on Vercel\", or any task requiring Chrome in a Vercel Sandbox.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1755,1756,1757,1758],{"name":1668,"slug":1669,"type":14},{"name":1671,"slug":1672,"type":14},{"name":22,"slug":23,"type":14},{"name":1759,"slug":1760,"type":14},"Vercel","vercel","2026-07-17T06:08:28.349899",{"slug":1763,"name":1763,"fn":1764,"description":1765,"org":1766,"tags":1767,"stars":1772,"repoUrl":1773,"updatedAt":1774},"deploy-to-vercel","deploy applications to Vercel","Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1768,1771],{"name":1769,"slug":1770,"type":14},"Deployment","deployment",{"name":1759,"slug":1760,"type":14},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":1776,"name":1776,"fn":1777,"description":1778,"org":1779,"tags":1780,"stars":1772,"repoUrl":1773,"updatedAt":1786},"vercel-cli-with-tokens","manage Vercel projects via CLI","Deploy and manage projects on Vercel using token-based authentication. Use when working with Vercel CLI using access tokens rather than interactive login — e.g. \"deploy to vercel\", \"set up vercel\", \"add environment variables to vercel\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1781,1784,1785],{"name":1782,"slug":1783,"type":14},"CLI","cli",{"name":1769,"slug":1770,"type":14},{"name":1759,"slug":1760,"type":14},"2026-07-17T06:08:41.84179",{"slug":1788,"name":1788,"fn":1789,"description":1790,"org":1791,"tags":1792,"stars":1772,"repoUrl":1773,"updatedAt":1805},"vercel-composition-patterns","implement scalable React composition patterns","React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1793,1796,1799,1802],{"name":1794,"slug":1795,"type":14},"Best Practices","best-practices",{"name":1797,"slug":1798,"type":14},"Frontend","frontend",{"name":1800,"slug":1801,"type":14},"React","react",{"name":1803,"slug":1804,"type":14},"UI Components","ui-components","2026-07-17T06:05:40.576913",{"slug":1807,"name":1807,"fn":1808,"description":1809,"org":1810,"tags":1811,"stars":1772,"repoUrl":1773,"updatedAt":1820},"vercel-optimize","optimize Vercel project performance and costs","Use for Vercel cost and performance optimization on deployed projects, especially Next.js, SvelteKit, Nuxt, and limited Astro apps. Collect Vercel metrics, usage, project config, and code scan results first; investigate only metric-backed candidates; produce ranked recommendations grounded in verified files and version-aware Vercel\u002Fframework docs. Trigger for Vercel bill reduction, slow or expensive routes, caching opportunities, Function Invocations, Build Minutes, Fast Data Transfer, Core Web Vitals, Bot Management, Fluid compute, or cost breakdown requests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1812,1815,1816,1819],{"name":1813,"slug":1814,"type":14},"Cost Optimization","cost-optimization",{"name":1769,"slug":1770,"type":14},{"name":1817,"slug":1818,"type":14},"Performance","performance",{"name":1759,"slug":1760,"type":14},"2026-07-17T06:04:08.327515",100]