一键导入
build
Build and verify the web and API. Use when the user says "build", "check build", "verify", or after making code changes to confirm nothing is broken.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build and verify the web and API. Use when the user says "build", "check build", "verify", or after making code changes to confirm nothing is broken.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Commit code changes with conventional commit messages using F1 Prediction project scopes. Use when the user says "commit", "commit this", "save changes", or "/commit". ALWAYS use this skill for commits — never add Co-Authored-By lines.
Run historical F1 data backfill jobs. Use when the user says "backfill", "run backfill", "populate data", or asks to ingest historical race/qualifying data for specific years.
基于 SOC 职业分类
| name | build |
| description | Build and verify the web and API. Use when the user says "build", "check build", "verify", or after making code changes to confirm nothing is broken. |
Verify the web frontend and API compile correctly after changes.
web/)cd /home/glory42/projects/side-projects/F1-prediction/web
bun run build
Success output:
[build] Server built in X.XXs
[build] Complete!
api/)TypeScript type-check only (no build step needed for Workers):
cd /home/glory42/projects/side-projects/F1-prediction/api
bunx tsc --noEmit
Expected pre-existing errors (ignore these):
drizzle.config.ts — process not found (node types missing, not our code)src/db/seed.ts — same# Frontend dev server on :4321
cd web && bun run dev
# API local dev via wrangler
cd api && bun run dev
bun run deploy or wrangler deploy — user pushes to GitHub, Cloudflare deploys automaticallydrizzle.config.ts and seed.ts are pre-existing — only fail on NEW errors in src/modules/ or src/common/If schema changed, push to Neon before building:
cd api
DATABASE_URL=$(cat .env | grep DATABASE_URL | cut -d'=' -f2-) bunx drizzle-kit push