agentsclimarketplace

Vercel commit author blocked

Skill bokuwalily/claude-code-skills/skills/vercel-commit-author-blocked

75 battle-tested Claude Code skills from shipping 20+ apps solo — macOS, Next.js, Vercel, iOS/Expo, Cloudflare, Phaser, local AI media & more

Install
npx -y skills add bokuwalily/claude-code-skills --skill vercel-commit-author-blocked

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Vercelのデプロイが完了せず status UNKNOWN のまま固まり、本番に反映されない時の診断と解除。特に git author を変えた直後(匿名化・別ハンドル化)に発生する COMMIT_AUTHOR_REQUIRED ブロックの対処。

SKILL.md

2.6 KB, 748 tokens by cl100k_base, as published. Nobody here has run it

Procedure

  1. vercel ls <project> で Status が UNKNOWN・Duration ? のまま数分以上動かないことを確認(正常な静的サイトは数秒でReady)。
  2. CLIでは原因が見えないので REST API で生の状態を取る:
    TOKEN=$(node -e "console.log(JSON.parse(require('fs').readFileSync(process.env.HOME+'/Library/Application Support/com.vercel.cli/auth.json','utf8')).token)")
    curl -s -H "Authorization: Bearer $TOKEN" \
      "https://api.vercel.com/v13/deployments/<dpl_ID or URL>?teamId=<team_xxx>" \
      | python3 -c "import json,sys;d=json.load(sys.stdin);print(d.get('readyState'),d.get('readyStateReason'),d.get('seatBlock'))"
    
  3. readyState: BLOCKED + seatBlock.blockCode: COMMIT_AUTHOR_REQUIRED なら、コミットauthorのメールがGitHubアカウントに未登録(Hobbyプランはcommit authorがVercelユーザーに紐づく必要あり)。
  4. 解除(実メールを公開せず匿名ハンドルを保つ場合):GitHub noreplyメールに切り替える。
    GHID=$(gh api user --jq '.id'); GHLOGIN=$(gh api user --jq '.login')
    git config user.email "${GHID}+${GHLOGIN}@users.noreply.github.com"
    git commit --allow-empty -m "chore: redeploy with associated author" && git push
    
    force push は不要。新コミットが正規authorなら新デプロイは通る。
  5. 新デプロイ Ready 後、本番ドメインへ curl で疎通・内容spot check(grep で新規文字列)まで確認して完了。

Pitfalls

  • vercel lsUNKNOWN は CLI が BLOCKED を解釈できないだけ。vercel inspect --logs もログ空・Builds 0ms で無情報。
  • デプロイURLを直接curlすると instant-preview-site のプレースホルダHTMLが200で返る=「200だが中身が違う」罠。必ず内容をgrepする。
  • git連携デプロイだけでなく CLIの vercel deploy もブロックされる(ローカルgitのHEAD authorがメタデータとして送られるため)。authorを直すまで何度デプロイしても無駄。
  • 旧BLOCKEDデプロイは放置で無害(公開されない)。

Verification

  • vercel ls <project> 最新行が ● Ready
  • 本番URLで新規追加ファイル(例 /privacy.html)が200、HTMLに新規文字列が含まれる。

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 0 of the 12 instructions most pr commit review skills give in 748 tokens

Counted across 888 of the 1,342 authors here whose files we hold, read 2026-08-07

  • Use conventional commits formatin 127 of 888, across 115 files
  • Keep subject line under 72 charactersin 62 of 888, across 48 files
  • Delete branches after mergein 51 of 888, across 38 files
  • Use imperative mood in subject linein 51 of 888, across 42 files
  • Use imperative mood in commit messagesin 44 of 888
  • Verify directory is ignored before creating worktreein 43 of 888, across 12 files
  • Generate a conventional commit messagein 43 of 888
  • Add unignored worktree directories to gitignorein 42 of 888, across 10 files
  • Make atomic commitsin 39 of 888, across 27 files
  • Run tests before committingin 36 of 888, across 25 files
  • Verify clean test baselinein 35 of 888, across 9 files
  • Split unrelated changes into separate commitsin 35 of 888, across 30 files

Said here and by no other author read

  • confirm deployment is stuck at UNKNOWN status
  • query the deployment state via REST API
  • check for COMMIT_AUTHOR_REQUIRED block code
  • switch author email to GitHub noreply format
  • commit and push an empty commit
  • curl the production domain and grep the content

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.