Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Specialized skill for building production-ready serverless applications on GCP. Covers Cloud Run services (containerized), Cloud Run Functions (event-driven), cold start optimization, and event-driven architecture with Pub/Sub.
.claude/skills/gcp-cloud-run/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-06 | ✗→✓ | ▲ Improved | 602% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 1742% | 0% |
| case-19 | ✗→✓ | ▲ Improved | 631% | 0% |
| case-20 | ✓→✓ | = Same ✓ | 642% | 0% |
| case-01 | ✓→✓ | = Same ✓ | 337% | 0% |
Specialized skill for building production-ready serverless applications on GCP. Covers Cloud Run services (containerized), Cloud Run Functions (event-driven), cold start optimization, and event-driven architecture with Pub/Sub.
Read the detailed guide before executing this skill. It retains the complete procedure and reference material. Treat its safety, prerequisites, and validation requirements as mandatory. For focused work, load the relevant sections; for end-to-end work, read the guide completely.
yaml# cloudbuild.yaml steps: - name: 'gcr.io/cloud-builders/gcloud' args: - 'run' - 'deploy' - 'my-service' - '--memory=1Gi' # Include /tmp overhead - '--image=gcr.io/$PROJECT_ID/my-service'
pythonimport psutil import logging def log_memory(): memory = psutil.virtual_memory() logging.info(f"Memory: {memory.percent}% used, " f"{memory.available / 1024 / 1024:.0f}MB available")
Severity: HIGH
Situation: Setting concurrency to 1 for request isolation
Symptoms: Auto-scaling creates many container instances. High latency during traffic spikes. Increased cold starts. Higher costs from more instances.
Why this breaks: Setting concurrency to 1 means each container handles only one request at a time. During traffic spikes:
This should only be used when:
Recommended fix:
Use this skill when the request clearly matches the capabilities and patterns described above.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-20 | pass→pass | 7,149 | 7,819 | +9% | 1 | 1 | 0% | 1,407 | 10,439 | +642% | 0 | 0 | — |
case-01 | pass→pass | 13,231 | 10,664 | -19% | 1 | 1 | 0% | 2,518 | 10,995 | +337% | 0 | 0 | — |
case-02 | pass→pass | 8,757 | 7,805 | -11% | 1 | 1 | 0% | 1,473 | 10,355 | +603% | 0 | 0 | — |
case-03 | pass→pass | 7,839 | 5,707 | -27% | 1 | 1 | 0% | 1,663 | 10,113 | +508% | 0 | 0 | — |
case-04 | pass→pass | 22,227 | 11,204 | -50% | 1 | 1 | 0% | 2,992 | 11,245 | +276% | 0 | 0 | — |
case-05 | pass→pass | 10,107 | 6,085 | -40% | 1 | 1 | 0% | 1,751 | 9,937 | +468% | 0 | 0 | — |
case-06 | fail→pass | 7,811 | 5,030 | -36% | 1 | 1 | 0% | 1,397 | 9,809 | +602% | 0 | 0 | — |
case-07 | pass→pass | 14,815 | 9,956 | -33% | 1 | 1 | 0% | 2,858 | 10,885 | +281% | 0 | 0 | — |
case-08 | pass→pass | 17,139 | 10,525 | -39% | 1 | 1 | 0% | 3,101 | 10,916 | +252% | 0 | 0 | — |
case-09 | pass→pass | 13,232 | 8,956 | -32% | 1 | 1 | 0% | 2,598 | 10,622 | +309% | 0 | 0 | — |
case-10 | fail→pass | 2,921 | 3,440 | +18% | 1 | 1 | 0% | 522 | 9,616 | +1742% | 0 | 0 | — |
case-11 | pass→pass | 3,390 | 3,152 | -7% | 1 | 1 | 0% | 677 | 9,510 | +1305% | 0 | 0 | — |
case-12 | pass→pass | 7,314 | 6,850 | -6% | 1 | 1 | 0% | 1,321 | 10,164 | +669% | 0 | 0 | — |
case-13 | pass→pass | 2,976 | 4,492 | +51% | 1 | 1 | 0% | 583 | 9,695 | +1563% | 0 | 0 | — |
case-14 | pass→pass | 3,529 | 3,050 | -14% | 1 | 1 | 0% | 611 | 9,447 | +1446% | 0 | 0 | — |
case-15 | pass→pass | 11,922 | 27,377 | +130% | 1 | 1 | 0% | 2,398 | 10,676 | +345% | 0 | 0 | — |
case-16 | pass→pass | 11,253 | 9,219 | -18% | 1 | 1 | 0% | 1,998 | 10,509 | +426% | 0 | 0 | — |
case-17 | pass→pass | 11,123 | 6,970 | -37% | 1 | 1 | 0% | 2,182 | 10,269 | +371% | 0 | 0 | — |
case-18 | pass→pass | 10,140 | 10,845 | +7% | 1 | 1 | 0% | 1,900 | 10,803 | +469% | 0 | 0 | — |
case-19 | fail→pass | 6,381 | 4,146 | -35% | 1 | 1 | 0% | 1,339 | 9,784 | +631% | 0 | 0 | — |
case-21 | pass→pass | 4,651 | 24,753 | +432% | 1 | 1 | 0% | 999 | 9,830 | +884% | 0 | 0 | — |
case-22 | pass→pass | 10,814 | 8,109 | -25% | 1 | 1 | 0% | 2,037 | 10,376 | +409% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +14 percentage points is the difference between those two pass rates over the 22 comparable cases.
The publisher has shipped newer versions since this run, so these numbers describe v2, not the version currently listed.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
| Model | Method | Date | Lift |
|---|---|---|---|
| gemini-3.6-flash | verified | 7/28/2026 | +18% |
Other measured skills in the registry, with their headline benchmark lift.