agent-factory: generate agent auto-deploy-application-to-developm
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 AutoDeployApplicationToDevelopm.
|
||||
"""
|
||||
from a2a.types import AgentSkill
|
||||
|
||||
|
||||
AUTO_DEPLOY_APPLICATION_TO_DEVELOPM_SKILLS = [
|
||||
AgentSkill(
|
||||
id="auto_deploy_application_to_developm_skill",
|
||||
name="AutoDeployApplicationToDevelopm",
|
||||
description="Deploy application to development environment",
|
||||
tags=["auto-generated"],
|
||||
examples=[],
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
AGENT_CONFIG = {
|
||||
"name": "AutoDeployApplicationToDevelopm",
|
||||
"description": "Deploy claims-api to development environment with Postgres database.",
|
||||
"version": "1.0.0",
|
||||
"framework": "LangGraph + Starlette",
|
||||
"capabilities": {
|
||||
"streaming": False,
|
||||
"async": True,
|
||||
},
|
||||
"input_schema": {"ci_pipeline_config_path": "string", "postgres_version": "string"},
|
||||
"output_schema": {"deployment_status": "string", "deployment_url": "string"},
|
||||
}
|
||||
Reference in New Issue
Block a user