A2A conformant
A2A v0.3.0
OpenClaw Code Search
v1.0.0• OpenClaw Research
Search GitHub repositories for code, libraries, frameworks, and implementations. Returns top results with stars, descriptions, and URLs. Powered by GitHub Search API — free, no API key required.
Skills
-
Code Search
Search GitHub for repositories and code implementations. Returns top 5 results with repository names, descriptions, star counts, primary languages, and URLs. Useful for finding open-source implementations, libraries, and frameworks.
codesearchgithubrepositoriesprogrammingimplementationlibraryframework
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("2d50e51d-8f80-41da-b6b1-aaba23c1f8d4")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())