Files

30 lines
777 B
Python

"""
A2A skill declarations for AutoRetrieveRepositorySourceCod.
"""
from a2a.types import AgentSkill
AUTO_RETRIEVE_REPOSITORY_SOURCE_COD_SKILLS = [
AgentSkill(
id="auto_retrieve_repository_source_cod_skill",
name="AutoRetrieveRepositorySourceCod",
description="Retrieve repository source code",
tags=["auto-generated"],
examples=[],
),
]
AGENT_CONFIG = {
"name": "AutoRetrieveRepositorySourceCod",
"description": "Clone the claims-api repository from GitHub.",
"version": "1.0.0",
"framework": "LangGraph + Starlette",
"capabilities": {
"streaming": False,
"async": True,
},
"input_schema": {"repository_url": "string"},
"output_schema": {"local_repository_path": "string"},
}