Non-standardA2A v1.0
Skowron Compliance Gateway
v1.0.0•Matthew Skowron
Compliance checks for agents before they onboard, pay, or transact. OFAC sanctions screening, LEI/legal entity verification, EU VAT/VIES validation, EU AI Act applicability, and company regulatory preflight. Informational screening, not legal advice.
Skills
Verify Legal Entity
LEI lookup and legal entity verification against GLEIF.
leilegal-entity-verificationcounterparty-screeningOFAC Sanctions Screen
OFAC sanctions screening / AML name screen. Potential-match only, not a legal clearance.
ofacsanctions-screeningamlValidate EU VAT
EU VAT validation via official VIES.
vat-validationviesEU AI Act Applicability
EU AI Act applicability screen from official sources. Not legal advice.
eu-ai-actai-act-applicabilityCompany Compliance Preflight
Company regulatory applicability / compliance preflight. Informational screening.
company-complianceregulatory-applicabilitykyc-compliance
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("cb762888-326b-4a21-b155-553cd598a32f")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())