WI

Wix-GAS Bridge Integrity Check

Troubleshoots and fixes communication bridges between Wix and Google Apps Script.

Install

mkdir -p .claude/skills/wix-gas-bridge-integrity-check && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15723" && unzip -o skill.zip -d .claude/skills/wix-gas-bridge-integrity-check && rm skill.zip

Installs to .claude/skills/wix-gas-bridge-integrity-check

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Diagnose and repair the connection between Wix Velo and Google Apps Script
74 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Verify `GAS_WEB_APP_URL` and `GAS_API_KEY` in Wix Secrets Manager
  • Trace live logs to identify where data packets drop
  • Simulate a manual push to test connectivity
  • Diagnose and fix redirect loops in Google Apps Script deployment
  • Address CORS errors by adjusting POST request format

How it works

It provides steps to check secret configurations, trace live execution logs, and simulate data pushes to identify and resolve common connectivity problems between Wix Velo and Google Apps Script.

Inputs & outputs

You give it
Wix Velo application and Google Apps Script deployment
You get back
Diagnosis and repair of Wix-GAS bridge connectivity issues

When to use Wix-GAS Bridge Integrity Check

  • Fix missing form submissions in GAS
  • Debug Wix-to-GAS 500 errors
  • Test bridge connectivity with manual triggers

About this skill

Skill: Wix-GAS Bridge Integrity Check

Use this skill when:

  • Submissions are not appearing in GAS.
  • "Success" message appears but no data moves.
  • You receive 500 or 404 errors from the GAS endpoint.

Step 1: Verify Secrets

The connection relies on GAS_WEB_APP_URL and GAS_API_KEY.

  1. Action: Ask user to check Wix Secrets Manager.
  2. Check: Does GAS_WEB_APP_URL end in /exec? (Common fatal error: ending in /edit)

Step 2: Live Log Trace

Run this trace to see where the packet drops.

  1. Frontend: Console > "Submitting form..."
  2. Backend: intakeQueue.jsw > "Sending to GAS..."
  3. GAS Side: View Stackdriver Logs (Executions). Do you see a POST request?

Step 3: The "Push" Simulation

If the bridge is down, force a manual push to test connectivity.

// Run this in a temporary backend file to test connection
import { notifyGASOfNewIntake } from 'backend/gasIntegration';

export async function testBridge() {
    const result = await notifyGASOfNewIntake('TEST-CASE-ID-001');
    console.log(result);
}

Step 4: Common Fixes

  • Redirect Loop: If GAS returns 302, your script is not deployed as "Web App" with "Execute as: Me" and "Who has access: Anyone".
  • CORS Error: GAS does not support CORS preflight. Use POST with application/x-www-form-urlencoded or JSON properly stringified.

Limitations

  • GAS does not support CORS preflight

How it compares

This skill offers specific diagnostic and repair steps for Wix-GAS integration, unlike general debugging methods for web applications.

Compared to similar skills

Wix-GAS Bridge Integrity Check side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
Wix-GAS Bridge Integrity Check (this skill)06moNo flagsIntermediate
fastapi-templates5202moNo flagsIntermediate
android-kotlin-development2685moReviewAdvanced
fastapi-pro794moNo flagsAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

fastapi-templates

wshobson

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

5201,086

android-kotlin-development

aj-geddes

Develop native Android apps with Kotlin. Covers MVVM with Jetpack, Compose for modern UI, Retrofit for API calls, Room for local storage, and navigation architecture.

268679

fastapi-pro

sickn33

Build high-performance async APIs with FastAPI, SQLAlchemy 2.0, and Pydantic V2. Master microservices, WebSockets, and modern Python async patterns. Use PROACTIVELY for FastAPI development, async optimization, or API architecture.

79181

telegram-bot-builder

davila7

Expert in building Telegram bots that solve real problems - from simple automation to complex AI-powered bots. Covers bot architecture, the Telegram Bot API, user experience, monetization strategies, and scaling bots to thousands of users. Use when: telegram bot, bot api, telegram automation, chat bot telegram, tg bot.

106130

telegram-mini-app

davila7

Expert in building Telegram Mini Apps (TWA) - web apps that run inside Telegram with native-like experience. Covers the TON ecosystem, Telegram Web App API, payments, user authentication, and building viral mini apps that monetize. Use when: telegram mini app, TWA, telegram web app, TON app, mini app.

62163

stripe-integration

wshobson

Implement Stripe payment processing for robust, PCI-compliant payment flows including checkout, subscriptions, and webhooks. Use when integrating Stripe payments, building subscription systems, or implementing secure checkout flows.

48165

Search skills

Search the agent skills registry