gitscape.ai: Skill for Claude Code

.agents/skills/shipping-and-launch/SKILL.md

shipping-and-launch is a skill for Claude Code, Codex from jmxt3/gitscape.ai. It costs 45 tokens per session (1,360 once invoked), scanned A, original, Apache-2.0.

A checklist and process for putting software into production, the environment real users use. It covers checking the code, protecting secrets, monitoring the service, rolling out changes carefully, and preparing to undo a bad release.

In plain words
What is it for?
Use it before production deployments, user-facing changes, environment-variable or secret updates, new API endpoints, and endpoint removals.
Why use it?
It reduces the chance that a deployment causes an outage, exposes credentials, or leaves the team unsure how to recover.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is jmxt3/gitscape.ai's own configuration. It tells Claude Code and Codex how to work on gitscape.ai itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything gitscape.ai configures →

Reuse

Borrowing it

Nothing to install: this file belongs to jmxt3/gitscape.ai. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/jmxt3/gitscape.ai/main/.agents/skills/shipping-and-launch/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/jmxt3/gitscape.ai

Made for: Claude Code, Codex.

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 shipping-and-launch

README.md
[![agentmods](https://agentmods.dev/badge/skills/jmxt3/gitscape.ai/shipping-and-launch/github.svg)](https://agentmods.dev/skills/jmxt3/gitscape.ai/shipping-and-launch)
Your own site
<a href="https://agentmods.dev/skills/jmxt3/gitscape.ai/shipping-and-launch"><img src="https://agentmods.dev/badge/skills/jmxt3/gitscape.ai/shipping-and-launch/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for shipping-and-launch

Your own site · 80×15
<a href="https://agentmods.dev/skills/jmxt3/gitscape.ai/shipping-and-launch"><img src="https://agentmods.dev/badge/skills/jmxt3/gitscape.ai/shipping-and-launch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,360 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00045 $0.01360
Opus 5 $0.00023 $0.00680
Sonnet 5 $0.00009 $0.00272
Haiku 4.5 $0.00005 $0.00136

Measured 11d ago against content hash 4983d02807fc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

shipping-and-launch scanned grade A with 1 finding 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 11d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl https://api.gitscape.app/health
.agents/skills/shipping-and-launch/SKILL.md · 167 lines

How it starts

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

Shipping and Launch

Overview

Every production deploy is a risk management exercise. Move fast by being deliberate: know what you're deploying, have a rollback plan, verify the system is healthy after deploy, and keep the blast radius small. The fastest way to ship is to have a clean rollback when things go wrong — not to avoid deploying.

When to Use

  • Before any deployment to the Cloud Run production environment
  • When deploying a feature that changes user-facing behavior
  • When updating environment variables or secrets in GCP
  • When rolling out a new API endpoint or removing an old one

Pre-Deploy Checklist

Run this before triggering any Cloud Build deploy:

Code Quality

  • All tests pass locally: pytest tests/ -v
  • No linting errors: ruff check api/
  • TypeScript compiles: npx tsc --noEmit (in web/)
  • No TODO: before deploy comments remaining

Security

  • No secrets committed to git: git log --oneline -5 — check commit messages
  • New environment variables are in GCP Secret Manager, not in cloudbuild.yaml as plaintext
  • .env.example updated if new variables are required

Observability

  • New endpoints have structured logging (start/complete/error)
  • New endpoints log request_id for correlation

Documentation

  • README.md updated if user-visible behavior changed
  • New environment variables documented in .env.example
  • ADR created if an architectural decision was made

Rollback Readiness

  • Know the previous working Cloud Run revision: gcloud run revisions list
  • Know the rollback command (see below)

Rollback Procedure

GitScape deploys to Cloud Run. Rolling back is instant:

# List revisions (most recent first)
gcloud run revisions list \
  --service=gitscape-api \
  --region=us-central1 \
  --format="table(name,status.conditions[0].status,spec.containerConcurrency,metadata.creationTimestamp)"

# Rollback: send 100% traffic to the previous revision
gcloud run services update-traffic gitscape-api \
  --to-revisions=PREVIOUS_REVISION_NAME=100 \
  --region=us-central1

Read the full file on GitHub · 167 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. 11d ago First seen · 167 lines · 45 tokens per session scan A 4983d02807fc

Subscribe to this mod's changes

shipping-and-launch is a skill published in the GitHub repository jmxt3/gitscape.ai (33 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 45 tokens to every session and 1,360 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

dokploy-deploy

This skill should be used when user asks to "deploy with Dokploy", "use Dokploy Cloud", "manage self-hosted Dokploy", "deploy Docker Compose on Dokploy", "manage Dokploy databases", "configure Dokploy domains", or "look up Dokploy CLI commands".

fcakyon/claude-codex-settings · 63 tokens

gcloud-usage

This skill should be used when user asks about "GCloud logs", "Cloud Logging queries", "Google Cloud metrics", "GCP observability", "trace analysis", or "debugging production issues on GCP".

fcakyon/claude-codex-settings · 49 tokens

ultralytics-platform

This skill should be used when user asks to "upload my model to Ultralytics Platform", "push this run to the platform", "upload a dataset to platform", "download a dataset from platform", "search platform datasets", "start cloud training", "train on platform GPUs", "export a model on platform", "deploy a model…

fcakyon/claude-codex-settings · 112 tokens

openship-config

This skill should be used when the user asks to "create openship.json", "configure an OpenShip deployment", "make a repo deployable on OpenShip", or fix "openship config validate" errors.

fcakyon/claude-codex-settings · 47 tokens

wrangler

Run or troubleshoot Wrangler CLI commands and configure Worker projects for local development, deployment, and Cloudflare resource management.

fcakyon/claude-codex-settings · 25 tokens

workers-best-practices

Cloudflare Workers best practices for production applications. Use when writing, reviewing, or configuring Workers.

fcakyon/claude-codex-settings · 25 tokens