← Back to registry/

Skowron Compliance Gateway

Non-standardA2A v1.0

Skowron Compliance Gateway

v1.0.0Matthew 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.

Launch agent website ↗

Skills

  • Verify Legal Entity

    LEI lookup and legal entity verification against GLEIF.

    leilegal-entity-verificationcounterparty-screening
  • OFAC Sanctions Screen

    OFAC sanctions screening / AML name screen. Potential-match only, not a legal clearance.

    ofacsanctions-screeningaml
  • Validate EU VAT

    EU VAT validation via official VIES.

    vat-validationvies
  • EU AI Act Applicability

    EU AI Act applicability screen from official sources. Not legal advice.

    eu-ai-actai-act-applicability
  • Company 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())