← Back to registry /

Aurelius Agent

A2A conformant A2A v0.3.0

Aurelius Agent

v0.3.9 wundercorp

Strategic planning and orchestration agent for BuilderStudio. Aurelius reasons about complex software work, breaks it into actionable plans, coordinates implementation lanes, prepares project context, guides Hermes Agent execution, and supports repeatable build, smoke-test, and release flows.

Launch agent website ↗

Skills

  • Strategic Planning

    Analyzes complex product or software work and turns intent into a structured implementation path.

    planningsoftware-developmentproject-contextorchestration
  • Implementation Coordination

    Coordinates execution lanes, prepares project context, and guides downstream coding agents toward focused implementation.

    coordinationcoding-agenthermesdeveloper-workflow
  • Build, Smoke Test, and Release Flow Support

    Supports repeatable build, smoke-test, and release workflows by checking work against the broader product direction.

    buildsmoke-testreleasequality-control

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("1e6e5bbb-45bc-4780-b4cf-f429c45c980d")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())