ワンクリックで
deploy-check
Check Vercel deployment status, compare deployed vs main, and report recent errors. Usage: /deploy-check
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Check Vercel deployment status, compare deployed vs main, and report recent errors. Usage: /deploy-check
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Systematic walkthrough for diagnosing Playwright E2E failures in the Bullhorn repo — production build mismatches, auth gate regressions, navigation races, schema drift, test isolation.
Scan Supabase for tables missing RLS policies. Usage: /audit-rls
Create and apply a database migration. Usage: /db-migrate <migration_name>
Generate Vitest tests for a file following project conventions. Use when asked to create tests for a source file.
Monitor CI status for the current branch, diagnose failures, and summarize results.
Generate a boilerplate API route following project conventions. Usage: /scaffold-api <path> <methods>
| name | deploy-check |
| description | Check Vercel deployment status, compare deployed vs main, and report recent errors. Usage: /deploy-check |
Check the current deployment status for Bullhorn on Vercel.
Get latest deployment — Fetch the most recent deployment from GitHub:
gh api repos/mean-weasel/bullhorn/deployments --jq '.[0] | {id, sha, ref, environment, created_at, description}'
Get deployment status — Check the state of the latest deployment:
gh api repos/mean-weasel/bullhorn/deployments/<id>/statuses --jq '.[0] | {state, description, created_at, target_url}'
Compare deployed vs HEAD — Show what's on main vs what's deployed:
git log --oneline <deployed-sha>..HEAD
If the deployed SHA matches HEAD, report "Production is up to date." If there are commits ahead, list them as "Undeployed changes."
Check recent failed deployments — Look for any failures in the last 5 deployments:
gh api repos/mean-weasel/bullhorn/deployments --jq '.[0:5] | .[] | {sha: .sha[0:7], env: .environment, created: .created_at}'
For each deployment, check its status. Flag any with state failure or error.
Report — Output a summary:
## Deployment Status
**Environment**: production
**State**: [active | pending | failure | error]
**Deployed commit**: [sha] — [commit message]
**Deployed at**: [timestamp]
### Undeployed Changes
[list of commits on main not yet deployed, or "None — production is current"]
### Recent Failures
[list of failed deployments in last 5, or "None"]
gh api for all GitHub API calls (authentication is handled by gh CLI)