37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
"""AgentCard + skill declarations for GCP Solution Architecture Agent."""
|
|
|
|
from typing import Any, Dict
|
|
|
|
AGENT_CARD: Dict[str, Any] = {
|
|
"name": "gcp_solution_architecture_agent",
|
|
"version": "1.0.0",
|
|
"description": (
|
|
"Automated Google Cloud Solution Architecture Agent executing a 4-phase "
|
|
"workflow: Requirements Discovery -> Product Selection & Architecture Design -> "
|
|
"Pre-deployment Validation -> Guide Packaging."
|
|
),
|
|
"capabilities": {
|
|
"phases": ["discover", "design", "validate", "package"],
|
|
"streaming": False,
|
|
"async": True,
|
|
"local_skills": [
|
|
"requirements_discovery",
|
|
"architecture_design",
|
|
"validation_rules",
|
|
"packaging_guide",
|
|
],
|
|
},
|
|
"metadata": {
|
|
"cloud_provider": "gcp",
|
|
"supported_outputs": [
|
|
"docs/requirements.md",
|
|
"docs/architecture.md",
|
|
"architecture.mmd",
|
|
"terraform/main.tf",
|
|
"validation-results.md",
|
|
"solution-architecture-guide.md",
|
|
],
|
|
},
|
|
}
|
|
|