check-deployment-status

Check deployment status of PRs and commits using continuous-deployment MCP and UCS deployer MCP. Use when user asks "is this deployed", "check deployment", "deployment status", "is PR merged and deployed", "check UP status", "introduced to production", or provides a GitHub PR URL and wants deployment info.

3,891 stars

Best use case

check-deployment-status is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Check deployment status of PRs and commits using continuous-deployment MCP and UCS deployer MCP. Use when user asks "is this deployed", "check deployment", "deployment status", "is PR merged and deployed", "check UP status", "introduced to production", or provides a GitHub PR URL and wants deployment info.

Teams using check-deployment-status should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/check-deployment-status/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/ajitsingh25/check-deployment-status/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/check-deployment-status/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How check-deployment-status Compares

Feature / Agentcheck-deployment-statusStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Check deployment status of PRs and commits using continuous-deployment MCP and UCS deployer MCP. Use when user asks "is this deployed", "check deployment", "deployment status", "is PR merged and deployed", "check UP status", "introduced to production", or provides a GitHub PR URL and wants deployment info.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Check Deployment Status

Check whether a PR/commit is deployed to staging and production using the continuous-deployment MCP tools.

## Usage

```bash
/check-deployment-status <PR-URL>           # Check deployment of a GitHub PR
/check-deployment-status <commit-hash>      # Check deployment of a specific commit
/check-deployment-status <service-name>     # List recent commits and their deployment status
```

## Key Concepts

### PR Head Commit != Merge Commit

When a PR is merged via SubmitQueue, the merge commit on main is DIFFERENT from the PR's head commit. The continuous-deployment system tracks the merge commit, not the PR head.

**Workflow:**
1. Get PR metadata → extract head SHA
2. Use `findServiceCommits` with search text to find the actual merge commit on main
3. Use `getCommitDeploymentStatus` with the merge commit hash

### UP Deployment Stages

| Stage | Meaning |
|-------|---------|
| Build created | Binary built from commit |
| Deployed to staging | Running on staging instances |
| Soaked | Staging soak period passed |
| Waited for deployment window | Outside deploy freeze windows |
| **Introduced to production** | **Fully deployed to production** — code is live |

**"Introduced to production" = fully deployed.** Not partial, not in-progress. The commit is running on all production instances.

### Deployment Status Values

| Status | Meaning |
|--------|---------|
| `DEPLOYMENT_STATUS_DEPLOYED` | Commit is running in this environment |
| `DEPLOYMENT_STATUS_DEPLOYING` | Deployment in progress |
| (empty) | Not deployed to this environment |

## Step-by-Step Workflow

### Step 1: Get PR Metadata

Use `mcp__code-mcp__get_github_pull_request_metadata`:
```
org: uber-code
repo: go-code
number: <PR number>
```

Extract: title, head SHA, merged status, base branch.

### Step 2: Find Merge Commit

The PR head SHA won't be found in deployment system. Search for the merge commit:

Use `mcp__continuous-deployment__continuousdeployment_findservicecommits`:
```
service_name: <service-name>
filter: { search_text: "<keyword from PR title>", commited_after: "2026-02-25T00:00:00Z" }
offset: 0
limit: 5
```

The result includes the merge commit hash, serial number, and code review metadata linking back to the PR.

### Step 3: Check Deployment Status

Use `mcp__continuous-deployment__continuousdeployment_getcommitdeploymentstatus`:
```
hash: <merge-commit-hash>
repository: gitolite@code.uber.internal:go-code
options: { scope: "SCOPE_ALL_SERVICES" }
```

Returns deployment status per service per environment (staging, production, bits-test-sandbox).

## MCP Tools Reference

### continuous-deployment MCP

| Tool | Purpose |
|------|---------|
| `findServiceCommits` | Search commits by service name, author, text, date range |
| `getCommitDeploymentStatus` | Get deployment status of a commit across all environments |
| `listServiceCommits` | List recent commits for a service (with serial-based pagination) |
| `getCommitsInDeployment` | List commits in a specific deployment task |
| `listCommitSegments` | Get deployment segments for a service |
| `getConfigForService` | Get continuous deployment config for a service |

