[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-github-tools-agents":3,"mdc-rw4hq0-key":41,"related-org-vercel-labs-github-tools-agents":1966,"related-repo-vercel-labs-github-tools-agents":2136},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":36,"sourceUrl":39,"mdContent":40},"github-tools-agents","integrate GitHub API tools into agents","Add GitHub API tools to AI agents using @github-tools\u002Fsdk — AI SDK, eve, Vercel Workflow, and Chat SDK. Covers tools, presets, approval control, token scoping, and durable agents.",{"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,16,19,22],{"name":13,"slug":14,"type":15},"GitHub","github","tag",{"name":17,"slug":18,"type":15},"Agents","agents",{"name":20,"slug":21,"type":15},"API Development","api-development",{"name":23,"slug":24,"type":15},"SDK","sdk",102,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fgithub-tools","2026-07-26T05:50:20.829331","MIT",9,[31,18,32,33,14,34,35],"agent","ai","ai-sdk","presets","tools",{"repoUrl":26,"stars":25,"forks":29,"topics":37,"description":38},[31,18,32,33,14,34,35],"GitHub tools and agents for the Vercel AI SDK, wrap GitHub's API as AI SDK tools ready to plug into any agent","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fgithub-tools\u002Ftree\u002FHEAD\u002Fapps\u002Fdocs\u002Fskills\u002Fgithub-tools-agents","---\nname: github-tools-agents\ndescription: Add GitHub API tools to AI agents using @github-tools\u002Fsdk — AI SDK, eve, Vercel Workflow, and Chat SDK. Covers tools, presets, approval control, token scoping, and durable agents.\nlicense: MIT\nmetadata:\n  author: \"HugoRCD\"\n  repository: \"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fgithub-tools\"\n  url: \"https:\u002F\u002Fgithub-tools.com\u002F.well-known\u002Fskills\"\n  version: \"1.0.0\"\n  keywords: \"ai, agent, skill, vercel, ai sdk, github, tools, octokit, durable, workflow\"\n---\n\n# GitHub tools for AI agents\n\nUse this skill when the user wants **GitHub API access from an LLM** via the [`@github-tools\u002Fsdk`](https:\u002F\u002Fwww.npmjs.com\u002Fpackage\u002F@github-tools\u002Fsdk) package: `generateText` \u002F `streamText`, `createGithubAgent`, or **durable** `createDurableGithubAgent` with the Vercel Workflow SDK.\n\nOfficial docs: **https:\u002F\u002Fgithub-tools.com** — paths such as `\u002Fgetting-started\u002Finstallation`, `\u002Fgetting-started\u002Fquick-start`, `\u002Fframeworks\u002Fai-sdk`, `\u002Fframeworks\u002Feve`, `\u002Fframeworks\u002Fvercel-workflow`, `\u002Fframeworks\u002Fchat-sdk`, `\u002Fguide\u002Fapproval-control`, `\u002Fguide\u002Ftokens-and-auth`, `\u002Fapi\u002Freference`. Copy-prompts for assistants are embedded on those pages.\n\n## When to use\n\n- **Greenfield**: \"Add GitHub tools to my AI app\" \u002F \"Wire Octokit-style ops for the model.\"\n- **Existing repo**: \"We already use the AI SDK — add repo\u002FPR\u002Fissue tools.\"\n- **Agents**: \"Use `createGithubAgent` with a preset\" \u002F custom system instructions.\n- **Durable**: \"Run the agent inside Vercel Workflow\" \u002F `\"use workflow\"` \u002F crash-safe tool steps.\n- **eve**: \"Add GitHub tools to an eve agent\" \u002F `defineDynamic` \u002F `@github-tools\u002Fsdk\u002Feve`.\n- **Safety**: \"Gate merges \u002F file writes with approval\" \u002F fine-grained PAT scopes.\n- **Narrow scope**: Presets (`code-review`, `issue-triage`, `repo-explorer`, `ci-ops`, `maintainer`) or cherry-picked tool factories.\n\n## Install (required)\n\n```bash\npnpm add @github-tools\u002Fsdk ai zod\n```\n\nSet `GITHUB_TOKEN` (fine-grained PAT recommended). The SDK reads `process.env.GITHUB_TOKEN` when `token` is omitted.\n\n## Quick integration patterns\n\n### Tools only\n\n```ts\nimport { createGithubTools } from '@github-tools\u002Fsdk'\nimport { generateText } from 'ai'\n\nawait generateText({\n  model,\n  tools: createGithubTools({ preset: 'code-review' }),\n  prompt: '…',\n})\n```\n\n### Reusable agent (`ToolLoopAgent`)\n\n```ts\nimport { createGithubAgent } from '@github-tools\u002Fsdk'\n\nconst agent = createGithubAgent({\n  model: 'anthropic\u002Fclaude-sonnet-4.6',\n  preset: 'issue-triage',\n  system: '…',\n})\nawait agent.generate({ prompt: '…' })\n```\n\n### Durable agent (Vercel Workflow)\n\nRequires optional peers: `workflow`, `@ai-sdk\u002Fworkflow`. Import from `@github-tools\u002Fsdk\u002Fworkflow`.\n\n```ts\nimport { createDurableGithubAgent } from '@github-tools\u002Fsdk\u002Fworkflow'\nimport { getWritable } from 'workflow'\n\nexport async function run(messages: ModelMessage[], token: string) {\n  'use workflow'\n  const agent = createDurableGithubAgent({ model, token, preset: 'maintainer' })\n  const writable = getWritable\u003CUIMessageChunk>()\n  await agent.stream({ messages, writable })\n}\n```\n\n**Limitation:** Durable agents require `@ai-sdk\u002Fworkflow` and `WorkflowChatTransport` on the client for resumable streams. For predicate\u002F`once` approval policies, use [eve agents](\u002Fframeworks\u002Feve).\n\n### eve agent\n\nRequires optional peers: `eve`, **`ai` v7`. Import from `@github-tools\u002Fsdk\u002Feve`.\n\n```ts\n\u002F\u002F agent\u002Ftools\u002Fgithub.ts\nimport { createGithubTools } from '@github-tools\u002Fsdk\u002Feve'\n\nexport default createGithubTools({ preset: 'code-review' })\n```\n\nSee `.\u002Freferences\u002Feve-agents.md` and `\u002Fframeworks\u002Feve`.\n\n## Presets\n\n| Preset | Purpose |\n|--------|---------|\n| `code-review` | PRs, commits, files, review comments |\n| `issue-triage` | Issues, comments, create\u002Fclose |\n| `repo-explorer` | Read-only + search + gists\u002Fworkflows reads |\n| `ci-ops` | Actions workflows, runs, trigger\u002Fcancel\u002Frerun |\n| `maintainer` | All tools |\n\nArray presets merge: `preset: ['code-review', 'issue-triage']`.\n\n## Write safety\n\n- Default: writes go through **approval** (AI SDK tool approval flow) unless `requireApproval: false` or per-tool overrides.\n- Map token scopes to tools (Actions, Contents, Issues, Pull requests, Gists, …).\n\n## Durable steps\n\nEach packaged tool uses a named module-level **`\"use step\"`** function so individual GitHub calls register as workflow steps when running under the Workflow SDK. See `.\u002Freferences\u002Fdurable-workflows.md`.\n\n## Reference Documentation\n\nEach reference file includes YAML frontmatter with `name`, `description`, and `tags` for searchability. Use the search script available in `scripts\u002Fsearch_references.py` to quickly find relevant references by tag or keyword.\n\n- [Durable Workflows](references\u002Fdurable-workflows.md): Best practices for using GitHub tools within Vercel Workflow, including step directives and streaming responses.\n- [eve Agents](references\u002Feve-agents.md): Register GitHub tools in eve via defineDynamic, approval policies, and the eve-agent example.\n- [Existing Project Integration](references\u002Fexisting-project-integration.md): How to integrate GitHub tools into an existing codebase, including environment variable management and framework-specific hooks.\n- [Tokens and Approval](references\u002Ftokens-and-approval.md): Guidance on mapping GitHub token scopes to specific tools and configuring approval flows for safe write operations.\n\n### Searching References\n\n```bash\n# List all references with metadata\npython scripts\u002Fsearch_references.py --list\n\n# Search by tag (exact match)\npython scripts\u002Fsearch_references.py --tag \u003Ctag>\n\n# Search by keyword (across name, description, tags, and content)\npython scripts\u002Fsearch_references.py --search \u003Cquery>\n```\n\n## Scripts\n\n- **`scripts\u002Fsearch_references.py`**: Search reference files by tag, keyword, or list all with metadata\n",{"data":42,"body":48},{"name":4,"description":6,"license":28,"metadata":43},{"author":44,"repository":26,"url":45,"version":46,"keywords":47},"HugoRCD","https:\u002F\u002Fgithub-tools.com\u002F.well-known\u002Fskills","1.0.0","ai, agent, skill, vercel, ai sdk, github, tools, octokit, durable, workflow",{"type":49,"children":50},"root",[51,60,129,209,216,356,362,406,435,441,448,694,707,941,947,974,1324,1363,1369,1394,1504,1522,1527,1635,1647,1653,1681,1687,1710,1716,1752,1799,1805,1938,1944,1960],{"type":52,"tag":53,"props":54,"children":56},"element","h1",{"id":55},"github-tools-for-ai-agents",[57],{"type":58,"value":59},"text","GitHub tools for AI agents",{"type":52,"tag":61,"props":62,"children":63},"p",{},[64,66,72,74,88,90,96,98,104,106,112,114,119,121,127],{"type":58,"value":65},"Use this skill when the user wants ",{"type":52,"tag":67,"props":68,"children":69},"strong",{},[70],{"type":58,"value":71},"GitHub API access from an LLM",{"type":58,"value":73}," via the ",{"type":52,"tag":75,"props":76,"children":80},"a",{"href":77,"rel":78},"https:\u002F\u002Fwww.npmjs.com\u002Fpackage\u002F@github-tools\u002Fsdk",[79],"nofollow",[81],{"type":52,"tag":82,"props":83,"children":85},"code",{"className":84},[],[86],{"type":58,"value":87},"@github-tools\u002Fsdk",{"type":58,"value":89}," package: ",{"type":52,"tag":82,"props":91,"children":93},{"className":92},[],[94],{"type":58,"value":95},"generateText",{"type":58,"value":97}," \u002F ",{"type":52,"tag":82,"props":99,"children":101},{"className":100},[],[102],{"type":58,"value":103},"streamText",{"type":58,"value":105},", ",{"type":52,"tag":82,"props":107,"children":109},{"className":108},[],[110],{"type":58,"value":111},"createGithubAgent",{"type":58,"value":113},", or ",{"type":52,"tag":67,"props":115,"children":116},{},[117],{"type":58,"value":118},"durable",{"type":58,"value":120}," ",{"type":52,"tag":82,"props":122,"children":124},{"className":123},[],[125],{"type":58,"value":126},"createDurableGithubAgent",{"type":58,"value":128}," with the Vercel Workflow SDK.",{"type":52,"tag":61,"props":130,"children":131},{},[132,134,143,145,151,152,158,159,165,166,172,173,179,180,186,187,193,194,200,201,207],{"type":58,"value":133},"Official docs: ",{"type":52,"tag":67,"props":135,"children":136},{},[137],{"type":52,"tag":75,"props":138,"children":141},{"href":139,"rel":140},"https:\u002F\u002Fgithub-tools.com",[79],[142],{"type":58,"value":139},{"type":58,"value":144}," — paths such as ",{"type":52,"tag":82,"props":146,"children":148},{"className":147},[],[149],{"type":58,"value":150},"\u002Fgetting-started\u002Finstallation",{"type":58,"value":105},{"type":52,"tag":82,"props":153,"children":155},{"className":154},[],[156],{"type":58,"value":157},"\u002Fgetting-started\u002Fquick-start",{"type":58,"value":105},{"type":52,"tag":82,"props":160,"children":162},{"className":161},[],[163],{"type":58,"value":164},"\u002Fframeworks\u002Fai-sdk",{"type":58,"value":105},{"type":52,"tag":82,"props":167,"children":169},{"className":168},[],[170],{"type":58,"value":171},"\u002Fframeworks\u002Feve",{"type":58,"value":105},{"type":52,"tag":82,"props":174,"children":176},{"className":175},[],[177],{"type":58,"value":178},"\u002Fframeworks\u002Fvercel-workflow",{"type":58,"value":105},{"type":52,"tag":82,"props":181,"children":183},{"className":182},[],[184],{"type":58,"value":185},"\u002Fframeworks\u002Fchat-sdk",{"type":58,"value":105},{"type":52,"tag":82,"props":188,"children":190},{"className":189},[],[191],{"type":58,"value":192},"\u002Fguide\u002Fapproval-control",{"type":58,"value":105},{"type":52,"tag":82,"props":195,"children":197},{"className":196},[],[198],{"type":58,"value":199},"\u002Fguide\u002Ftokens-and-auth",{"type":58,"value":105},{"type":52,"tag":82,"props":202,"children":204},{"className":203},[],[205],{"type":58,"value":206},"\u002Fapi\u002Freference",{"type":58,"value":208},". Copy-prompts for assistants are embedded on those pages.",{"type":52,"tag":210,"props":211,"children":213},"h2",{"id":212},"when-to-use",[214],{"type":58,"value":215},"When to use",{"type":52,"tag":217,"props":218,"children":219},"ul",{},[220,231,241,257,275,300,310],{"type":52,"tag":221,"props":222,"children":223},"li",{},[224,229],{"type":52,"tag":67,"props":225,"children":226},{},[227],{"type":58,"value":228},"Greenfield",{"type":58,"value":230},": \"Add GitHub tools to my AI app\" \u002F \"Wire Octokit-style ops for the model.\"",{"type":52,"tag":221,"props":232,"children":233},{},[234,239],{"type":52,"tag":67,"props":235,"children":236},{},[237],{"type":58,"value":238},"Existing repo",{"type":58,"value":240},": \"We already use the AI SDK — add repo\u002FPR\u002Fissue tools.\"",{"type":52,"tag":221,"props":242,"children":243},{},[244,248,250,255],{"type":52,"tag":67,"props":245,"children":246},{},[247],{"type":58,"value":17},{"type":58,"value":249},": \"Use ",{"type":52,"tag":82,"props":251,"children":253},{"className":252},[],[254],{"type":58,"value":111},{"type":58,"value":256}," with a preset\" \u002F custom system instructions.",{"type":52,"tag":221,"props":258,"children":259},{},[260,265,267,273],{"type":52,"tag":67,"props":261,"children":262},{},[263],{"type":58,"value":264},"Durable",{"type":58,"value":266},": \"Run the agent inside Vercel Workflow\" \u002F ",{"type":52,"tag":82,"props":268,"children":270},{"className":269},[],[271],{"type":58,"value":272},"\"use workflow\"",{"type":58,"value":274}," \u002F crash-safe tool steps.",{"type":52,"tag":221,"props":276,"children":277},{},[278,283,285,291,292,298],{"type":52,"tag":67,"props":279,"children":280},{},[281],{"type":58,"value":282},"eve",{"type":58,"value":284},": \"Add GitHub tools to an eve agent\" \u002F ",{"type":52,"tag":82,"props":286,"children":288},{"className":287},[],[289],{"type":58,"value":290},"defineDynamic",{"type":58,"value":97},{"type":52,"tag":82,"props":293,"children":295},{"className":294},[],[296],{"type":58,"value":297},"@github-tools\u002Fsdk\u002Feve",{"type":58,"value":299},".",{"type":52,"tag":221,"props":301,"children":302},{},[303,308],{"type":52,"tag":67,"props":304,"children":305},{},[306],{"type":58,"value":307},"Safety",{"type":58,"value":309},": \"Gate merges \u002F file writes with approval\" \u002F fine-grained PAT scopes.",{"type":52,"tag":221,"props":311,"children":312},{},[313,318,320,326,327,333,334,340,341,347,348,354],{"type":52,"tag":67,"props":314,"children":315},{},[316],{"type":58,"value":317},"Narrow scope",{"type":58,"value":319},": Presets (",{"type":52,"tag":82,"props":321,"children":323},{"className":322},[],[324],{"type":58,"value":325},"code-review",{"type":58,"value":105},{"type":52,"tag":82,"props":328,"children":330},{"className":329},[],[331],{"type":58,"value":332},"issue-triage",{"type":58,"value":105},{"type":52,"tag":82,"props":335,"children":337},{"className":336},[],[338],{"type":58,"value":339},"repo-explorer",{"type":58,"value":105},{"type":52,"tag":82,"props":342,"children":344},{"className":343},[],[345],{"type":58,"value":346},"ci-ops",{"type":58,"value":105},{"type":52,"tag":82,"props":349,"children":351},{"className":350},[],[352],{"type":58,"value":353},"maintainer",{"type":58,"value":355},") or cherry-picked tool factories.",{"type":52,"tag":210,"props":357,"children":359},{"id":358},"install-required",[360],{"type":58,"value":361},"Install (required)",{"type":52,"tag":363,"props":364,"children":369},"pre",{"className":365,"code":366,"language":367,"meta":368,"style":368},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","pnpm add @github-tools\u002Fsdk ai zod\n","bash","",[370],{"type":52,"tag":82,"props":371,"children":372},{"__ignoreMap":368},[373],{"type":52,"tag":374,"props":375,"children":378},"span",{"class":376,"line":377},"line",1,[379,385,391,396,401],{"type":52,"tag":374,"props":380,"children":382},{"style":381},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[383],{"type":58,"value":384},"pnpm",{"type":52,"tag":374,"props":386,"children":388},{"style":387},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[389],{"type":58,"value":390}," add",{"type":52,"tag":374,"props":392,"children":393},{"style":387},[394],{"type":58,"value":395}," @github-tools\u002Fsdk",{"type":52,"tag":374,"props":397,"children":398},{"style":387},[399],{"type":58,"value":400}," ai",{"type":52,"tag":374,"props":402,"children":403},{"style":387},[404],{"type":58,"value":405}," zod\n",{"type":52,"tag":61,"props":407,"children":408},{},[409,411,417,419,425,427,433],{"type":58,"value":410},"Set ",{"type":52,"tag":82,"props":412,"children":414},{"className":413},[],[415],{"type":58,"value":416},"GITHUB_TOKEN",{"type":58,"value":418}," (fine-grained PAT recommended). The SDK reads ",{"type":52,"tag":82,"props":420,"children":422},{"className":421},[],[423],{"type":58,"value":424},"process.env.GITHUB_TOKEN",{"type":58,"value":426}," when ",{"type":52,"tag":82,"props":428,"children":430},{"className":429},[],[431],{"type":58,"value":432},"token",{"type":58,"value":434}," is omitted.",{"type":52,"tag":210,"props":436,"children":438},{"id":437},"quick-integration-patterns",[439],{"type":58,"value":440},"Quick integration patterns",{"type":52,"tag":442,"props":443,"children":445},"h3",{"id":444},"tools-only",[446],{"type":58,"value":447},"Tools only",{"type":52,"tag":363,"props":449,"children":453},{"className":450,"code":451,"language":452,"meta":368,"style":368},"language-ts shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { createGithubTools } from '@github-tools\u002Fsdk'\nimport { generateText } from 'ai'\n\nawait generateText({\n  model,\n  tools: createGithubTools({ preset: 'code-review' }),\n  prompt: '…',\n})\n","ts",[454],{"type":52,"tag":82,"props":455,"children":456},{"__ignoreMap":368},[457,502,539,549,573,587,650,680],{"type":52,"tag":374,"props":458,"children":459},{"class":376,"line":377},[460,466,472,478,483,488,493,497],{"type":52,"tag":374,"props":461,"children":463},{"style":462},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[464],{"type":58,"value":465},"import",{"type":52,"tag":374,"props":467,"children":469},{"style":468},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[470],{"type":58,"value":471}," {",{"type":52,"tag":374,"props":473,"children":475},{"style":474},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[476],{"type":58,"value":477}," createGithubTools",{"type":52,"tag":374,"props":479,"children":480},{"style":468},[481],{"type":58,"value":482}," }",{"type":52,"tag":374,"props":484,"children":485},{"style":462},[486],{"type":58,"value":487}," from",{"type":52,"tag":374,"props":489,"children":490},{"style":468},[491],{"type":58,"value":492}," '",{"type":52,"tag":374,"props":494,"children":495},{"style":387},[496],{"type":58,"value":87},{"type":52,"tag":374,"props":498,"children":499},{"style":468},[500],{"type":58,"value":501},"'\n",{"type":52,"tag":374,"props":503,"children":505},{"class":376,"line":504},2,[506,510,514,519,523,527,531,535],{"type":52,"tag":374,"props":507,"children":508},{"style":462},[509],{"type":58,"value":465},{"type":52,"tag":374,"props":511,"children":512},{"style":468},[513],{"type":58,"value":471},{"type":52,"tag":374,"props":515,"children":516},{"style":474},[517],{"type":58,"value":518}," generateText",{"type":52,"tag":374,"props":520,"children":521},{"style":468},[522],{"type":58,"value":482},{"type":52,"tag":374,"props":524,"children":525},{"style":462},[526],{"type":58,"value":487},{"type":52,"tag":374,"props":528,"children":529},{"style":468},[530],{"type":58,"value":492},{"type":52,"tag":374,"props":532,"children":533},{"style":387},[534],{"type":58,"value":32},{"type":52,"tag":374,"props":536,"children":537},{"style":468},[538],{"type":58,"value":501},{"type":52,"tag":374,"props":540,"children":542},{"class":376,"line":541},3,[543],{"type":52,"tag":374,"props":544,"children":546},{"emptyLinePlaceholder":545},true,[547],{"type":58,"value":548},"\n",{"type":52,"tag":374,"props":550,"children":552},{"class":376,"line":551},4,[553,558,563,568],{"type":52,"tag":374,"props":554,"children":555},{"style":462},[556],{"type":58,"value":557},"await",{"type":52,"tag":374,"props":559,"children":561},{"style":560},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[562],{"type":58,"value":518},{"type":52,"tag":374,"props":564,"children":565},{"style":474},[566],{"type":58,"value":567},"(",{"type":52,"tag":374,"props":569,"children":570},{"style":468},[571],{"type":58,"value":572},"{\n",{"type":52,"tag":374,"props":574,"children":576},{"class":376,"line":575},5,[577,582],{"type":52,"tag":374,"props":578,"children":579},{"style":474},[580],{"type":58,"value":581},"  model",{"type":52,"tag":374,"props":583,"children":584},{"style":468},[585],{"type":58,"value":586},",\n",{"type":52,"tag":374,"props":588,"children":590},{"class":376,"line":589},6,[591,597,602,606,610,615,620,624,628,632,637,641,646],{"type":52,"tag":374,"props":592,"children":594},{"style":593},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[595],{"type":58,"value":596},"  tools",{"type":52,"tag":374,"props":598,"children":599},{"style":468},[600],{"type":58,"value":601},":",{"type":52,"tag":374,"props":603,"children":604},{"style":560},[605],{"type":58,"value":477},{"type":52,"tag":374,"props":607,"children":608},{"style":474},[609],{"type":58,"value":567},{"type":52,"tag":374,"props":611,"children":612},{"style":468},[613],{"type":58,"value":614},"{",{"type":52,"tag":374,"props":616,"children":617},{"style":593},[618],{"type":58,"value":619}," preset",{"type":52,"tag":374,"props":621,"children":622},{"style":468},[623],{"type":58,"value":601},{"type":52,"tag":374,"props":625,"children":626},{"style":468},[627],{"type":58,"value":492},{"type":52,"tag":374,"props":629,"children":630},{"style":387},[631],{"type":58,"value":325},{"type":52,"tag":374,"props":633,"children":634},{"style":468},[635],{"type":58,"value":636},"'",{"type":52,"tag":374,"props":638,"children":639},{"style":468},[640],{"type":58,"value":482},{"type":52,"tag":374,"props":642,"children":643},{"style":474},[644],{"type":58,"value":645},")",{"type":52,"tag":374,"props":647,"children":648},{"style":468},[649],{"type":58,"value":586},{"type":52,"tag":374,"props":651,"children":653},{"class":376,"line":652},7,[654,659,663,667,672,676],{"type":52,"tag":374,"props":655,"children":656},{"style":593},[657],{"type":58,"value":658},"  prompt",{"type":52,"tag":374,"props":660,"children":661},{"style":468},[662],{"type":58,"value":601},{"type":52,"tag":374,"props":664,"children":665},{"style":468},[666],{"type":58,"value":492},{"type":52,"tag":374,"props":668,"children":669},{"style":387},[670],{"type":58,"value":671},"…",{"type":52,"tag":374,"props":673,"children":674},{"style":468},[675],{"type":58,"value":636},{"type":52,"tag":374,"props":677,"children":678},{"style":468},[679],{"type":58,"value":586},{"type":52,"tag":374,"props":681,"children":683},{"class":376,"line":682},8,[684,689],{"type":52,"tag":374,"props":685,"children":686},{"style":468},[687],{"type":58,"value":688},"}",{"type":52,"tag":374,"props":690,"children":691},{"style":474},[692],{"type":58,"value":693},")\n",{"type":52,"tag":442,"props":695,"children":697},{"id":696},"reusable-agent-toolloopagent",[698,700,706],{"type":58,"value":699},"Reusable agent (",{"type":52,"tag":82,"props":701,"children":703},{"className":702},[],[704],{"type":58,"value":705},"ToolLoopAgent",{"type":58,"value":645},{"type":52,"tag":363,"props":708,"children":710},{"className":450,"code":709,"language":452,"meta":368,"style":368},"import { createGithubAgent } from '@github-tools\u002Fsdk'\n\nconst agent = createGithubAgent({\n  model: 'anthropic\u002Fclaude-sonnet-4.6',\n  preset: 'issue-triage',\n  system: '…',\n})\nawait agent.generate({ prompt: '…' })\n",[711],{"type":52,"tag":82,"props":712,"children":713},{"__ignoreMap":368},[714,750,757,788,816,844,872,883],{"type":52,"tag":374,"props":715,"children":716},{"class":376,"line":377},[717,721,725,730,734,738,742,746],{"type":52,"tag":374,"props":718,"children":719},{"style":462},[720],{"type":58,"value":465},{"type":52,"tag":374,"props":722,"children":723},{"style":468},[724],{"type":58,"value":471},{"type":52,"tag":374,"props":726,"children":727},{"style":474},[728],{"type":58,"value":729}," createGithubAgent",{"type":52,"tag":374,"props":731,"children":732},{"style":468},[733],{"type":58,"value":482},{"type":52,"tag":374,"props":735,"children":736},{"style":462},[737],{"type":58,"value":487},{"type":52,"tag":374,"props":739,"children":740},{"style":468},[741],{"type":58,"value":492},{"type":52,"tag":374,"props":743,"children":744},{"style":387},[745],{"type":58,"value":87},{"type":52,"tag":374,"props":747,"children":748},{"style":468},[749],{"type":58,"value":501},{"type":52,"tag":374,"props":751,"children":752},{"class":376,"line":504},[753],{"type":52,"tag":374,"props":754,"children":755},{"emptyLinePlaceholder":545},[756],{"type":58,"value":548},{"type":52,"tag":374,"props":758,"children":759},{"class":376,"line":541},[760,766,771,776,780,784],{"type":52,"tag":374,"props":761,"children":763},{"style":762},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[764],{"type":58,"value":765},"const",{"type":52,"tag":374,"props":767,"children":768},{"style":474},[769],{"type":58,"value":770}," agent ",{"type":52,"tag":374,"props":772,"children":773},{"style":468},[774],{"type":58,"value":775},"=",{"type":52,"tag":374,"props":777,"children":778},{"style":560},[779],{"type":58,"value":729},{"type":52,"tag":374,"props":781,"children":782},{"style":474},[783],{"type":58,"value":567},{"type":52,"tag":374,"props":785,"children":786},{"style":468},[787],{"type":58,"value":572},{"type":52,"tag":374,"props":789,"children":790},{"class":376,"line":551},[791,795,799,803,808,812],{"type":52,"tag":374,"props":792,"children":793},{"style":593},[794],{"type":58,"value":581},{"type":52,"tag":374,"props":796,"children":797},{"style":468},[798],{"type":58,"value":601},{"type":52,"tag":374,"props":800,"children":801},{"style":468},[802],{"type":58,"value":492},{"type":52,"tag":374,"props":804,"children":805},{"style":387},[806],{"type":58,"value":807},"anthropic\u002Fclaude-sonnet-4.6",{"type":52,"tag":374,"props":809,"children":810},{"style":468},[811],{"type":58,"value":636},{"type":52,"tag":374,"props":813,"children":814},{"style":468},[815],{"type":58,"value":586},{"type":52,"tag":374,"props":817,"children":818},{"class":376,"line":575},[819,824,828,832,836,840],{"type":52,"tag":374,"props":820,"children":821},{"style":593},[822],{"type":58,"value":823},"  preset",{"type":52,"tag":374,"props":825,"children":826},{"style":468},[827],{"type":58,"value":601},{"type":52,"tag":374,"props":829,"children":830},{"style":468},[831],{"type":58,"value":492},{"type":52,"tag":374,"props":833,"children":834},{"style":387},[835],{"type":58,"value":332},{"type":52,"tag":374,"props":837,"children":838},{"style":468},[839],{"type":58,"value":636},{"type":52,"tag":374,"props":841,"children":842},{"style":468},[843],{"type":58,"value":586},{"type":52,"tag":374,"props":845,"children":846},{"class":376,"line":589},[847,852,856,860,864,868],{"type":52,"tag":374,"props":848,"children":849},{"style":593},[850],{"type":58,"value":851},"  system",{"type":52,"tag":374,"props":853,"children":854},{"style":468},[855],{"type":58,"value":601},{"type":52,"tag":374,"props":857,"children":858},{"style":468},[859],{"type":58,"value":492},{"type":52,"tag":374,"props":861,"children":862},{"style":387},[863],{"type":58,"value":671},{"type":52,"tag":374,"props":865,"children":866},{"style":468},[867],{"type":58,"value":636},{"type":52,"tag":374,"props":869,"children":870},{"style":468},[871],{"type":58,"value":586},{"type":52,"tag":374,"props":873,"children":874},{"class":376,"line":652},[875,879],{"type":52,"tag":374,"props":876,"children":877},{"style":468},[878],{"type":58,"value":688},{"type":52,"tag":374,"props":880,"children":881},{"style":474},[882],{"type":58,"value":693},{"type":52,"tag":374,"props":884,"children":885},{"class":376,"line":682},[886,890,895,899,904,908,912,917,921,925,929,933,937],{"type":52,"tag":374,"props":887,"children":888},{"style":462},[889],{"type":58,"value":557},{"type":52,"tag":374,"props":891,"children":892},{"style":474},[893],{"type":58,"value":894}," agent",{"type":52,"tag":374,"props":896,"children":897},{"style":468},[898],{"type":58,"value":299},{"type":52,"tag":374,"props":900,"children":901},{"style":560},[902],{"type":58,"value":903},"generate",{"type":52,"tag":374,"props":905,"children":906},{"style":474},[907],{"type":58,"value":567},{"type":52,"tag":374,"props":909,"children":910},{"style":468},[911],{"type":58,"value":614},{"type":52,"tag":374,"props":913,"children":914},{"style":593},[915],{"type":58,"value":916}," prompt",{"type":52,"tag":374,"props":918,"children":919},{"style":468},[920],{"type":58,"value":601},{"type":52,"tag":374,"props":922,"children":923},{"style":468},[924],{"type":58,"value":492},{"type":52,"tag":374,"props":926,"children":927},{"style":387},[928],{"type":58,"value":671},{"type":52,"tag":374,"props":930,"children":931},{"style":468},[932],{"type":58,"value":636},{"type":52,"tag":374,"props":934,"children":935},{"style":468},[936],{"type":58,"value":482},{"type":52,"tag":374,"props":938,"children":939},{"style":474},[940],{"type":58,"value":693},{"type":52,"tag":442,"props":942,"children":944},{"id":943},"durable-agent-vercel-workflow",[945],{"type":58,"value":946},"Durable agent (Vercel Workflow)",{"type":52,"tag":61,"props":948,"children":949},{},[950,952,958,959,965,967,973],{"type":58,"value":951},"Requires optional peers: ",{"type":52,"tag":82,"props":953,"children":955},{"className":954},[],[956],{"type":58,"value":957},"workflow",{"type":58,"value":105},{"type":52,"tag":82,"props":960,"children":962},{"className":961},[],[963],{"type":58,"value":964},"@ai-sdk\u002Fworkflow",{"type":58,"value":966},". Import from ",{"type":52,"tag":82,"props":968,"children":970},{"className":969},[],[971],{"type":58,"value":972},"@github-tools\u002Fsdk\u002Fworkflow",{"type":58,"value":299},{"type":52,"tag":363,"props":975,"children":977},{"className":450,"code":976,"language":452,"meta":368,"style":368},"import { createDurableGithubAgent } from '@github-tools\u002Fsdk\u002Fworkflow'\nimport { getWritable } from 'workflow'\n\nexport async function run(messages: ModelMessage[], token: string) {\n  'use workflow'\n  const agent = createDurableGithubAgent({ model, token, preset: 'maintainer' })\n  const writable = getWritable\u003CUIMessageChunk>()\n  await agent.stream({ messages, writable })\n}\n",[978],{"type":52,"tag":82,"props":979,"children":980},{"__ignoreMap":368},[981,1017,1053,1060,1135,1152,1226,1266,1316],{"type":52,"tag":374,"props":982,"children":983},{"class":376,"line":377},[984,988,992,997,1001,1005,1009,1013],{"type":52,"tag":374,"props":985,"children":986},{"style":462},[987],{"type":58,"value":465},{"type":52,"tag":374,"props":989,"children":990},{"style":468},[991],{"type":58,"value":471},{"type":52,"tag":374,"props":993,"children":994},{"style":474},[995],{"type":58,"value":996}," createDurableGithubAgent",{"type":52,"tag":374,"props":998,"children":999},{"style":468},[1000],{"type":58,"value":482},{"type":52,"tag":374,"props":1002,"children":1003},{"style":462},[1004],{"type":58,"value":487},{"type":52,"tag":374,"props":1006,"children":1007},{"style":468},[1008],{"type":58,"value":492},{"type":52,"tag":374,"props":1010,"children":1011},{"style":387},[1012],{"type":58,"value":972},{"type":52,"tag":374,"props":1014,"children":1015},{"style":468},[1016],{"type":58,"value":501},{"type":52,"tag":374,"props":1018,"children":1019},{"class":376,"line":504},[1020,1024,1028,1033,1037,1041,1045,1049],{"type":52,"tag":374,"props":1021,"children":1022},{"style":462},[1023],{"type":58,"value":465},{"type":52,"tag":374,"props":1025,"children":1026},{"style":468},[1027],{"type":58,"value":471},{"type":52,"tag":374,"props":1029,"children":1030},{"style":474},[1031],{"type":58,"value":1032}," getWritable",{"type":52,"tag":374,"props":1034,"children":1035},{"style":468},[1036],{"type":58,"value":482},{"type":52,"tag":374,"props":1038,"children":1039},{"style":462},[1040],{"type":58,"value":487},{"type":52,"tag":374,"props":1042,"children":1043},{"style":468},[1044],{"type":58,"value":492},{"type":52,"tag":374,"props":1046,"children":1047},{"style":387},[1048],{"type":58,"value":957},{"type":52,"tag":374,"props":1050,"children":1051},{"style":468},[1052],{"type":58,"value":501},{"type":52,"tag":374,"props":1054,"children":1055},{"class":376,"line":541},[1056],{"type":52,"tag":374,"props":1057,"children":1058},{"emptyLinePlaceholder":545},[1059],{"type":58,"value":548},{"type":52,"tag":374,"props":1061,"children":1062},{"class":376,"line":551},[1063,1068,1073,1078,1083,1087,1093,1097,1102,1107,1112,1117,1121,1126,1130],{"type":52,"tag":374,"props":1064,"children":1065},{"style":462},[1066],{"type":58,"value":1067},"export",{"type":52,"tag":374,"props":1069,"children":1070},{"style":762},[1071],{"type":58,"value":1072}," async",{"type":52,"tag":374,"props":1074,"children":1075},{"style":762},[1076],{"type":58,"value":1077}," function",{"type":52,"tag":374,"props":1079,"children":1080},{"style":560},[1081],{"type":58,"value":1082}," run",{"type":52,"tag":374,"props":1084,"children":1085},{"style":468},[1086],{"type":58,"value":567},{"type":52,"tag":374,"props":1088,"children":1090},{"style":1089},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[1091],{"type":58,"value":1092},"messages",{"type":52,"tag":374,"props":1094,"children":1095},{"style":468},[1096],{"type":58,"value":601},{"type":52,"tag":374,"props":1098,"children":1099},{"style":381},[1100],{"type":58,"value":1101}," ModelMessage",{"type":52,"tag":374,"props":1103,"children":1104},{"style":474},[1105],{"type":58,"value":1106},"[]",{"type":52,"tag":374,"props":1108,"children":1109},{"style":468},[1110],{"type":58,"value":1111},",",{"type":52,"tag":374,"props":1113,"children":1114},{"style":1089},[1115],{"type":58,"value":1116}," token",{"type":52,"tag":374,"props":1118,"children":1119},{"style":468},[1120],{"type":58,"value":601},{"type":52,"tag":374,"props":1122,"children":1123},{"style":381},[1124],{"type":58,"value":1125}," string",{"type":52,"tag":374,"props":1127,"children":1128},{"style":468},[1129],{"type":58,"value":645},{"type":52,"tag":374,"props":1131,"children":1132},{"style":468},[1133],{"type":58,"value":1134}," {\n",{"type":52,"tag":374,"props":1136,"children":1137},{"class":376,"line":575},[1138,1143,1148],{"type":52,"tag":374,"props":1139,"children":1140},{"style":468},[1141],{"type":58,"value":1142},"  '",{"type":52,"tag":374,"props":1144,"children":1145},{"style":387},[1146],{"type":58,"value":1147},"use workflow",{"type":52,"tag":374,"props":1149,"children":1150},{"style":468},[1151],{"type":58,"value":501},{"type":52,"tag":374,"props":1153,"children":1154},{"class":376,"line":589},[1155,1160,1164,1169,1173,1177,1181,1186,1190,1194,1198,1202,1206,1210,1214,1218,1222],{"type":52,"tag":374,"props":1156,"children":1157},{"style":762},[1158],{"type":58,"value":1159},"  const",{"type":52,"tag":374,"props":1161,"children":1162},{"style":474},[1163],{"type":58,"value":894},{"type":52,"tag":374,"props":1165,"children":1166},{"style":468},[1167],{"type":58,"value":1168}," =",{"type":52,"tag":374,"props":1170,"children":1171},{"style":560},[1172],{"type":58,"value":996},{"type":52,"tag":374,"props":1174,"children":1175},{"style":593},[1176],{"type":58,"value":567},{"type":52,"tag":374,"props":1178,"children":1179},{"style":468},[1180],{"type":58,"value":614},{"type":52,"tag":374,"props":1182,"children":1183},{"style":474},[1184],{"type":58,"value":1185}," model",{"type":52,"tag":374,"props":1187,"children":1188},{"style":468},[1189],{"type":58,"value":1111},{"type":52,"tag":374,"props":1191,"children":1192},{"style":474},[1193],{"type":58,"value":1116},{"type":52,"tag":374,"props":1195,"children":1196},{"style":468},[1197],{"type":58,"value":1111},{"type":52,"tag":374,"props":1199,"children":1200},{"style":593},[1201],{"type":58,"value":619},{"type":52,"tag":374,"props":1203,"children":1204},{"style":468},[1205],{"type":58,"value":601},{"type":52,"tag":374,"props":1207,"children":1208},{"style":468},[1209],{"type":58,"value":492},{"type":52,"tag":374,"props":1211,"children":1212},{"style":387},[1213],{"type":58,"value":353},{"type":52,"tag":374,"props":1215,"children":1216},{"style":468},[1217],{"type":58,"value":636},{"type":52,"tag":374,"props":1219,"children":1220},{"style":468},[1221],{"type":58,"value":482},{"type":52,"tag":374,"props":1223,"children":1224},{"style":593},[1225],{"type":58,"value":693},{"type":52,"tag":374,"props":1227,"children":1228},{"class":376,"line":652},[1229,1233,1238,1242,1246,1251,1256,1261],{"type":52,"tag":374,"props":1230,"children":1231},{"style":762},[1232],{"type":58,"value":1159},{"type":52,"tag":374,"props":1234,"children":1235},{"style":474},[1236],{"type":58,"value":1237}," writable",{"type":52,"tag":374,"props":1239,"children":1240},{"style":468},[1241],{"type":58,"value":1168},{"type":52,"tag":374,"props":1243,"children":1244},{"style":560},[1245],{"type":58,"value":1032},{"type":52,"tag":374,"props":1247,"children":1248},{"style":468},[1249],{"type":58,"value":1250},"\u003C",{"type":52,"tag":374,"props":1252,"children":1253},{"style":381},[1254],{"type":58,"value":1255},"UIMessageChunk",{"type":52,"tag":374,"props":1257,"children":1258},{"style":468},[1259],{"type":58,"value":1260},">",{"type":52,"tag":374,"props":1262,"children":1263},{"style":593},[1264],{"type":58,"value":1265},"()\n",{"type":52,"tag":374,"props":1267,"children":1268},{"class":376,"line":682},[1269,1274,1278,1282,1287,1291,1295,1300,1304,1308,1312],{"type":52,"tag":374,"props":1270,"children":1271},{"style":462},[1272],{"type":58,"value":1273},"  await",{"type":52,"tag":374,"props":1275,"children":1276},{"style":474},[1277],{"type":58,"value":894},{"type":52,"tag":374,"props":1279,"children":1280},{"style":468},[1281],{"type":58,"value":299},{"type":52,"tag":374,"props":1283,"children":1284},{"style":560},[1285],{"type":58,"value":1286},"stream",{"type":52,"tag":374,"props":1288,"children":1289},{"style":593},[1290],{"type":58,"value":567},{"type":52,"tag":374,"props":1292,"children":1293},{"style":468},[1294],{"type":58,"value":614},{"type":52,"tag":374,"props":1296,"children":1297},{"style":474},[1298],{"type":58,"value":1299}," messages",{"type":52,"tag":374,"props":1301,"children":1302},{"style":468},[1303],{"type":58,"value":1111},{"type":52,"tag":374,"props":1305,"children":1306},{"style":474},[1307],{"type":58,"value":1237},{"type":52,"tag":374,"props":1309,"children":1310},{"style":468},[1311],{"type":58,"value":482},{"type":52,"tag":374,"props":1313,"children":1314},{"style":593},[1315],{"type":58,"value":693},{"type":52,"tag":374,"props":1317,"children":1318},{"class":376,"line":29},[1319],{"type":52,"tag":374,"props":1320,"children":1321},{"style":468},[1322],{"type":58,"value":1323},"}\n",{"type":52,"tag":61,"props":1325,"children":1326},{},[1327,1332,1334,1339,1341,1347,1349,1355,1357,1362],{"type":52,"tag":67,"props":1328,"children":1329},{},[1330],{"type":58,"value":1331},"Limitation:",{"type":58,"value":1333}," Durable agents require ",{"type":52,"tag":82,"props":1335,"children":1337},{"className":1336},[],[1338],{"type":58,"value":964},{"type":58,"value":1340}," and ",{"type":52,"tag":82,"props":1342,"children":1344},{"className":1343},[],[1345],{"type":58,"value":1346},"WorkflowChatTransport",{"type":58,"value":1348}," on the client for resumable streams. For predicate\u002F",{"type":52,"tag":82,"props":1350,"children":1352},{"className":1351},[],[1353],{"type":58,"value":1354},"once",{"type":58,"value":1356}," approval policies, use ",{"type":52,"tag":75,"props":1358,"children":1359},{"href":171},[1360],{"type":58,"value":1361},"eve agents",{"type":58,"value":299},{"type":52,"tag":442,"props":1364,"children":1366},{"id":1365},"eve-agent",[1367],{"type":58,"value":1368},"eve agent",{"type":52,"tag":61,"props":1370,"children":1371},{},[1372,1373,1378,1380,1385,1387,1392],{"type":58,"value":951},{"type":52,"tag":82,"props":1374,"children":1376},{"className":1375},[],[1377],{"type":58,"value":282},{"type":58,"value":1379},", **",{"type":52,"tag":82,"props":1381,"children":1383},{"className":1382},[],[1384],{"type":58,"value":32},{"type":58,"value":1386}," v7",{"type":52,"tag":82,"props":1388,"children":1390},{"className":1389},[],[1391],{"type":58,"value":966},{"type":58,"value":1393},"@github-tools\u002Fsdk\u002Feve`.",{"type":52,"tag":363,"props":1395,"children":1397},{"className":450,"code":1396,"language":452,"meta":368,"style":368},"\u002F\u002F agent\u002Ftools\u002Fgithub.ts\nimport { createGithubTools } from '@github-tools\u002Fsdk\u002Feve'\n\nexport default createGithubTools({ preset: 'code-review' })\n",[1398],{"type":52,"tag":82,"props":1399,"children":1400},{"__ignoreMap":368},[1401,1410,1445,1452],{"type":52,"tag":374,"props":1402,"children":1403},{"class":376,"line":377},[1404],{"type":52,"tag":374,"props":1405,"children":1407},{"style":1406},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1408],{"type":58,"value":1409},"\u002F\u002F agent\u002Ftools\u002Fgithub.ts\n",{"type":52,"tag":374,"props":1411,"children":1412},{"class":376,"line":504},[1413,1417,1421,1425,1429,1433,1437,1441],{"type":52,"tag":374,"props":1414,"children":1415},{"style":462},[1416],{"type":58,"value":465},{"type":52,"tag":374,"props":1418,"children":1419},{"style":468},[1420],{"type":58,"value":471},{"type":52,"tag":374,"props":1422,"children":1423},{"style":474},[1424],{"type":58,"value":477},{"type":52,"tag":374,"props":1426,"children":1427},{"style":468},[1428],{"type":58,"value":482},{"type":52,"tag":374,"props":1430,"children":1431},{"style":462},[1432],{"type":58,"value":487},{"type":52,"tag":374,"props":1434,"children":1435},{"style":468},[1436],{"type":58,"value":492},{"type":52,"tag":374,"props":1438,"children":1439},{"style":387},[1440],{"type":58,"value":297},{"type":52,"tag":374,"props":1442,"children":1443},{"style":468},[1444],{"type":58,"value":501},{"type":52,"tag":374,"props":1446,"children":1447},{"class":376,"line":541},[1448],{"type":52,"tag":374,"props":1449,"children":1450},{"emptyLinePlaceholder":545},[1451],{"type":58,"value":548},{"type":52,"tag":374,"props":1453,"children":1454},{"class":376,"line":551},[1455,1459,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500],{"type":52,"tag":374,"props":1456,"children":1457},{"style":462},[1458],{"type":58,"value":1067},{"type":52,"tag":374,"props":1460,"children":1461},{"style":462},[1462],{"type":58,"value":1463}," default",{"type":52,"tag":374,"props":1465,"children":1466},{"style":560},[1467],{"type":58,"value":477},{"type":52,"tag":374,"props":1469,"children":1470},{"style":474},[1471],{"type":58,"value":567},{"type":52,"tag":374,"props":1473,"children":1474},{"style":468},[1475],{"type":58,"value":614},{"type":52,"tag":374,"props":1477,"children":1478},{"style":593},[1479],{"type":58,"value":619},{"type":52,"tag":374,"props":1481,"children":1482},{"style":468},[1483],{"type":58,"value":601},{"type":52,"tag":374,"props":1485,"children":1486},{"style":468},[1487],{"type":58,"value":492},{"type":52,"tag":374,"props":1489,"children":1490},{"style":387},[1491],{"type":58,"value":325},{"type":52,"tag":374,"props":1493,"children":1494},{"style":468},[1495],{"type":58,"value":636},{"type":52,"tag":374,"props":1497,"children":1498},{"style":468},[1499],{"type":58,"value":482},{"type":52,"tag":374,"props":1501,"children":1502},{"style":474},[1503],{"type":58,"value":693},{"type":52,"tag":61,"props":1505,"children":1506},{},[1507,1509,1515,1516,1521],{"type":58,"value":1508},"See ",{"type":52,"tag":82,"props":1510,"children":1512},{"className":1511},[],[1513],{"type":58,"value":1514},".\u002Freferences\u002Feve-agents.md",{"type":58,"value":1340},{"type":52,"tag":82,"props":1517,"children":1519},{"className":1518},[],[1520],{"type":58,"value":171},{"type":58,"value":299},{"type":52,"tag":210,"props":1523,"children":1524},{"id":34},[1525],{"type":58,"value":1526},"Presets",{"type":52,"tag":1528,"props":1529,"children":1530},"table",{},[1531,1550],{"type":52,"tag":1532,"props":1533,"children":1534},"thead",{},[1535],{"type":52,"tag":1536,"props":1537,"children":1538},"tr",{},[1539,1545],{"type":52,"tag":1540,"props":1541,"children":1542},"th",{},[1543],{"type":58,"value":1544},"Preset",{"type":52,"tag":1540,"props":1546,"children":1547},{},[1548],{"type":58,"value":1549},"Purpose",{"type":52,"tag":1551,"props":1552,"children":1553},"tbody",{},[1554,1571,1587,1603,1619],{"type":52,"tag":1536,"props":1555,"children":1556},{},[1557,1566],{"type":52,"tag":1558,"props":1559,"children":1560},"td",{},[1561],{"type":52,"tag":82,"props":1562,"children":1564},{"className":1563},[],[1565],{"type":58,"value":325},{"type":52,"tag":1558,"props":1567,"children":1568},{},[1569],{"type":58,"value":1570},"PRs, commits, files, review comments",{"type":52,"tag":1536,"props":1572,"children":1573},{},[1574,1582],{"type":52,"tag":1558,"props":1575,"children":1576},{},[1577],{"type":52,"tag":82,"props":1578,"children":1580},{"className":1579},[],[1581],{"type":58,"value":332},{"type":52,"tag":1558,"props":1583,"children":1584},{},[1585],{"type":58,"value":1586},"Issues, comments, create\u002Fclose",{"type":52,"tag":1536,"props":1588,"children":1589},{},[1590,1598],{"type":52,"tag":1558,"props":1591,"children":1592},{},[1593],{"type":52,"tag":82,"props":1594,"children":1596},{"className":1595},[],[1597],{"type":58,"value":339},{"type":52,"tag":1558,"props":1599,"children":1600},{},[1601],{"type":58,"value":1602},"Read-only + search + gists\u002Fworkflows reads",{"type":52,"tag":1536,"props":1604,"children":1605},{},[1606,1614],{"type":52,"tag":1558,"props":1607,"children":1608},{},[1609],{"type":52,"tag":82,"props":1610,"children":1612},{"className":1611},[],[1613],{"type":58,"value":346},{"type":52,"tag":1558,"props":1615,"children":1616},{},[1617],{"type":58,"value":1618},"Actions workflows, runs, trigger\u002Fcancel\u002Frerun",{"type":52,"tag":1536,"props":1620,"children":1621},{},[1622,1630],{"type":52,"tag":1558,"props":1623,"children":1624},{},[1625],{"type":52,"tag":82,"props":1626,"children":1628},{"className":1627},[],[1629],{"type":58,"value":353},{"type":52,"tag":1558,"props":1631,"children":1632},{},[1633],{"type":58,"value":1634},"All tools",{"type":52,"tag":61,"props":1636,"children":1637},{},[1638,1640,1646],{"type":58,"value":1639},"Array presets merge: ",{"type":52,"tag":82,"props":1641,"children":1643},{"className":1642},[],[1644],{"type":58,"value":1645},"preset: ['code-review', 'issue-triage']",{"type":58,"value":299},{"type":52,"tag":210,"props":1648,"children":1650},{"id":1649},"write-safety",[1651],{"type":58,"value":1652},"Write safety",{"type":52,"tag":217,"props":1654,"children":1655},{},[1656,1676],{"type":52,"tag":221,"props":1657,"children":1658},{},[1659,1661,1666,1668,1674],{"type":58,"value":1660},"Default: writes go through ",{"type":52,"tag":67,"props":1662,"children":1663},{},[1664],{"type":58,"value":1665},"approval",{"type":58,"value":1667}," (AI SDK tool approval flow) unless ",{"type":52,"tag":82,"props":1669,"children":1671},{"className":1670},[],[1672],{"type":58,"value":1673},"requireApproval: false",{"type":58,"value":1675}," or per-tool overrides.",{"type":52,"tag":221,"props":1677,"children":1678},{},[1679],{"type":58,"value":1680},"Map token scopes to tools (Actions, Contents, Issues, Pull requests, Gists, …).",{"type":52,"tag":210,"props":1682,"children":1684},{"id":1683},"durable-steps",[1685],{"type":58,"value":1686},"Durable steps",{"type":52,"tag":61,"props":1688,"children":1689},{},[1690,1692,1701,1703,1709],{"type":58,"value":1691},"Each packaged tool uses a named module-level ",{"type":52,"tag":67,"props":1693,"children":1694},{},[1695],{"type":52,"tag":82,"props":1696,"children":1698},{"className":1697},[],[1699],{"type":58,"value":1700},"\"use step\"",{"type":58,"value":1702}," function so individual GitHub calls register as workflow steps when running under the Workflow SDK. See ",{"type":52,"tag":82,"props":1704,"children":1706},{"className":1705},[],[1707],{"type":58,"value":1708},".\u002Freferences\u002Fdurable-workflows.md",{"type":58,"value":299},{"type":52,"tag":210,"props":1711,"children":1713},{"id":1712},"reference-documentation",[1714],{"type":58,"value":1715},"Reference Documentation",{"type":52,"tag":61,"props":1717,"children":1718},{},[1719,1721,1727,1728,1734,1736,1742,1744,1750],{"type":58,"value":1720},"Each reference file includes YAML frontmatter with ",{"type":52,"tag":82,"props":1722,"children":1724},{"className":1723},[],[1725],{"type":58,"value":1726},"name",{"type":58,"value":105},{"type":52,"tag":82,"props":1729,"children":1731},{"className":1730},[],[1732],{"type":58,"value":1733},"description",{"type":58,"value":1735},", and ",{"type":52,"tag":82,"props":1737,"children":1739},{"className":1738},[],[1740],{"type":58,"value":1741},"tags",{"type":58,"value":1743}," for searchability. Use the search script available in ",{"type":52,"tag":82,"props":1745,"children":1747},{"className":1746},[],[1748],{"type":58,"value":1749},"scripts\u002Fsearch_references.py",{"type":58,"value":1751}," to quickly find relevant references by tag or keyword.",{"type":52,"tag":217,"props":1753,"children":1754},{},[1755,1766,1777,1788],{"type":52,"tag":221,"props":1756,"children":1757},{},[1758,1764],{"type":52,"tag":75,"props":1759,"children":1761},{"href":1760},"references\u002Fdurable-workflows.md",[1762],{"type":58,"value":1763},"Durable Workflows",{"type":58,"value":1765},": Best practices for using GitHub tools within Vercel Workflow, including step directives and streaming responses.",{"type":52,"tag":221,"props":1767,"children":1768},{},[1769,1775],{"type":52,"tag":75,"props":1770,"children":1772},{"href":1771},"references\u002Feve-agents.md",[1773],{"type":58,"value":1774},"eve Agents",{"type":58,"value":1776},": Register GitHub tools in eve via defineDynamic, approval policies, and the eve-agent example.",{"type":52,"tag":221,"props":1778,"children":1779},{},[1780,1786],{"type":52,"tag":75,"props":1781,"children":1783},{"href":1782},"references\u002Fexisting-project-integration.md",[1784],{"type":58,"value":1785},"Existing Project Integration",{"type":58,"value":1787},": How to integrate GitHub tools into an existing codebase, including environment variable management and framework-specific hooks.",{"type":52,"tag":221,"props":1789,"children":1790},{},[1791,1797],{"type":52,"tag":75,"props":1792,"children":1794},{"href":1793},"references\u002Ftokens-and-approval.md",[1795],{"type":58,"value":1796},"Tokens and Approval",{"type":58,"value":1798},": Guidance on mapping GitHub token scopes to specific tools and configuring approval flows for safe write operations.",{"type":52,"tag":442,"props":1800,"children":1802},{"id":1801},"searching-references",[1803],{"type":58,"value":1804},"Searching References",{"type":52,"tag":363,"props":1806,"children":1808},{"className":365,"code":1807,"language":367,"meta":368,"style":368},"# List all references with metadata\npython scripts\u002Fsearch_references.py --list\n\n# Search by tag (exact match)\npython scripts\u002Fsearch_references.py --tag \u003Ctag>\n\n# Search by keyword (across name, description, tags, and content)\npython scripts\u002Fsearch_references.py --search \u003Cquery>\n",[1809],{"type":52,"tag":82,"props":1810,"children":1811},{"__ignoreMap":368},[1812,1820,1838,1845,1853,1889,1896,1904],{"type":52,"tag":374,"props":1813,"children":1814},{"class":376,"line":377},[1815],{"type":52,"tag":374,"props":1816,"children":1817},{"style":1406},[1818],{"type":58,"value":1819},"# List all references with metadata\n",{"type":52,"tag":374,"props":1821,"children":1822},{"class":376,"line":504},[1823,1828,1833],{"type":52,"tag":374,"props":1824,"children":1825},{"style":381},[1826],{"type":58,"value":1827},"python",{"type":52,"tag":374,"props":1829,"children":1830},{"style":387},[1831],{"type":58,"value":1832}," scripts\u002Fsearch_references.py",{"type":52,"tag":374,"props":1834,"children":1835},{"style":387},[1836],{"type":58,"value":1837}," --list\n",{"type":52,"tag":374,"props":1839,"children":1840},{"class":376,"line":541},[1841],{"type":52,"tag":374,"props":1842,"children":1843},{"emptyLinePlaceholder":545},[1844],{"type":58,"value":548},{"type":52,"tag":374,"props":1846,"children":1847},{"class":376,"line":551},[1848],{"type":52,"tag":374,"props":1849,"children":1850},{"style":1406},[1851],{"type":58,"value":1852},"# Search by tag (exact match)\n",{"type":52,"tag":374,"props":1854,"children":1855},{"class":376,"line":575},[1856,1860,1864,1869,1874,1879,1884],{"type":52,"tag":374,"props":1857,"children":1858},{"style":381},[1859],{"type":58,"value":1827},{"type":52,"tag":374,"props":1861,"children":1862},{"style":387},[1863],{"type":58,"value":1832},{"type":52,"tag":374,"props":1865,"children":1866},{"style":387},[1867],{"type":58,"value":1868}," --tag",{"type":52,"tag":374,"props":1870,"children":1871},{"style":468},[1872],{"type":58,"value":1873}," \u003C",{"type":52,"tag":374,"props":1875,"children":1876},{"style":387},[1877],{"type":58,"value":1878},"ta",{"type":52,"tag":374,"props":1880,"children":1881},{"style":474},[1882],{"type":58,"value":1883},"g",{"type":52,"tag":374,"props":1885,"children":1886},{"style":468},[1887],{"type":58,"value":1888},">\n",{"type":52,"tag":374,"props":1890,"children":1891},{"class":376,"line":589},[1892],{"type":52,"tag":374,"props":1893,"children":1894},{"emptyLinePlaceholder":545},[1895],{"type":58,"value":548},{"type":52,"tag":374,"props":1897,"children":1898},{"class":376,"line":652},[1899],{"type":52,"tag":374,"props":1900,"children":1901},{"style":1406},[1902],{"type":58,"value":1903},"# Search by keyword (across name, description, tags, and content)\n",{"type":52,"tag":374,"props":1905,"children":1906},{"class":376,"line":682},[1907,1911,1915,1920,1924,1929,1934],{"type":52,"tag":374,"props":1908,"children":1909},{"style":381},[1910],{"type":58,"value":1827},{"type":52,"tag":374,"props":1912,"children":1913},{"style":387},[1914],{"type":58,"value":1832},{"type":52,"tag":374,"props":1916,"children":1917},{"style":387},[1918],{"type":58,"value":1919}," --search",{"type":52,"tag":374,"props":1921,"children":1922},{"style":468},[1923],{"type":58,"value":1873},{"type":52,"tag":374,"props":1925,"children":1926},{"style":387},[1927],{"type":58,"value":1928},"quer",{"type":52,"tag":374,"props":1930,"children":1931},{"style":474},[1932],{"type":58,"value":1933},"y",{"type":52,"tag":374,"props":1935,"children":1936},{"style":468},[1937],{"type":58,"value":1888},{"type":52,"tag":210,"props":1939,"children":1941},{"id":1940},"scripts",[1942],{"type":58,"value":1943},"Scripts",{"type":52,"tag":217,"props":1945,"children":1946},{},[1947],{"type":52,"tag":221,"props":1948,"children":1949},{},[1950,1958],{"type":52,"tag":67,"props":1951,"children":1952},{},[1953],{"type":52,"tag":82,"props":1954,"children":1956},{"className":1955},[],[1957],{"type":58,"value":1749},{"type":58,"value":1959},": Search reference files by tag, keyword, or list all with metadata",{"type":52,"tag":1961,"props":1962,"children":1963},"style",{},[1964],{"type":58,"value":1965},"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":1967,"total":2135},[1968,1984,1996,2008,2021,2038,2050,2063,2076,2089,2101,2120],{"slug":1969,"name":1969,"fn":1970,"description":1971,"org":1972,"tags":1973,"stars":1981,"repoUrl":1982,"updatedAt":1983},"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},[1974,1975,1978],{"name":17,"slug":18,"type":15},{"name":1976,"slug":1977,"type":15},"Automation","automation",{"name":1979,"slug":1980,"type":15},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":1985,"name":1985,"fn":1986,"description":1987,"org":1988,"tags":1989,"stars":1981,"repoUrl":1982,"updatedAt":1995},"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},[1990,1991,1994],{"name":1976,"slug":1977,"type":15},{"name":1992,"slug":1993,"type":15},"AWS","aws",{"name":1979,"slug":1980,"type":15},"2026-07-17T06:08:33.665276",{"slug":1997,"name":1997,"fn":1998,"description":1999,"org":2000,"tags":2001,"stars":1981,"repoUrl":1982,"updatedAt":2007},"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},[2002,2003,2004],{"name":17,"slug":18,"type":15},{"name":1979,"slug":1980,"type":15},{"name":2005,"slug":2006,"type":15},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":2009,"name":2009,"fn":2010,"description":2011,"org":2012,"tags":2013,"stars":1981,"repoUrl":1982,"updatedAt":2020},"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},[2014,2015,2016,2017],{"name":20,"slug":21,"type":15},{"name":1976,"slug":1977,"type":15},{"name":1979,"slug":1980,"type":15},{"name":2018,"slug":2019,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":2022,"name":2022,"fn":2023,"description":2024,"org":2025,"tags":2026,"stars":1981,"repoUrl":1982,"updatedAt":2037},"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},[2027,2028,2031,2034],{"name":1979,"slug":1980,"type":15},{"name":2029,"slug":2030,"type":15},"Debugging","debugging",{"name":2032,"slug":2033,"type":15},"QA","qa",{"name":2035,"slug":2036,"type":15},"Testing","testing","2026-07-17T06:07:41.421482",{"slug":2039,"name":2039,"fn":2040,"description":2041,"org":2042,"tags":2043,"stars":1981,"repoUrl":1982,"updatedAt":2049},"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},[2044,2045,2046],{"name":17,"slug":18,"type":15},{"name":1979,"slug":1980,"type":15},{"name":2047,"slug":2048,"type":15},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":2051,"name":2051,"fn":2052,"description":2053,"org":2054,"tags":2055,"stars":1981,"repoUrl":1982,"updatedAt":2062},"slack","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},[2056,2057,2060],{"name":1979,"slug":1980,"type":15},{"name":2058,"slug":2059,"type":15},"Messaging","messaging",{"name":2061,"slug":2051,"type":15},"Slack","2026-07-17T06:08:27.679015",{"slug":2064,"name":2064,"fn":2065,"description":2066,"org":2067,"tags":2068,"stars":1981,"repoUrl":1982,"updatedAt":2075},"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},[2069,2070,2071,2072],{"name":1976,"slug":1977,"type":15},{"name":1979,"slug":1980,"type":15},{"name":2035,"slug":2036,"type":15},{"name":2073,"slug":2074,"type":15},"Vercel","vercel","2026-07-17T06:08:28.349899",{"slug":2077,"name":2077,"fn":2078,"description":2079,"org":2080,"tags":2081,"stars":2086,"repoUrl":2087,"updatedAt":2088},"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},[2082,2085],{"name":2083,"slug":2084,"type":15},"Deployment","deployment",{"name":2073,"slug":2074,"type":15},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":2090,"name":2090,"fn":2091,"description":2092,"org":2093,"tags":2094,"stars":2086,"repoUrl":2087,"updatedAt":2100},"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},[2095,2098,2099],{"name":2096,"slug":2097,"type":15},"CLI","cli",{"name":2083,"slug":2084,"type":15},{"name":2073,"slug":2074,"type":15},"2026-07-17T06:08:41.84179",{"slug":2102,"name":2102,"fn":2103,"description":2104,"org":2105,"tags":2106,"stars":2086,"repoUrl":2087,"updatedAt":2119},"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},[2107,2110,2113,2116],{"name":2108,"slug":2109,"type":15},"Best Practices","best-practices",{"name":2111,"slug":2112,"type":15},"Frontend","frontend",{"name":2114,"slug":2115,"type":15},"React","react",{"name":2117,"slug":2118,"type":15},"UI Components","ui-components","2026-07-17T06:05:40.576913",{"slug":2121,"name":2121,"fn":2122,"description":2123,"org":2124,"tags":2125,"stars":2086,"repoUrl":2087,"updatedAt":2134},"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},[2126,2129,2130,2133],{"name":2127,"slug":2128,"type":15},"Cost Optimization","cost-optimization",{"name":2083,"slug":2084,"type":15},{"name":2131,"slug":2132,"type":15},"Performance","performance",{"name":2073,"slug":2074,"type":15},"2026-07-17T06:04:08.327515",100,{"items":2137,"total":377},[2138],{"slug":4,"name":4,"fn":5,"description":6,"org":2139,"tags":2140,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2141,2142,2143,2144],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15}]