agent-factory: generate agent auto-retrieveapplicationdefinitio

This commit is contained in:
2026-08-14 19:15:35 +00:00
parent 8514f53210
commit a5350960ac
19 changed files with 571 additions and 0 deletions

29
app/skills.py Normal file
View File

@@ -0,0 +1,29 @@
"""
A2A skill declarations for AutoRetrieveapplicationdefinitio.
"""
from a2a.types import AgentSkill
AUTO_RETRIEVEAPPLICATIONDEFINITIO_SKILLS = [
AgentSkill(
id="auto_retrieveapplicationdefinitio_skill",
name="AutoRetrieveapplicationdefinitio",
description="retrieve_application_definition",
tags=["auto-generated"],
examples=[],
),
]
AGENT_CONFIG = {
"name": "AutoRetrieveapplicationdefinitio",
"description": "Extract the application definition for the payments-api from the repository",
"version": "1.0.0",
"framework": "LangGraph + Starlette",
"capabilities": {
"streaming": False,
"async": True,
},
"input_schema": {"repository_url": "string"},
"output_schema": {"application_definition": "object"},
}