### code-mcp

| Tool | Purpose |
|------|---------|
| `get_github_pull_request_metadata` | PR status, author, labels, SubmitQueue status |
| `get_github_pull_request_diff` | PR diff content |
| `get_github_pull_request_comments` | PR comments |

### UCS deployer MCP

| Tool | Purpose |
|------|---------|
| `ucsdeployer_status` | Rollout status for a specific deployment object |
| `deploystatemanager_read` | Read deploy state |

### Service-Name Only Mode

If only a service name is provided (no PR/commit):

Use `mcp__continuous-deployment__continuousdeployment_listservicecommits`:
```
service_name: <service-name>
offset: 0
limit: 5
```

Then check deployment status for each returned commit using Step 3.

## Common Patterns

### Stacked PRs

For stacked PRs, each PR may affect different services. Check deployment per-service:
- PRs changing `marketing-recommendations/` → check `marketing-recommendations` service
- PRs changing `ads-insights/` → check `ads-insights` service

### Repository URI

For go-code monorepo, always use: `gitolite@code.uber.internal:go-code`

Related Skills

botlearn-healthcheck

3891
from openclaw/skills

botlearn-healthcheck — BotLearn autonomous health inspector for OpenClaw instances across 5 domains (hardware, config, security, skills, autonomy); triggers on system check, health report, diagnostics, or scheduled heartbeat inspection.

DevOps & Infrastructure

time-checker

3891
from openclaw/skills

Check accurate current time, date, and timezone information for any location worldwide using time.is. Use when the user asks "what time is it in X", "current time in Y", or needs to verify timezone offsets.

General Utilities

hna-666-flight-checker

3891
from openclaw/skills

查询海南航空 666Plus 权益可往返航班,自动遍历指定目的地

SKILL: stock-checker

3891
from openclaw/skills

## Description

double-check

3891
from openclaw/skills

在修改任何文件后(包括删除功能),自动进行两次独立验证(测试/编译/运行检查/文档或配置检查),确保无误才结束。本技能应默认应用于所有文件修改任务。 / After any file changes (including feature removal), automatically perform two independent verifications (tests/compilation/runtime checks/docs or config checks) to ensure correctness. This skill should be applied by default to any file modification task.

doctorbot-healthcheck-free

3891
from openclaw/skills

🩺 Free Security & Health Audit. Your OpenClaw deserves a check-up. This skill performs a non-invasive scan to detect security risks, outdated software, and misconfigurations.

truthcheck

3891
from openclaw/skills

Verify claims, fact-check content, check URL trustworthiness, and trace claims to their origin using the TruthCheck CLI. Use when: (1) user asks to fact-check or verify a claim, (2) user wants to check if a URL/source is trustworthy, (3) user wants to trace where a claim originated, (4) user asks about misinformation or content verification. Requires: pip install truthcheck

assignment-check

3891
from openclaw/skills

Check use's assignment folder and extracts and read uses assignment question files and tell user the deadline and how long approximately to finish them.

health-check

3891
from openclaw/skills

每日安全检查。检查 OpenClaw Gateway、磁盘空间、内存使用等系统健康状态。触发时机:cron 定时任务或手动调用。

checksum

3891
from openclaw/skills

A CLI utility for generating and verifying cryptographic file checksums (MD5, SHA1, SHA256). Supports recursive directory hashing and verification from file.

minimax-plan-checker

3891
from openclaw/skills

获取 MiniMax 平台的套餐信息,包括套餐名称、额度、当前使用情况。当用户询问 MiniMax 套餐、额度使用情况、API 调用量、计费信息时使用此技能。

founderclaw-status

3891
from openclaw/skills

Check FounderClaw installation status. Verifies skills, workspace, and multi-agent config are all properly set up. Use when: "founderclaw status", "is founderclaw working", "check founderclaw", "founderclaw health".