Pre deploy check
『Agent Skills 実践ガイド』サンプルスキル集 — コピペで使えるSKILL.md 10種
npx -y skills add feel-flow/agent-skills-examples --skill pre-deploy-checkAssembled 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
デプロイ前の必須チェックを実行する。ブランチ確認、テスト実行、ビルド確認を行う。
SKILL.md
1.1 KB, as published. Nobody here has run it
デプロイ前チェック
実行手順
- 現在のブランチが
mainまたはproductionであることを確認する - 未コミットの変更がないことを確認する
- テストがすべて通過することを確認する
- ビルドが成功することを確認する
チェックリスト
- ブランチは正しいか
- 未コミット変更はないか
- 全テスト成功か
- ビルド成功か
中断条件
以下のいずれかに該当する場合、デプロイを中断して報告する:
- ブランチが
mainでない - 未コミット変更がある
- テストが失敗している
- ビルドエラーが発生している
出力形式
{
"status": "success|failure",
"checks": {
"branch": true,
"uncommitted_changes": false,
"tests_passed": true,
"build_success": true
},
"message": "チェック結果のサマリー"
}