gcp-live-smoke

Run live GCP/Cloud Run smoke tests on the eval-UI stack with Playwright.

Updated Apr 17, 2026
One-click install
npx skills add https://github.com/rajnishkhatri/AgentsFramework --skill gcp-live-smoke
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: gcp-live-smoke
Source: https://github.com/rajnishkhatri/AgentsFramework/tree/main/.cursor/skills/gcp-live-smoke
Command: npx skills add https://github.com/rajnishkhatri/AgentsFramework --skill gcp-live-smoke

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires playwright, and includes scripts (resource) components.

What problem does it solve?

This Skill provides a live smoke test for GCP/Cloud Run deployments, ensuring the eval-UI stack is functioning correctly and all components are in place.

Core Features & Use Cases

  • Live Smoke Test: Execute a Phase 2 live GCP smoke test for the eval-UI stack.
  • End-to-End Verification: Confirms terminal complete state, tool cards, and reasoning recap.
  • Use Case: Use this whenever you need to verify a GCP/Cloud Run deploy, run the live smoke, check the deployed frontend, or validate the reasoning recap in production.

Quick Start

Run the GCP live smoke test from the repo root:

cd frontend && \
BASE_URL=https://agent-frontend-w65nrxwkiq-uc.a.run.app \
E2E_AUTHENTICATED=1 \
npx playwright test full-stack/reasoning-recap-live.spec.ts \
  --project=chromium-desktop --global-timeout=600000 \
  --reporter=json > recap-live-results.json 2> recap-live-stderr.log

Frequently Asked Questions about gcp-live-smoke

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a smoke test on a GCP Cloud Run deployment to verify the frontend UI?▼

To run a live smoke test on a GCP Cloud Run deployment, execute a Playwright test script against your deployed BASE_URL. This verifies the eval-UI stack's end-to-end functionality, including terminal completion, tool cards, and reasoning recap.

What does an end-to-end deployment verification smoke test check for in a UI stack?▼

An end-to-end deployment verification smoke test checks for terminal complete states, validates tool cards, and confirms the reasoning recap functionality. This ensures all critical frontend UI components are functioning correctly after a GCP Cloud Run deployment.

Do I need Playwright to execute a live smoke test for Cloud Run deployments?▼

Yes, you need Playwright installed to execute a live smoke test for Cloud Run deployments. The Skill requires Playwright for browser automation to validate the deployed eval-UI stack and verify end-to-end functionality in production.

Can I use this smoke test to check the reasoning recap in a production Cloud Run environment?▼

Yes, you can use this smoke test to validate the reasoning recap in a production Cloud Run environment. It performs a live end-to-end verification by running a Playwright test script targeting the reasoning recap functionality with authenticated access.

What environment variables are required to perform an authenticated GCP live smoke test?▼

To perform an authenticated GCP live smoke test, you must set the BASE_URL to your Cloud Run application URL and E2E_AUTHENTICATED to 1. The process also assumes deployment to Cloud Run with WorkOS credentials configured.