ci-status

ci-status is a command for Claude Code from vishnu2kmohan/mcp-server-langgraph. It costs 10 tokens per session (3,049 once invoked), scanned A, original, MIT.

A command that reports the status of GitHub Actions, GitHub's service for automatically building and testing code. It shows current and recent workflow runs.

In plain words
What is it for?
Use it to check the workflows for the current branch, inspect recent results, find failing jobs, and open detailed logs. It requires the GitHub CLI to be installed and authenticated.
Why use it?
It saves you from opening individual workflow pages to find failed jobs, steps, timing, and logs.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/vishnu2kmohan/mcp-server-langgraph/ci-status
Clone the repo
git clone --depth 1 https://github.com/vishnu2kmohan/mcp-server-langgraph

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ci-status

README.md
[![agentmods](https://agentmods.dev/badge/commands/vishnu2kmohan/mcp-server-langgraph/ci-status.svg)](https://agentmods.dev/commands/vishnu2kmohan/mcp-server-langgraph/ci-status)
Your own site
<a href="https://agentmods.dev/commands/vishnu2kmohan/mcp-server-langgraph/ci-status"><img src="https://agentmods.dev/badge/commands/vishnu2kmohan/mcp-server-langgraph/ci-status.svg" alt="Measured on agentmods" height="20"></a>
Per session 10 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,049 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00010 $0.03049
Opus 5 $0.00005 $0.01524
Sonnet 5 $0.00002 $0.00610
Haiku 4.5 $0.00001 $0.00305

Measured 4d ago against content hash 22f9e2097886, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ci-status scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/commands/ci-status.md · 498 lines

How it starts

The opening of the file, as written. The whole thing — 498 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CI/CD Status

Usage: /ci-status or /ci-status --workflow <name>

Purpose: Real-time GitHub Actions workflow status and recent runs


🔄 What This Command Does

Displays current CI/CD pipeline status using GitHub CLI:

  1. Shows workflow run status for current branch
  2. Lists recent workflow runs with results
  3. Displays failing jobs and steps
  4. Shows run duration and timing
  5. Provides links to detailed logs

📊 Workflow Status Display

Step 1: Check GitHub CLI

Verify gh CLI is installed and authenticated:

# Check if gh is installed
if ! command -v gh &> /dev/null; then
    echo "❌ GitHub CLI not installed"
    echo "Install: https://cli.github.com/"
    exit 1
fi

# Check authentication
if ! gh auth status &> /dev/null; then
    echo "❌ Not authenticated with GitHub"
    echo "Run: gh auth login"
    exit 1
fi

echo "✅ GitHub CLI ready"

Step 2: Get Current Branch

Determine which branch to check:

# Get current branch
CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
echo "Current branch: $CURRENT_BRANCH"

# Get latest commit
LATEST_COMMIT=$(git rev-parse --short HEAD)
echo "Latest commit: $LATEST_COMMIT"

Step 3: Fetch Workflow Runs

Get recent workflow runs for current branch:

# List recent workflow runs
gh run list \
  --branch "$CURRENT_BRANCH" \
  --limit 5 \
  --json databaseId,displayTitle,name,status,conclusion,createdAt,updatedAt,url

# Alternative: Get runs for specific commit
gh run list \
  --commit "$LATEST_COMMIT" \
  --json databaseId,displayTitle,name,status,conclusion,url

Step 4: Parse Workflow Status

Extract and format workflow information:

# Parse JSON output
gh run list --branch "$CURRENT_BRANCH" --limit 5 --json name,status,conclusion,createdAt,url | \
jq -r '.[] | "\(.name)\t\(.status)\t\(.conclusion // "N/A")\t\(.createdAt)\t\(.url)"' | \
while IFS=$'\t' read -r name status conclusion created url; do
    # Format status with emoji
    case "$conclusion" in
        success)   icon="✅" ;;
        failure)   icon="❌" ;;
        cancelled) icon="🚫" ;;
        skipped)   icon="⏭️ " ;;
        *)         icon="🔄" ;;
    esac

    # Format timestamp
    time_ago=$(date -d "$created" +'%Y-%m-%d %H:%M')

    echo "$icon $name | $status | $time_ago"
    echo "   $url"
done

Read the full file on GitHub · 498 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 498 lines · 10 tokens per session scan A 22f9e2097886

Subscribe to this mod's changes

ci-status is a command published in the GitHub repository vishnu2kmohan/mcp-server-langgraph (4 stars, last pushed 11d ago), licensed MIT. It adds 10 tokens to every session and 3,049 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.