Speedy
Official SprintForge Deployment Protocol

Google Antigravity (AGY) SDK & Agent Mesh Setup Guide

This document outlines the step-by-step procedure for initializing the Google Antigravity SDK, configuring the multi-agent mesh (Speedy, Hermes Dev, and Stripe MCP), and binding custom webhook triggers.

1

Initialize Google Antigravity SDK Environment

Ensure Python 3.10+ and Node.js 18+ are active on your workstation, then execute the global SDK installation command:

pip install google-antigravity-sdk --upgrade
# Verify SDK License Key Registration:
export GOOGLE_ANTIGRAVITY_API_KEY="AIzaSyA3hd4AddAE6k0Zc3BW5elogSdl8N9PjCM"
2

Deploy Multi-Agent Mesh Architecture

The SprintForge architecture utilizes 3 specialized autonomous agents operating inside an Antigravity Mesh:

1. SPEEDY AGENT

Host & Onboarding

Manages front-line user chat, lead capture, and exit-intent recovery triggers.

2. HERMES AGENT

Dev & Technical Builder

Executes automated code generation, webhooks, and cPanel deployments.

3. STRIPE MCP AGENT

Billing & Cart Recovery

Handles subscriptions, 72h cart resets, and affiliate revenue webhooks.

// speedy-mesh-config.json
{
  "agent_id": "sprintforge_avatar_001",
  "name": "Speedy",
  "routing_table": {
    "technical_support": "hermes_dev_agent",
    "billing_inquiries": "stripe_mcp_agent",
    "sales_retainers": "vsl_conversion_engine"
  }
}
payments STRIPE MCP (MODEL CONTEXT PROTOCOL) SETUP INSTRUCTIONS:

Configure the Stripe MCP Server inside your Antigravity config (`mcp_config.json`) to automate subscriptions, refund checks, and affiliate revenue webhooks:

{
  "mcpServers": {
    "stripe": {
      "command": "npx",
      "args": ["-y", "@stripe/mcp-server-stripe"],
      "env": {
        "STRIPE_SECRET_KEY": "sk_test_51P..."
      }
    }
  }
}
3

Bind Webhook Listeners & System Activation

Include the core SprintForge client library inside your web pages to activate lead capturing and exit-intent tracking:

<script src="https://sprintforge.online/sprintforge-auth.js"></script>
Legal & Entity Registration Reminder: Creating a legal business entity (e.g. LLC registration or state filing via LegalZoom) is a separate cost from SprintForge software tools.