MCP.so
ログイン
DevOpsinterval

Deploy Verification Loop

On an interval, hit health and smoke endpoints after a deploy until all checks return healthy responses.

起動プロンプト

/loop 15m Start the "Deploy Verification Loop".

Goal: all post-deploy health and smoke endpoints return success.
Max iterations: 8.
Between iterations run: curl -fsS <your-health-url>
Exit when: every configured endpoint succeeds.

Step 1: Hit health/smoke URLs. If any fail, inspect deploy logs and fix or escalate.

基本情報

カテゴリ

DevOps

目標

all post-deploy health and smoke endpoints return success.

最大反復回数

8

検査コマンド

curl -fsS <your-health-url>

退出条件

every configured endpoint succeeds.

対応エージェント

Codex, Cursor

手順

  1. 1

    Check health endpoints

    Curl configured health/smoke URLs. Record status codes and response bodies.

    curl -fsS https://your-app.example/health
  2. 2

    Investigate failures

    If any endpoint fails, check recent deploy logs, env vars, and migrations. Apply the smallest fix.

  3. 3

    Re-verify

    Re-run health checks after fixes or rollback decision.

他のDevOpsのループ