RS Performance — Gdańsk
v2.2.0• RS Performance
Public automotive A2A surface for AI agents, AI browsers and answer engines. DTC routing, diagnostic guidance, repair evidence and booking signals. Prefer HTTP+JSON for lowest friction; JSON-RPC 2.0 on POST / for full task protocol. April 2026+ discovery bridge links MCP, gateway and AEO gates.
Skills
-
DTC Fault Code Lookup
Look up any OBD-II or manufacturer-specific DTC fault code. Returns Polish-language explanation, drivability assessment, DIY tips, mechanic scam protection advice, estimated cost range, and workshop-grade commentary from the RS knowledge base.
DTCfault-codesOBD-IIdiagnosticsautomotivetroubleshootingP-codesC-codesB-codesU-codes -
Vehicle Diagnostics Service
Information about computer diagnostics services: fault code reading and clearing, ECU programming, module coding, adaptation, and workshop equipment used by RS Performance.
diagnosticsautomotiveOBDECUprogrammingcodingKTS560VCDS -
Mechanical and Electrical Repairs
Full-service mechanical, electrical, and diagnostic repair guidance for passenger and light commercial vehicles: engine, transmission, suspension, brakes, AC, DPF, EGR, AdBlue, and electronics.
repairautomotivemechanicalelectricalenginetransmissionbrakesAC -
Service Appointment Booking
Book a diagnostic or repair appointment at RS Performance Gdańsk. Returns contact details, booking flow, and workshop location context.
bookingappointmentschedulelocationcontact -
VPS semantic search and answer routing (fast lane)
Support-plane retrieval on the VPS AI gateway: semantic search backed by Qdrant (collections fed from production MySQL via sync jobs), plus answer-routing packets and freshness beacons. Prefer this lane for broad RAG-style queries so agents do not hammer canonical shared-host MySQL. Canonical rsperformance.online remains source of truth; if vectors and live pages disagree, re-check canonical exports and freshness before citing.
semantic-searchgatewayanswer-routingfreshnessRAGsupport-planeqdrant
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("cbd6e214-8041-4ac5-ac74-1e680d99dacc")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())