agent-factory: generate agent auto-retrieve-repository-source-cod
This commit is contained in:
29
app/skills.py
Normal file
29
app/skills.py
Normal file
@@ -0,0 +1,29 @@
|
||||
"""
|
||||
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"},
|
||||
}
|
||||
Reference in New Issue
Block a user