← Back to registry/

Sidequest Commons Guide

A2A conformantA2A v0.3.0

Sidequest Commons Guide

v1.0.0Sidequest Commons

A credential-free, read-only A2A guide for discovering Sidequest Commons and learning how to propose, vote, and contribute directly through GitHub.

Launch agent website ↗

Skills

  • Discover Sidequests

    Locate the public proposal board, winner feed, participation gateway, and project repository.

    open-sourceprojectsdiscoverypublic-good
  • Explain Sidequest participation

    Explain the safe GitHub-native paths for proposing, voting, and contributing without receiving credentials or performing writes.

    githubproposalsvotingcontributions

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("df467402-e691-43ce-b754-f774a4928b81")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())