一键导入
deploy
Deploy Parf Edhellen to production by merging master into the prod branch and compiling assets. Runs from the repo root (one level above src/).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Deploy Parf Edhellen to production by merging master into the prod branch and compiling assets. Runs from the repo root (one level above src/).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Run TypeScript type checking and ESLint on the frontend codebase. Lighter than /verify — JS/TS only, no PHP tests or static analysis.
Format all PHP files in the project with Laravel Pint in one pass. The format-on-save hook handles individual files automatically — use this skill when you want to reformat the entire codebase at once (e.g. after a merge or bulk change).
Run the full verification suite for this project (PHP tests, static analysis, TypeScript check, ESLint). Use before marking a task done or before committing.
基于 SOC 职业分类
| name | deploy |
| description | Deploy Parf Edhellen to production by merging master into the prod branch and compiling assets. Runs from the repo root (one level above src/). |
| disable-model-invocation | true |
Run these two scripts from the repo root (../ relative to src/):
Step 1 — Merge master into prod branch:
cd .. && ./merge-prod.sh
This checks out master, pushes it, then merges into parf-edhellen-prod-v2 and pushes that branch.
Step 2 — Compile and verify:
./compile-prod.sh
This runs phpstan + PHP tests on master, switches to the prod branch, runs tests again, then builds production assets (npm run production), and returns to master.
Both scripts must complete without errors for a successful deploy.