agentsclimarketplace

Pre deploy check

Skill feel-flow/agent-skills-examples/task/pre-deploy-check

『Agent Skills 実践ガイド』サンプルスキル集 — コピペで使えるSKILL.md 10種

Install
npx -y skills add feel-flow/agent-skills-examples --skill pre-deploy-check

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

デプロイ前の必須チェックを実行する。ブランチ確認、テスト実行、ビルド確認を行う。

SKILL.md

1.1 KB, as published. Nobody here has run it

デプロイ前チェック

実行手順

  1. 現在のブランチが main または production であることを確認する
  2. 未コミットの変更がないことを確認する
  3. テストがすべて通過することを確認する
  4. ビルドが成功することを確認する

チェックリスト

  • ブランチは正しいか
  • 未コミット変更はないか
  • 全テスト成功か
  • ビルド成功か

中断条件

以下のいずれかに該当する場合、デプロイを中断して報告する:

  • ブランチが main でない
  • 未コミット変更がある
  • テストが失敗している
  • ビルドエラーが発生している

出力形式

{
  "status": "success|failure",
  "checks": {
    "branch": true,
    "uncommitted_changes": false,
    "tests_passed": true,
    "build_success": true
  },
  "message": "チェック結果のサマリー"
}

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.