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.zipInstalls 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 ScriptKey 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
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
500or404errors from the GAS endpoint.
Step 1: Verify Secrets
The connection relies on GAS_WEB_APP_URL and GAS_API_KEY.
- Action: Ask user to check Wix Secrets Manager.
- Check: Does
GAS_WEB_APP_URLend in/exec? (Common fatal error: ending in/edit)
Step 2: Live Log Trace
Run this trace to see where the packet drops.
- Frontend: Console > "Submitting form..."
- Backend:
intakeQueue.jsw> "Sending to GAS..." - GAS Side: View Stackdriver Logs (Executions). Do you see a
POSTrequest?
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
POSTwithapplication/x-www-form-urlencodedorJSONproperly 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.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| Wix-GAS Bridge Integrity Check (this skill) | 0 | 6mo | No flags | Intermediate |
| fastapi-templates | 520 | 2mo | No flags | Intermediate |
| android-kotlin-development | 268 | 5mo | Review | Advanced |
| fastapi-pro | 79 | 4mo | No flags | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by Shamrock2245
View all by Shamrock2245 →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.
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.
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.
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.
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.
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.