[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-autoship":3,"mdc--n95foy-key":35,"related-org-vercel-labs-autoship":1588,"related-repo-vercel-labs-autoship":1756},{"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},"autoship","automate package releases with AI descriptions","CLI tool for automated changeset-based releases with AI-generated descriptions. Use when the user needs to release a package, create changesets, bump versions, or automate npm publishing workflows. Triggers include requests to \"release a package\", \"create a changeset\", \"publish to npm\", \"bump the version\", \"automate releases\", or any task involving version management and package publishing for repositories using the changesets workflow.",{"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,21],{"name":13,"slug":14,"type":15},"Automation","automation","tag",{"name":17,"slug":18,"type":15},"CLI","cli",{"name":20,"slug":20,"type":15},"npm",{"name":22,"slug":23,"type":15},"Deployment","deployment",156,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fautoship","2026-07-17T06:08:56.514139",null,9,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":32},[],"CLI tool to automate changeset-based releases","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fautoship\u002Ftree\u002FHEAD\u002Fskills\u002Fautoship","---\nname: autoship\ndescription: CLI tool for automated changeset-based releases with AI-generated descriptions. Use when the user needs to release a package, create changesets, bump versions, or automate npm publishing workflows. Triggers include requests to \"release a package\", \"create a changeset\", \"publish to npm\", \"bump the version\", \"automate releases\", or any task involving version management and package publishing for repositories using the changesets workflow.\nallowed-tools: Bash(autoship:*), Bash(npx autoship:*)\n---\n\n# Automated Releases with autoship\n\n## Core Workflow\n\nEvery release follows this pattern:\n\n1. **Configure**: `autoship add \u003Cname>` (one-time setup)\n2. **Release**: `autoship \u003Cname>` (interactive) or `autoship \u003Cname> -t patch -y` (automated)\n\nThe tool handles the complete release cycle:\n- Clone repository\n- Analyze changes and suggest release type (patch\u002Fminor\u002Fmajor)\n- Generate AI-powered changeset description\n- Create and merge changeset PR\n- Wait for and merge Version Packages PR\n- Trigger npm publish\n\n## Requirements\n\nBefore using autoship, ensure:\n\n```bash\n# GitHub CLI must be authenticated\ngh auth login\n\n# API key for AI features\nexport AI_GATEWAY_API_KEY=\"your-key\"\n```\n\n## Essential Commands\n\n```bash\n# One-time setup: add a repository\nautoship add myproject\n# Prompts for: owner, repo name, base branch\n\n# List configured repositories\nautoship list\n\n# Interactive release (prompts for type and message)\nautoship myproject\n\n# Automated release (no prompts)\nautoship myproject -t patch -y\nautoship myproject -t minor -y\nautoship myproject -t major -y\n\n# Release with custom message (skips AI generation)\nautoship myproject -t patch -m \"Fixed login bug\" -y\n```\n\n## Command Options\n\n```bash\nautoship [repo]                    # Interactive repo selection if omitted\n  -t, --type \u003Ctype>                # Release type: patch, minor, major\n  -m, --message \u003Cmessage>          # Custom changeset description\n  -y, --yes                        # Skip all confirmations\n  -h, --help                       # Show help\n```\n\n## Common Patterns\n\n### Fully Automated Patch Release\n\n```bash\nautoship myproject -t patch -y\n```\n\n### AI-Assisted Interactive Release\n\n```bash\nautoship myproject\n# 1. AI analyzes commits since last release\n# 2. AI suggests release type (patch\u002Fminor\u002Fmajor)\n# 3. You confirm or change the type\n# 4. AI generates changeset description\n# 5. You review and approve\n# 6. Tool handles PR creation and merging\n```\n\n### Custom Message Release\n\n```bash\nautoship myproject -t minor -m \"Added new authentication providers\" -y\n```\n\n### CI\u002FCD Integration\n\n```bash\n# In GitHub Actions or CI pipeline\nexport AI_GATEWAY_API_KEY=\"${{ secrets.AI_GATEWAY_API_KEY }}\"\nnpx autoship myproject -t patch -y\n```\n\n## What autoship Does (10 Steps)\n\n1. **Clone** - Clones the repository from the base branch\n2. **Analyze** - Finds latest version tag, analyzes commits and diff\n3. **Suggest** - AI suggests release type based on changes\n4. **Generate** - AI generates changeset description\n5. **Branch** - Creates release branch with changeset file\n6. **PR** - Creates pull request for the changeset\n7. **Wait** - Waits for CI checks to pass\n8. **Merge** - Merges the changeset PR\n9. **Version PR** - Waits for changesets action to create Version Packages PR\n10. **Publish** - Merges Version Packages PR to trigger npm publish\n\n## Output Format\n\nautoship provides clear step-by-step output:\n\n```\n[1\u002F10] Cloning repository from main...\n  > Repository cloned\n  > Package: my-package @ 1.2.3\n\n[2\u002F10] Creating release branch...\n  > Branch created: release\u002Fpatch-1706123456789\n\n[3\u002F10] Generating changeset...\n  > Changeset created: fluffy-pants-dance.md\n\n...\n\nRelease Complete!\nThe patch release has been published.\n```\n\n## Configuration\n\nConfig is stored at `~\u002F.autoship\u002Fconfig.json`:\n\n```json\n{\n  \"repos\": {\n    \"myproject\": {\n      \"owner\": \"vercel-labs\",\n      \"repo\": \"myproject\",\n      \"baseBranch\": \"main\",\n      \"cloneUrl\": \"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fmyproject.git\"\n    }\n  }\n}\n```\n\n## Deep-Dive Documentation\n\n| Reference | When to Use |\n|-----------|-------------|\n| [references\u002Fcommands.md](references\u002Fcommands.md) | Full command reference with all options |\n| [references\u002Fconfiguration.md](references\u002Fconfiguration.md) | Config file format and repository setup |\n| [references\u002Fci-integration.md](references\u002Fci-integration.md) | GitHub Actions and CI\u002FCD setup |\n\n## Ready-to-Use Templates\n\n| Template | Description |\n|----------|-------------|\n| [templates\u002Fautomated-release.sh](templates\u002Fautomated-release.sh) | Fully automated release script |\n| [templates\u002Fsetup-repo.sh](templates\u002Fsetup-repo.sh) | Non-interactive repository setup |\n\n```bash\n.\u002Ftemplates\u002Fautomated-release.sh myproject patch\n.\u002Ftemplates\u002Fsetup-repo.sh myproject vercel-labs myproject main\n```\n\n## Troubleshooting\n\n### \"No repositories configured\"\n\nRun `autoship add \u003Cname>` to configure a repository first.\n\n### \"Repository not found\"\n\nCheck `autoship list` for available repos. The name is case-sensitive.\n\n### CI checks failing\n\nThe tool will show which checks failed. Fix the issues in the target repository, then retry.\n\n### AI generation failed\n\nIf AI fails, autoship falls back to manual input. Ensure `AI_GATEWAY_API_KEY` is set.\n",{"data":36,"body":38},{"name":4,"description":6,"allowed-tools":37},"Bash(autoship:*), Bash(npx autoship:*)",{"type":39,"children":40},"root",[41,50,57,63,113,118,152,158,163,263,269,520,526,659,665,672,702,708,774,780,827,833,931,937,1040,1046,1051,1061,1067,1080,1317,1323,1400,1406,1460,1510,1516,1522,1534,1540,1553,1559,1564,1570,1582],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"automated-releases-with-autoship",[47],{"type":48,"value":49},"text","Automated Releases with autoship",{"type":42,"tag":51,"props":52,"children":54},"h2",{"id":53},"core-workflow",[55],{"type":48,"value":56},"Core Workflow",{"type":42,"tag":58,"props":59,"children":60},"p",{},[61],{"type":48,"value":62},"Every release follows this pattern:",{"type":42,"tag":64,"props":65,"children":66},"ol",{},[67,88],{"type":42,"tag":68,"props":69,"children":70},"li",{},[71,77,79,86],{"type":42,"tag":72,"props":73,"children":74},"strong",{},[75],{"type":48,"value":76},"Configure",{"type":48,"value":78},": ",{"type":42,"tag":80,"props":81,"children":83},"code",{"className":82},[],[84],{"type":48,"value":85},"autoship add \u003Cname>",{"type":48,"value":87}," (one-time setup)",{"type":42,"tag":68,"props":89,"children":90},{},[91,96,97,103,105,111],{"type":42,"tag":72,"props":92,"children":93},{},[94],{"type":48,"value":95},"Release",{"type":48,"value":78},{"type":42,"tag":80,"props":98,"children":100},{"className":99},[],[101],{"type":48,"value":102},"autoship \u003Cname>",{"type":48,"value":104}," (interactive) or ",{"type":42,"tag":80,"props":106,"children":108},{"className":107},[],[109],{"type":48,"value":110},"autoship \u003Cname> -t patch -y",{"type":48,"value":112}," (automated)",{"type":42,"tag":58,"props":114,"children":115},{},[116],{"type":48,"value":117},"The tool handles the complete release cycle:",{"type":42,"tag":119,"props":120,"children":121},"ul",{},[122,127,132,137,142,147],{"type":42,"tag":68,"props":123,"children":124},{},[125],{"type":48,"value":126},"Clone repository",{"type":42,"tag":68,"props":128,"children":129},{},[130],{"type":48,"value":131},"Analyze changes and suggest release type (patch\u002Fminor\u002Fmajor)",{"type":42,"tag":68,"props":133,"children":134},{},[135],{"type":48,"value":136},"Generate AI-powered changeset description",{"type":42,"tag":68,"props":138,"children":139},{},[140],{"type":48,"value":141},"Create and merge changeset PR",{"type":42,"tag":68,"props":143,"children":144},{},[145],{"type":48,"value":146},"Wait for and merge Version Packages PR",{"type":42,"tag":68,"props":148,"children":149},{},[150],{"type":48,"value":151},"Trigger npm publish",{"type":42,"tag":51,"props":153,"children":155},{"id":154},"requirements",[156],{"type":48,"value":157},"Requirements",{"type":42,"tag":58,"props":159,"children":160},{},[161],{"type":48,"value":162},"Before using autoship, ensure:",{"type":42,"tag":164,"props":165,"children":170},"pre",{"className":166,"code":167,"language":168,"meta":169,"style":169},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# GitHub CLI must be authenticated\ngh auth login\n\n# API key for AI features\nexport AI_GATEWAY_API_KEY=\"your-key\"\n","bash","",[171],{"type":42,"tag":80,"props":172,"children":173},{"__ignoreMap":169},[174,186,207,217,226],{"type":42,"tag":175,"props":176,"children":179},"span",{"class":177,"line":178},"line",1,[180],{"type":42,"tag":175,"props":181,"children":183},{"style":182},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[184],{"type":48,"value":185},"# GitHub CLI must be authenticated\n",{"type":42,"tag":175,"props":187,"children":189},{"class":177,"line":188},2,[190,196,202],{"type":42,"tag":175,"props":191,"children":193},{"style":192},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[194],{"type":48,"value":195},"gh",{"type":42,"tag":175,"props":197,"children":199},{"style":198},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[200],{"type":48,"value":201}," auth",{"type":42,"tag":175,"props":203,"children":204},{"style":198},[205],{"type":48,"value":206}," login\n",{"type":42,"tag":175,"props":208,"children":210},{"class":177,"line":209},3,[211],{"type":42,"tag":175,"props":212,"children":214},{"emptyLinePlaceholder":213},true,[215],{"type":48,"value":216},"\n",{"type":42,"tag":175,"props":218,"children":220},{"class":177,"line":219},4,[221],{"type":42,"tag":175,"props":222,"children":223},{"style":182},[224],{"type":48,"value":225},"# API key for AI features\n",{"type":42,"tag":175,"props":227,"children":229},{"class":177,"line":228},5,[230,236,242,248,253,258],{"type":42,"tag":175,"props":231,"children":233},{"style":232},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[234],{"type":48,"value":235},"export",{"type":42,"tag":175,"props":237,"children":239},{"style":238},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[240],{"type":48,"value":241}," AI_GATEWAY_API_KEY",{"type":42,"tag":175,"props":243,"children":245},{"style":244},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[246],{"type":48,"value":247},"=",{"type":42,"tag":175,"props":249,"children":250},{"style":244},[251],{"type":48,"value":252},"\"",{"type":42,"tag":175,"props":254,"children":255},{"style":198},[256],{"type":48,"value":257},"your-key",{"type":42,"tag":175,"props":259,"children":260},{"style":244},[261],{"type":48,"value":262},"\"\n",{"type":42,"tag":51,"props":264,"children":266},{"id":265},"essential-commands",[267],{"type":48,"value":268},"Essential Commands",{"type":42,"tag":164,"props":270,"children":272},{"className":166,"code":271,"language":168,"meta":169,"style":169},"# One-time setup: add a repository\nautoship add myproject\n# Prompts for: owner, repo name, base branch\n\n# List configured repositories\nautoship list\n\n# Interactive release (prompts for type and message)\nautoship myproject\n\n# Automated release (no prompts)\nautoship myproject -t patch -y\nautoship myproject -t minor -y\nautoship myproject -t major -y\n\n# Release with custom message (skips AI generation)\nautoship myproject -t patch -m \"Fixed login bug\" -y\n",[273],{"type":42,"tag":80,"props":274,"children":275},{"__ignoreMap":169},[276,284,301,309,316,324,337,345,354,365,373,382,410,435,460,468,477],{"type":42,"tag":175,"props":277,"children":278},{"class":177,"line":178},[279],{"type":42,"tag":175,"props":280,"children":281},{"style":182},[282],{"type":48,"value":283},"# One-time setup: add a repository\n",{"type":42,"tag":175,"props":285,"children":286},{"class":177,"line":188},[287,291,296],{"type":42,"tag":175,"props":288,"children":289},{"style":192},[290],{"type":48,"value":4},{"type":42,"tag":175,"props":292,"children":293},{"style":198},[294],{"type":48,"value":295}," add",{"type":42,"tag":175,"props":297,"children":298},{"style":198},[299],{"type":48,"value":300}," myproject\n",{"type":42,"tag":175,"props":302,"children":303},{"class":177,"line":209},[304],{"type":42,"tag":175,"props":305,"children":306},{"style":182},[307],{"type":48,"value":308},"# Prompts for: owner, repo name, base branch\n",{"type":42,"tag":175,"props":310,"children":311},{"class":177,"line":219},[312],{"type":42,"tag":175,"props":313,"children":314},{"emptyLinePlaceholder":213},[315],{"type":48,"value":216},{"type":42,"tag":175,"props":317,"children":318},{"class":177,"line":228},[319],{"type":42,"tag":175,"props":320,"children":321},{"style":182},[322],{"type":48,"value":323},"# List configured repositories\n",{"type":42,"tag":175,"props":325,"children":327},{"class":177,"line":326},6,[328,332],{"type":42,"tag":175,"props":329,"children":330},{"style":192},[331],{"type":48,"value":4},{"type":42,"tag":175,"props":333,"children":334},{"style":198},[335],{"type":48,"value":336}," list\n",{"type":42,"tag":175,"props":338,"children":340},{"class":177,"line":339},7,[341],{"type":42,"tag":175,"props":342,"children":343},{"emptyLinePlaceholder":213},[344],{"type":48,"value":216},{"type":42,"tag":175,"props":346,"children":348},{"class":177,"line":347},8,[349],{"type":42,"tag":175,"props":350,"children":351},{"style":182},[352],{"type":48,"value":353},"# Interactive release (prompts for type and message)\n",{"type":42,"tag":175,"props":355,"children":356},{"class":177,"line":28},[357,361],{"type":42,"tag":175,"props":358,"children":359},{"style":192},[360],{"type":48,"value":4},{"type":42,"tag":175,"props":362,"children":363},{"style":198},[364],{"type":48,"value":300},{"type":42,"tag":175,"props":366,"children":368},{"class":177,"line":367},10,[369],{"type":42,"tag":175,"props":370,"children":371},{"emptyLinePlaceholder":213},[372],{"type":48,"value":216},{"type":42,"tag":175,"props":374,"children":376},{"class":177,"line":375},11,[377],{"type":42,"tag":175,"props":378,"children":379},{"style":182},[380],{"type":48,"value":381},"# Automated release (no prompts)\n",{"type":42,"tag":175,"props":383,"children":385},{"class":177,"line":384},12,[386,390,395,400,405],{"type":42,"tag":175,"props":387,"children":388},{"style":192},[389],{"type":48,"value":4},{"type":42,"tag":175,"props":391,"children":392},{"style":198},[393],{"type":48,"value":394}," myproject",{"type":42,"tag":175,"props":396,"children":397},{"style":198},[398],{"type":48,"value":399}," -t",{"type":42,"tag":175,"props":401,"children":402},{"style":198},[403],{"type":48,"value":404}," patch",{"type":42,"tag":175,"props":406,"children":407},{"style":198},[408],{"type":48,"value":409}," -y\n",{"type":42,"tag":175,"props":411,"children":413},{"class":177,"line":412},13,[414,418,422,426,431],{"type":42,"tag":175,"props":415,"children":416},{"style":192},[417],{"type":48,"value":4},{"type":42,"tag":175,"props":419,"children":420},{"style":198},[421],{"type":48,"value":394},{"type":42,"tag":175,"props":423,"children":424},{"style":198},[425],{"type":48,"value":399},{"type":42,"tag":175,"props":427,"children":428},{"style":198},[429],{"type":48,"value":430}," minor",{"type":42,"tag":175,"props":432,"children":433},{"style":198},[434],{"type":48,"value":409},{"type":42,"tag":175,"props":436,"children":438},{"class":177,"line":437},14,[439,443,447,451,456],{"type":42,"tag":175,"props":440,"children":441},{"style":192},[442],{"type":48,"value":4},{"type":42,"tag":175,"props":444,"children":445},{"style":198},[446],{"type":48,"value":394},{"type":42,"tag":175,"props":448,"children":449},{"style":198},[450],{"type":48,"value":399},{"type":42,"tag":175,"props":452,"children":453},{"style":198},[454],{"type":48,"value":455}," major",{"type":42,"tag":175,"props":457,"children":458},{"style":198},[459],{"type":48,"value":409},{"type":42,"tag":175,"props":461,"children":463},{"class":177,"line":462},15,[464],{"type":42,"tag":175,"props":465,"children":466},{"emptyLinePlaceholder":213},[467],{"type":48,"value":216},{"type":42,"tag":175,"props":469,"children":471},{"class":177,"line":470},16,[472],{"type":42,"tag":175,"props":473,"children":474},{"style":182},[475],{"type":48,"value":476},"# Release with custom message (skips AI generation)\n",{"type":42,"tag":175,"props":478,"children":480},{"class":177,"line":479},17,[481,485,489,493,497,502,507,512,516],{"type":42,"tag":175,"props":482,"children":483},{"style":192},[484],{"type":48,"value":4},{"type":42,"tag":175,"props":486,"children":487},{"style":198},[488],{"type":48,"value":394},{"type":42,"tag":175,"props":490,"children":491},{"style":198},[492],{"type":48,"value":399},{"type":42,"tag":175,"props":494,"children":495},{"style":198},[496],{"type":48,"value":404},{"type":42,"tag":175,"props":498,"children":499},{"style":198},[500],{"type":48,"value":501}," -m",{"type":42,"tag":175,"props":503,"children":504},{"style":244},[505],{"type":48,"value":506}," \"",{"type":42,"tag":175,"props":508,"children":509},{"style":198},[510],{"type":48,"value":511},"Fixed login bug",{"type":42,"tag":175,"props":513,"children":514},{"style":244},[515],{"type":48,"value":252},{"type":42,"tag":175,"props":517,"children":518},{"style":198},[519],{"type":48,"value":409},{"type":42,"tag":51,"props":521,"children":523},{"id":522},"command-options",[524],{"type":48,"value":525},"Command Options",{"type":42,"tag":164,"props":527,"children":529},{"className":166,"code":528,"language":168,"meta":169,"style":169},"autoship [repo]                    # Interactive repo selection if omitted\n  -t, --type \u003Ctype>                # Release type: patch, minor, major\n  -m, --message \u003Cmessage>          # Custom changeset description\n  -y, --yes                        # Skip all confirmations\n  -h, --help                       # Show help\n",[530],{"type":42,"tag":80,"props":531,"children":532},{"__ignoreMap":169},[533,550,588,623,641],{"type":42,"tag":175,"props":534,"children":535},{"class":177,"line":178},[536,540,545],{"type":42,"tag":175,"props":537,"children":538},{"style":192},[539],{"type":48,"value":4},{"type":42,"tag":175,"props":541,"children":542},{"style":238},[543],{"type":48,"value":544}," [repo]                    ",{"type":42,"tag":175,"props":546,"children":547},{"style":182},[548],{"type":48,"value":549},"# Interactive repo selection if omitted\n",{"type":42,"tag":175,"props":551,"children":552},{"class":177,"line":188},[553,558,563,568,573,578,583],{"type":42,"tag":175,"props":554,"children":555},{"style":192},[556],{"type":48,"value":557},"  -t,",{"type":42,"tag":175,"props":559,"children":560},{"style":198},[561],{"type":48,"value":562}," --type",{"type":42,"tag":175,"props":564,"children":565},{"style":244},[566],{"type":48,"value":567}," \u003C",{"type":42,"tag":175,"props":569,"children":570},{"style":198},[571],{"type":48,"value":572},"typ",{"type":42,"tag":175,"props":574,"children":575},{"style":238},[576],{"type":48,"value":577},"e",{"type":42,"tag":175,"props":579,"children":580},{"style":244},[581],{"type":48,"value":582},">",{"type":42,"tag":175,"props":584,"children":585},{"style":182},[586],{"type":48,"value":587},"                # Release type: patch, minor, major\n",{"type":42,"tag":175,"props":589,"children":590},{"class":177,"line":209},[591,596,601,605,610,614,618],{"type":42,"tag":175,"props":592,"children":593},{"style":192},[594],{"type":48,"value":595},"  -m,",{"type":42,"tag":175,"props":597,"children":598},{"style":198},[599],{"type":48,"value":600}," --message",{"type":42,"tag":175,"props":602,"children":603},{"style":244},[604],{"type":48,"value":567},{"type":42,"tag":175,"props":606,"children":607},{"style":198},[608],{"type":48,"value":609},"messag",{"type":42,"tag":175,"props":611,"children":612},{"style":238},[613],{"type":48,"value":577},{"type":42,"tag":175,"props":615,"children":616},{"style":244},[617],{"type":48,"value":582},{"type":42,"tag":175,"props":619,"children":620},{"style":182},[621],{"type":48,"value":622},"          # Custom changeset description\n",{"type":42,"tag":175,"props":624,"children":625},{"class":177,"line":219},[626,631,636],{"type":42,"tag":175,"props":627,"children":628},{"style":192},[629],{"type":48,"value":630},"  -y,",{"type":42,"tag":175,"props":632,"children":633},{"style":198},[634],{"type":48,"value":635}," --yes",{"type":42,"tag":175,"props":637,"children":638},{"style":182},[639],{"type":48,"value":640},"                        # Skip all confirmations\n",{"type":42,"tag":175,"props":642,"children":643},{"class":177,"line":228},[644,649,654],{"type":42,"tag":175,"props":645,"children":646},{"style":192},[647],{"type":48,"value":648},"  -h,",{"type":42,"tag":175,"props":650,"children":651},{"style":198},[652],{"type":48,"value":653}," --help",{"type":42,"tag":175,"props":655,"children":656},{"style":182},[657],{"type":48,"value":658},"                       # Show help\n",{"type":42,"tag":51,"props":660,"children":662},{"id":661},"common-patterns",[663],{"type":48,"value":664},"Common Patterns",{"type":42,"tag":666,"props":667,"children":669},"h3",{"id":668},"fully-automated-patch-release",[670],{"type":48,"value":671},"Fully Automated Patch Release",{"type":42,"tag":164,"props":673,"children":675},{"className":166,"code":674,"language":168,"meta":169,"style":169},"autoship myproject -t patch -y\n",[676],{"type":42,"tag":80,"props":677,"children":678},{"__ignoreMap":169},[679],{"type":42,"tag":175,"props":680,"children":681},{"class":177,"line":178},[682,686,690,694,698],{"type":42,"tag":175,"props":683,"children":684},{"style":192},[685],{"type":48,"value":4},{"type":42,"tag":175,"props":687,"children":688},{"style":198},[689],{"type":48,"value":394},{"type":42,"tag":175,"props":691,"children":692},{"style":198},[693],{"type":48,"value":399},{"type":42,"tag":175,"props":695,"children":696},{"style":198},[697],{"type":48,"value":404},{"type":42,"tag":175,"props":699,"children":700},{"style":198},[701],{"type":48,"value":409},{"type":42,"tag":666,"props":703,"children":705},{"id":704},"ai-assisted-interactive-release",[706],{"type":48,"value":707},"AI-Assisted Interactive Release",{"type":42,"tag":164,"props":709,"children":711},{"className":166,"code":710,"language":168,"meta":169,"style":169},"autoship myproject\n# 1. AI analyzes commits since last release\n# 2. AI suggests release type (patch\u002Fminor\u002Fmajor)\n# 3. You confirm or change the type\n# 4. AI generates changeset description\n# 5. You review and approve\n# 6. Tool handles PR creation and merging\n",[712],{"type":42,"tag":80,"props":713,"children":714},{"__ignoreMap":169},[715,726,734,742,750,758,766],{"type":42,"tag":175,"props":716,"children":717},{"class":177,"line":178},[718,722],{"type":42,"tag":175,"props":719,"children":720},{"style":192},[721],{"type":48,"value":4},{"type":42,"tag":175,"props":723,"children":724},{"style":198},[725],{"type":48,"value":300},{"type":42,"tag":175,"props":727,"children":728},{"class":177,"line":188},[729],{"type":42,"tag":175,"props":730,"children":731},{"style":182},[732],{"type":48,"value":733},"# 1. AI analyzes commits since last release\n",{"type":42,"tag":175,"props":735,"children":736},{"class":177,"line":209},[737],{"type":42,"tag":175,"props":738,"children":739},{"style":182},[740],{"type":48,"value":741},"# 2. AI suggests release type (patch\u002Fminor\u002Fmajor)\n",{"type":42,"tag":175,"props":743,"children":744},{"class":177,"line":219},[745],{"type":42,"tag":175,"props":746,"children":747},{"style":182},[748],{"type":48,"value":749},"# 3. You confirm or change the type\n",{"type":42,"tag":175,"props":751,"children":752},{"class":177,"line":228},[753],{"type":42,"tag":175,"props":754,"children":755},{"style":182},[756],{"type":48,"value":757},"# 4. AI generates changeset description\n",{"type":42,"tag":175,"props":759,"children":760},{"class":177,"line":326},[761],{"type":42,"tag":175,"props":762,"children":763},{"style":182},[764],{"type":48,"value":765},"# 5. You review and approve\n",{"type":42,"tag":175,"props":767,"children":768},{"class":177,"line":339},[769],{"type":42,"tag":175,"props":770,"children":771},{"style":182},[772],{"type":48,"value":773},"# 6. Tool handles PR creation and merging\n",{"type":42,"tag":666,"props":775,"children":777},{"id":776},"custom-message-release",[778],{"type":48,"value":779},"Custom Message Release",{"type":42,"tag":164,"props":781,"children":783},{"className":166,"code":782,"language":168,"meta":169,"style":169},"autoship myproject -t minor -m \"Added new authentication providers\" -y\n",[784],{"type":42,"tag":80,"props":785,"children":786},{"__ignoreMap":169},[787],{"type":42,"tag":175,"props":788,"children":789},{"class":177,"line":178},[790,794,798,802,806,810,814,819,823],{"type":42,"tag":175,"props":791,"children":792},{"style":192},[793],{"type":48,"value":4},{"type":42,"tag":175,"props":795,"children":796},{"style":198},[797],{"type":48,"value":394},{"type":42,"tag":175,"props":799,"children":800},{"style":198},[801],{"type":48,"value":399},{"type":42,"tag":175,"props":803,"children":804},{"style":198},[805],{"type":48,"value":430},{"type":42,"tag":175,"props":807,"children":808},{"style":198},[809],{"type":48,"value":501},{"type":42,"tag":175,"props":811,"children":812},{"style":244},[813],{"type":48,"value":506},{"type":42,"tag":175,"props":815,"children":816},{"style":198},[817],{"type":48,"value":818},"Added new authentication providers",{"type":42,"tag":175,"props":820,"children":821},{"style":244},[822],{"type":48,"value":252},{"type":42,"tag":175,"props":824,"children":825},{"style":198},[826],{"type":48,"value":409},{"type":42,"tag":666,"props":828,"children":830},{"id":829},"cicd-integration",[831],{"type":48,"value":832},"CI\u002FCD Integration",{"type":42,"tag":164,"props":834,"children":836},{"className":166,"code":835,"language":168,"meta":169,"style":169},"# In GitHub Actions or CI pipeline\nexport AI_GATEWAY_API_KEY=\"${{ secrets.AI_GATEWAY_API_KEY }}\"\nnpx autoship myproject -t patch -y\n",[837],{"type":42,"tag":80,"props":838,"children":839},{"__ignoreMap":169},[840,848,902],{"type":42,"tag":175,"props":841,"children":842},{"class":177,"line":178},[843],{"type":42,"tag":175,"props":844,"children":845},{"style":182},[846],{"type":48,"value":847},"# In GitHub Actions or CI pipeline\n",{"type":42,"tag":175,"props":849,"children":850},{"class":177,"line":188},[851,855,859,863,868,873,878,883,888,893,898],{"type":42,"tag":175,"props":852,"children":853},{"style":232},[854],{"type":48,"value":235},{"type":42,"tag":175,"props":856,"children":857},{"style":238},[858],{"type":48,"value":241},{"type":42,"tag":175,"props":860,"children":861},{"style":244},[862],{"type":48,"value":247},{"type":42,"tag":175,"props":864,"children":865},{"style":244},[866],{"type":48,"value":867},"\"${",{"type":42,"tag":175,"props":869,"children":870},{"style":198},[871],{"type":48,"value":872},"{ ",{"type":42,"tag":175,"props":874,"children":875},{"style":238},[876],{"type":48,"value":877},"secrets",{"type":42,"tag":175,"props":879,"children":880},{"style":198},[881],{"type":48,"value":882},".",{"type":42,"tag":175,"props":884,"children":885},{"style":238},[886],{"type":48,"value":887},"AI_GATEWAY_API_KEY",{"type":42,"tag":175,"props":889,"children":890},{"style":244},[891],{"type":48,"value":892}," }",{"type":42,"tag":175,"props":894,"children":895},{"style":198},[896],{"type":48,"value":897},"}",{"type":42,"tag":175,"props":899,"children":900},{"style":244},[901],{"type":48,"value":262},{"type":42,"tag":175,"props":903,"children":904},{"class":177,"line":209},[905,910,915,919,923,927],{"type":42,"tag":175,"props":906,"children":907},{"style":192},[908],{"type":48,"value":909},"npx",{"type":42,"tag":175,"props":911,"children":912},{"style":198},[913],{"type":48,"value":914}," autoship",{"type":42,"tag":175,"props":916,"children":917},{"style":198},[918],{"type":48,"value":394},{"type":42,"tag":175,"props":920,"children":921},{"style":198},[922],{"type":48,"value":399},{"type":42,"tag":175,"props":924,"children":925},{"style":198},[926],{"type":48,"value":404},{"type":42,"tag":175,"props":928,"children":929},{"style":198},[930],{"type":48,"value":409},{"type":42,"tag":51,"props":932,"children":934},{"id":933},"what-autoship-does-10-steps",[935],{"type":48,"value":936},"What autoship Does (10 Steps)",{"type":42,"tag":64,"props":938,"children":939},{},[940,950,960,970,980,990,1000,1010,1020,1030],{"type":42,"tag":68,"props":941,"children":942},{},[943,948],{"type":42,"tag":72,"props":944,"children":945},{},[946],{"type":48,"value":947},"Clone",{"type":48,"value":949}," - Clones the repository from the base branch",{"type":42,"tag":68,"props":951,"children":952},{},[953,958],{"type":42,"tag":72,"props":954,"children":955},{},[956],{"type":48,"value":957},"Analyze",{"type":48,"value":959}," - Finds latest version tag, analyzes commits and diff",{"type":42,"tag":68,"props":961,"children":962},{},[963,968],{"type":42,"tag":72,"props":964,"children":965},{},[966],{"type":48,"value":967},"Suggest",{"type":48,"value":969}," - AI suggests release type based on changes",{"type":42,"tag":68,"props":971,"children":972},{},[973,978],{"type":42,"tag":72,"props":974,"children":975},{},[976],{"type":48,"value":977},"Generate",{"type":48,"value":979}," - AI generates changeset description",{"type":42,"tag":68,"props":981,"children":982},{},[983,988],{"type":42,"tag":72,"props":984,"children":985},{},[986],{"type":48,"value":987},"Branch",{"type":48,"value":989}," - Creates release branch with changeset file",{"type":42,"tag":68,"props":991,"children":992},{},[993,998],{"type":42,"tag":72,"props":994,"children":995},{},[996],{"type":48,"value":997},"PR",{"type":48,"value":999}," - Creates pull request for the changeset",{"type":42,"tag":68,"props":1001,"children":1002},{},[1003,1008],{"type":42,"tag":72,"props":1004,"children":1005},{},[1006],{"type":48,"value":1007},"Wait",{"type":48,"value":1009}," - Waits for CI checks to pass",{"type":42,"tag":68,"props":1011,"children":1012},{},[1013,1018],{"type":42,"tag":72,"props":1014,"children":1015},{},[1016],{"type":48,"value":1017},"Merge",{"type":48,"value":1019}," - Merges the changeset PR",{"type":42,"tag":68,"props":1021,"children":1022},{},[1023,1028],{"type":42,"tag":72,"props":1024,"children":1025},{},[1026],{"type":48,"value":1027},"Version PR",{"type":48,"value":1029}," - Waits for changesets action to create Version Packages PR",{"type":42,"tag":68,"props":1031,"children":1032},{},[1033,1038],{"type":42,"tag":72,"props":1034,"children":1035},{},[1036],{"type":48,"value":1037},"Publish",{"type":48,"value":1039}," - Merges Version Packages PR to trigger npm publish",{"type":42,"tag":51,"props":1041,"children":1043},{"id":1042},"output-format",[1044],{"type":48,"value":1045},"Output Format",{"type":42,"tag":58,"props":1047,"children":1048},{},[1049],{"type":48,"value":1050},"autoship provides clear step-by-step output:",{"type":42,"tag":164,"props":1052,"children":1056},{"className":1053,"code":1055,"language":48},[1054],"language-text","[1\u002F10] Cloning repository from main...\n  > Repository cloned\n  > Package: my-package @ 1.2.3\n\n[2\u002F10] Creating release branch...\n  > Branch created: release\u002Fpatch-1706123456789\n\n[3\u002F10] Generating changeset...\n  > Changeset created: fluffy-pants-dance.md\n\n...\n\nRelease Complete!\nThe patch release has been published.\n",[1057],{"type":42,"tag":80,"props":1058,"children":1059},{"__ignoreMap":169},[1060],{"type":48,"value":1055},{"type":42,"tag":51,"props":1062,"children":1064},{"id":1063},"configuration",[1065],{"type":48,"value":1066},"Configuration",{"type":42,"tag":58,"props":1068,"children":1069},{},[1070,1072,1078],{"type":48,"value":1071},"Config is stored at ",{"type":42,"tag":80,"props":1073,"children":1075},{"className":1074},[],[1076],{"type":48,"value":1077},"~\u002F.autoship\u002Fconfig.json",{"type":48,"value":1079},":",{"type":42,"tag":164,"props":1081,"children":1085},{"className":1082,"code":1083,"language":1084,"meta":169,"style":169},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"repos\": {\n    \"myproject\": {\n      \"owner\": \"vercel-labs\",\n      \"repo\": \"myproject\",\n      \"baseBranch\": \"main\",\n      \"cloneUrl\": \"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fmyproject.git\"\n    }\n  }\n}\n","json",[1086],{"type":42,"tag":80,"props":1087,"children":1088},{"__ignoreMap":169},[1089,1097,1123,1148,1187,1223,1260,1293,1301,1309],{"type":42,"tag":175,"props":1090,"children":1091},{"class":177,"line":178},[1092],{"type":42,"tag":175,"props":1093,"children":1094},{"style":244},[1095],{"type":48,"value":1096},"{\n",{"type":42,"tag":175,"props":1098,"children":1099},{"class":177,"line":188},[1100,1105,1110,1114,1118],{"type":42,"tag":175,"props":1101,"children":1102},{"style":244},[1103],{"type":48,"value":1104},"  \"",{"type":42,"tag":175,"props":1106,"children":1107},{"style":232},[1108],{"type":48,"value":1109},"repos",{"type":42,"tag":175,"props":1111,"children":1112},{"style":244},[1113],{"type":48,"value":252},{"type":42,"tag":175,"props":1115,"children":1116},{"style":244},[1117],{"type":48,"value":1079},{"type":42,"tag":175,"props":1119,"children":1120},{"style":244},[1121],{"type":48,"value":1122}," {\n",{"type":42,"tag":175,"props":1124,"children":1125},{"class":177,"line":209},[1126,1131,1136,1140,1144],{"type":42,"tag":175,"props":1127,"children":1128},{"style":244},[1129],{"type":48,"value":1130},"    \"",{"type":42,"tag":175,"props":1132,"children":1133},{"style":192},[1134],{"type":48,"value":1135},"myproject",{"type":42,"tag":175,"props":1137,"children":1138},{"style":244},[1139],{"type":48,"value":252},{"type":42,"tag":175,"props":1141,"children":1142},{"style":244},[1143],{"type":48,"value":1079},{"type":42,"tag":175,"props":1145,"children":1146},{"style":244},[1147],{"type":48,"value":1122},{"type":42,"tag":175,"props":1149,"children":1150},{"class":177,"line":219},[1151,1156,1162,1166,1170,1174,1178,1182],{"type":42,"tag":175,"props":1152,"children":1153},{"style":244},[1154],{"type":48,"value":1155},"      \"",{"type":42,"tag":175,"props":1157,"children":1159},{"style":1158},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1160],{"type":48,"value":1161},"owner",{"type":42,"tag":175,"props":1163,"children":1164},{"style":244},[1165],{"type":48,"value":252},{"type":42,"tag":175,"props":1167,"children":1168},{"style":244},[1169],{"type":48,"value":1079},{"type":42,"tag":175,"props":1171,"children":1172},{"style":244},[1173],{"type":48,"value":506},{"type":42,"tag":175,"props":1175,"children":1176},{"style":198},[1177],{"type":48,"value":8},{"type":42,"tag":175,"props":1179,"children":1180},{"style":244},[1181],{"type":48,"value":252},{"type":42,"tag":175,"props":1183,"children":1184},{"style":244},[1185],{"type":48,"value":1186},",\n",{"type":42,"tag":175,"props":1188,"children":1189},{"class":177,"line":228},[1190,1194,1199,1203,1207,1211,1215,1219],{"type":42,"tag":175,"props":1191,"children":1192},{"style":244},[1193],{"type":48,"value":1155},{"type":42,"tag":175,"props":1195,"children":1196},{"style":1158},[1197],{"type":48,"value":1198},"repo",{"type":42,"tag":175,"props":1200,"children":1201},{"style":244},[1202],{"type":48,"value":252},{"type":42,"tag":175,"props":1204,"children":1205},{"style":244},[1206],{"type":48,"value":1079},{"type":42,"tag":175,"props":1208,"children":1209},{"style":244},[1210],{"type":48,"value":506},{"type":42,"tag":175,"props":1212,"children":1213},{"style":198},[1214],{"type":48,"value":1135},{"type":42,"tag":175,"props":1216,"children":1217},{"style":244},[1218],{"type":48,"value":252},{"type":42,"tag":175,"props":1220,"children":1221},{"style":244},[1222],{"type":48,"value":1186},{"type":42,"tag":175,"props":1224,"children":1225},{"class":177,"line":326},[1226,1230,1235,1239,1243,1247,1252,1256],{"type":42,"tag":175,"props":1227,"children":1228},{"style":244},[1229],{"type":48,"value":1155},{"type":42,"tag":175,"props":1231,"children":1232},{"style":1158},[1233],{"type":48,"value":1234},"baseBranch",{"type":42,"tag":175,"props":1236,"children":1237},{"style":244},[1238],{"type":48,"value":252},{"type":42,"tag":175,"props":1240,"children":1241},{"style":244},[1242],{"type":48,"value":1079},{"type":42,"tag":175,"props":1244,"children":1245},{"style":244},[1246],{"type":48,"value":506},{"type":42,"tag":175,"props":1248,"children":1249},{"style":198},[1250],{"type":48,"value":1251},"main",{"type":42,"tag":175,"props":1253,"children":1254},{"style":244},[1255],{"type":48,"value":252},{"type":42,"tag":175,"props":1257,"children":1258},{"style":244},[1259],{"type":48,"value":1186},{"type":42,"tag":175,"props":1261,"children":1262},{"class":177,"line":339},[1263,1267,1272,1276,1280,1284,1289],{"type":42,"tag":175,"props":1264,"children":1265},{"style":244},[1266],{"type":48,"value":1155},{"type":42,"tag":175,"props":1268,"children":1269},{"style":1158},[1270],{"type":48,"value":1271},"cloneUrl",{"type":42,"tag":175,"props":1273,"children":1274},{"style":244},[1275],{"type":48,"value":252},{"type":42,"tag":175,"props":1277,"children":1278},{"style":244},[1279],{"type":48,"value":1079},{"type":42,"tag":175,"props":1281,"children":1282},{"style":244},[1283],{"type":48,"value":506},{"type":42,"tag":175,"props":1285,"children":1286},{"style":198},[1287],{"type":48,"value":1288},"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fmyproject.git",{"type":42,"tag":175,"props":1290,"children":1291},{"style":244},[1292],{"type":48,"value":262},{"type":42,"tag":175,"props":1294,"children":1295},{"class":177,"line":347},[1296],{"type":42,"tag":175,"props":1297,"children":1298},{"style":244},[1299],{"type":48,"value":1300},"    }\n",{"type":42,"tag":175,"props":1302,"children":1303},{"class":177,"line":28},[1304],{"type":42,"tag":175,"props":1305,"children":1306},{"style":244},[1307],{"type":48,"value":1308},"  }\n",{"type":42,"tag":175,"props":1310,"children":1311},{"class":177,"line":367},[1312],{"type":42,"tag":175,"props":1313,"children":1314},{"style":244},[1315],{"type":48,"value":1316},"}\n",{"type":42,"tag":51,"props":1318,"children":1320},{"id":1319},"deep-dive-documentation",[1321],{"type":48,"value":1322},"Deep-Dive Documentation",{"type":42,"tag":1324,"props":1325,"children":1326},"table",{},[1327,1346],{"type":42,"tag":1328,"props":1329,"children":1330},"thead",{},[1331],{"type":42,"tag":1332,"props":1333,"children":1334},"tr",{},[1335,1341],{"type":42,"tag":1336,"props":1337,"children":1338},"th",{},[1339],{"type":48,"value":1340},"Reference",{"type":42,"tag":1336,"props":1342,"children":1343},{},[1344],{"type":48,"value":1345},"When to Use",{"type":42,"tag":1347,"props":1348,"children":1349},"tbody",{},[1350,1368,1384],{"type":42,"tag":1332,"props":1351,"children":1352},{},[1353,1363],{"type":42,"tag":1354,"props":1355,"children":1356},"td",{},[1357],{"type":42,"tag":1358,"props":1359,"children":1361},"a",{"href":1360},"references\u002Fcommands.md",[1362],{"type":48,"value":1360},{"type":42,"tag":1354,"props":1364,"children":1365},{},[1366],{"type":48,"value":1367},"Full command reference with all options",{"type":42,"tag":1332,"props":1369,"children":1370},{},[1371,1379],{"type":42,"tag":1354,"props":1372,"children":1373},{},[1374],{"type":42,"tag":1358,"props":1375,"children":1377},{"href":1376},"references\u002Fconfiguration.md",[1378],{"type":48,"value":1376},{"type":42,"tag":1354,"props":1380,"children":1381},{},[1382],{"type":48,"value":1383},"Config file format and repository setup",{"type":42,"tag":1332,"props":1385,"children":1386},{},[1387,1395],{"type":42,"tag":1354,"props":1388,"children":1389},{},[1390],{"type":42,"tag":1358,"props":1391,"children":1393},{"href":1392},"references\u002Fci-integration.md",[1394],{"type":48,"value":1392},{"type":42,"tag":1354,"props":1396,"children":1397},{},[1398],{"type":48,"value":1399},"GitHub Actions and CI\u002FCD setup",{"type":42,"tag":51,"props":1401,"children":1403},{"id":1402},"ready-to-use-templates",[1404],{"type":48,"value":1405},"Ready-to-Use Templates",{"type":42,"tag":1324,"props":1407,"children":1408},{},[1409,1425],{"type":42,"tag":1328,"props":1410,"children":1411},{},[1412],{"type":42,"tag":1332,"props":1413,"children":1414},{},[1415,1420],{"type":42,"tag":1336,"props":1416,"children":1417},{},[1418],{"type":48,"value":1419},"Template",{"type":42,"tag":1336,"props":1421,"children":1422},{},[1423],{"type":48,"value":1424},"Description",{"type":42,"tag":1347,"props":1426,"children":1427},{},[1428,1444],{"type":42,"tag":1332,"props":1429,"children":1430},{},[1431,1439],{"type":42,"tag":1354,"props":1432,"children":1433},{},[1434],{"type":42,"tag":1358,"props":1435,"children":1437},{"href":1436},"templates\u002Fautomated-release.sh",[1438],{"type":48,"value":1436},{"type":42,"tag":1354,"props":1440,"children":1441},{},[1442],{"type":48,"value":1443},"Fully automated release script",{"type":42,"tag":1332,"props":1445,"children":1446},{},[1447,1455],{"type":42,"tag":1354,"props":1448,"children":1449},{},[1450],{"type":42,"tag":1358,"props":1451,"children":1453},{"href":1452},"templates\u002Fsetup-repo.sh",[1454],{"type":48,"value":1452},{"type":42,"tag":1354,"props":1456,"children":1457},{},[1458],{"type":48,"value":1459},"Non-interactive repository setup",{"type":42,"tag":164,"props":1461,"children":1463},{"className":166,"code":1462,"language":168,"meta":169,"style":169},".\u002Ftemplates\u002Fautomated-release.sh myproject patch\n.\u002Ftemplates\u002Fsetup-repo.sh myproject vercel-labs myproject main\n",[1464],{"type":42,"tag":80,"props":1465,"children":1466},{"__ignoreMap":169},[1467,1484],{"type":42,"tag":175,"props":1468,"children":1469},{"class":177,"line":178},[1470,1475,1479],{"type":42,"tag":175,"props":1471,"children":1472},{"style":192},[1473],{"type":48,"value":1474},".\u002Ftemplates\u002Fautomated-release.sh",{"type":42,"tag":175,"props":1476,"children":1477},{"style":198},[1478],{"type":48,"value":394},{"type":42,"tag":175,"props":1480,"children":1481},{"style":198},[1482],{"type":48,"value":1483}," patch\n",{"type":42,"tag":175,"props":1485,"children":1486},{"class":177,"line":188},[1487,1492,1496,1501,1505],{"type":42,"tag":175,"props":1488,"children":1489},{"style":192},[1490],{"type":48,"value":1491},".\u002Ftemplates\u002Fsetup-repo.sh",{"type":42,"tag":175,"props":1493,"children":1494},{"style":198},[1495],{"type":48,"value":394},{"type":42,"tag":175,"props":1497,"children":1498},{"style":198},[1499],{"type":48,"value":1500}," vercel-labs",{"type":42,"tag":175,"props":1502,"children":1503},{"style":198},[1504],{"type":48,"value":394},{"type":42,"tag":175,"props":1506,"children":1507},{"style":198},[1508],{"type":48,"value":1509}," main\n",{"type":42,"tag":51,"props":1511,"children":1513},{"id":1512},"troubleshooting",[1514],{"type":48,"value":1515},"Troubleshooting",{"type":42,"tag":666,"props":1517,"children":1519},{"id":1518},"no-repositories-configured",[1520],{"type":48,"value":1521},"\"No repositories configured\"",{"type":42,"tag":58,"props":1523,"children":1524},{},[1525,1527,1532],{"type":48,"value":1526},"Run ",{"type":42,"tag":80,"props":1528,"children":1530},{"className":1529},[],[1531],{"type":48,"value":85},{"type":48,"value":1533}," to configure a repository first.",{"type":42,"tag":666,"props":1535,"children":1537},{"id":1536},"repository-not-found",[1538],{"type":48,"value":1539},"\"Repository not found\"",{"type":42,"tag":58,"props":1541,"children":1542},{},[1543,1545,1551],{"type":48,"value":1544},"Check ",{"type":42,"tag":80,"props":1546,"children":1548},{"className":1547},[],[1549],{"type":48,"value":1550},"autoship list",{"type":48,"value":1552}," for available repos. The name is case-sensitive.",{"type":42,"tag":666,"props":1554,"children":1556},{"id":1555},"ci-checks-failing",[1557],{"type":48,"value":1558},"CI checks failing",{"type":42,"tag":58,"props":1560,"children":1561},{},[1562],{"type":48,"value":1563},"The tool will show which checks failed. Fix the issues in the target repository, then retry.",{"type":42,"tag":666,"props":1565,"children":1567},{"id":1566},"ai-generation-failed",[1568],{"type":48,"value":1569},"AI generation failed",{"type":42,"tag":58,"props":1571,"children":1572},{},[1573,1575,1580],{"type":48,"value":1574},"If AI fails, autoship falls back to manual input. Ensure ",{"type":42,"tag":80,"props":1576,"children":1578},{"className":1577},[],[1579],{"type":48,"value":887},{"type":48,"value":1581}," is set.",{"type":42,"tag":1583,"props":1584,"children":1585},"style",{},[1586],{"type":48,"value":1587},"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":1589,"total":1755},[1590,1606,1618,1630,1645,1662,1674,1687,1700,1711,1721,1740],{"slug":1591,"name":1591,"fn":1592,"description":1593,"org":1594,"tags":1595,"stars":1603,"repoUrl":1604,"updatedAt":1605},"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},[1596,1599,1600],{"name":1597,"slug":1598,"type":15},"Agents","agents",{"name":13,"slug":14,"type":15},{"name":1601,"slug":1602,"type":15},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":1607,"name":1607,"fn":1608,"description":1609,"org":1610,"tags":1611,"stars":1603,"repoUrl":1604,"updatedAt":1617},"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},[1612,1613,1616],{"name":13,"slug":14,"type":15},{"name":1614,"slug":1615,"type":15},"AWS","aws",{"name":1601,"slug":1602,"type":15},"2026-07-17T06:08:33.665276",{"slug":1619,"name":1619,"fn":1620,"description":1621,"org":1622,"tags":1623,"stars":1603,"repoUrl":1604,"updatedAt":1629},"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},[1624,1625,1626],{"name":1597,"slug":1598,"type":15},{"name":1601,"slug":1602,"type":15},{"name":1627,"slug":1628,"type":15},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":1631,"name":1631,"fn":1632,"description":1633,"org":1634,"tags":1635,"stars":1603,"repoUrl":1604,"updatedAt":1644},"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},[1636,1639,1640,1641],{"name":1637,"slug":1638,"type":15},"API Development","api-development",{"name":13,"slug":14,"type":15},{"name":1601,"slug":1602,"type":15},{"name":1642,"slug":1643,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":1646,"name":1646,"fn":1647,"description":1648,"org":1649,"tags":1650,"stars":1603,"repoUrl":1604,"updatedAt":1661},"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},[1651,1652,1655,1658],{"name":1601,"slug":1602,"type":15},{"name":1653,"slug":1654,"type":15},"Debugging","debugging",{"name":1656,"slug":1657,"type":15},"QA","qa",{"name":1659,"slug":1660,"type":15},"Testing","testing","2026-07-17T06:07:41.421482",{"slug":1663,"name":1663,"fn":1664,"description":1665,"org":1666,"tags":1667,"stars":1603,"repoUrl":1604,"updatedAt":1673},"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},[1668,1669,1670],{"name":1597,"slug":1598,"type":15},{"name":1601,"slug":1602,"type":15},{"name":1671,"slug":1672,"type":15},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":1675,"name":1675,"fn":1676,"description":1677,"org":1678,"tags":1679,"stars":1603,"repoUrl":1604,"updatedAt":1686},"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},[1680,1681,1684],{"name":1601,"slug":1602,"type":15},{"name":1682,"slug":1683,"type":15},"Messaging","messaging",{"name":1685,"slug":1675,"type":15},"Slack","2026-07-17T06:08:27.679015",{"slug":1688,"name":1688,"fn":1689,"description":1690,"org":1691,"tags":1692,"stars":1603,"repoUrl":1604,"updatedAt":1699},"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},[1693,1694,1695,1696],{"name":13,"slug":14,"type":15},{"name":1601,"slug":1602,"type":15},{"name":1659,"slug":1660,"type":15},{"name":1697,"slug":1698,"type":15},"Vercel","vercel","2026-07-17T06:08:28.349899",{"slug":1701,"name":1701,"fn":1702,"description":1703,"org":1704,"tags":1705,"stars":1708,"repoUrl":1709,"updatedAt":1710},"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},[1706,1707],{"name":22,"slug":23,"type":15},{"name":1697,"slug":1698,"type":15},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":1712,"name":1712,"fn":1713,"description":1714,"org":1715,"tags":1716,"stars":1708,"repoUrl":1709,"updatedAt":1720},"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},[1717,1718,1719],{"name":17,"slug":18,"type":15},{"name":22,"slug":23,"type":15},{"name":1697,"slug":1698,"type":15},"2026-07-17T06:08:41.84179",{"slug":1722,"name":1722,"fn":1723,"description":1724,"org":1725,"tags":1726,"stars":1708,"repoUrl":1709,"updatedAt":1739},"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},[1727,1730,1733,1736],{"name":1728,"slug":1729,"type":15},"Best Practices","best-practices",{"name":1731,"slug":1732,"type":15},"Frontend","frontend",{"name":1734,"slug":1735,"type":15},"React","react",{"name":1737,"slug":1738,"type":15},"UI Components","ui-components","2026-07-17T06:05:40.576913",{"slug":1741,"name":1741,"fn":1742,"description":1743,"org":1744,"tags":1745,"stars":1708,"repoUrl":1709,"updatedAt":1754},"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},[1746,1749,1750,1753],{"name":1747,"slug":1748,"type":15},"Cost Optimization","cost-optimization",{"name":22,"slug":23,"type":15},{"name":1751,"slug":1752,"type":15},"Performance","performance",{"name":1697,"slug":1698,"type":15},"2026-07-17T06:04:08.327515",100,{"items":1757,"total":178},[1758],{"slug":4,"name":4,"fn":5,"description":6,"org":1759,"tags":1760,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1761,1762,1763,1764],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":22,"slug":23,"type":15},{"name":20,"slug":20,"type":15}]