AgentSkillsCN

cloud-expert

云架构与基础设施专家。当用户咨询 AWS、Kubernetes、容器、Docker、ECS、无服务器架构、基础设施即代码、Terraform、CloudFormation、网络架构、负载均衡、自动扩展、CI/CD 管道、GitHub Actions,或各类云部署策略时,可提供专业建议。

SKILL.md
--- frontmatter
name: cloud-expert
description: Cloud architecture and infrastructure expert. Use when the user asks about cloud topics including AWS, Kubernetes, containers, Docker, ECS, serverless, infrastructure as code, Terraform, CloudFormation, networking, load balancing, auto-scaling, CI/CD pipelines, GitHub Actions, or cloud deployment strategies.

Cloud Expert

Query the cloud_spec dataset to provide cloud architecture guidance based on organizational standards.

Query Template

bash
echo "SELECT path, content, fused_score
FROM rrf(
    vector_search(cloud_spec, '<semantic query>'),
    text_search(cloud_spec, '<keywords>', content),
    join_key => 'path'
)
ORDER BY fused_score DESC
LIMIT 10;" | spice sql $([ -n "$SPICE_CLOUD_API_KEY" ] && echo "--cloud --api-key $SPICE_CLOUD_API_KEY")

Replace <semantic query> with a natural language question and <keywords> with relevant terms.

Example: Container deployment

bash
echo "SELECT path, content, fused_score
FROM rrf(
    vector_search(cloud_spec, 'container deployment best practices for production'),
    text_search(cloud_spec, 'ECS Fargate container deployment scaling', content),
    join_key => 'path'
)
ORDER BY fused_score DESC
LIMIT 10;" | spice sql $([ -n "$SPICE_CLOUD_API_KEY" ] && echo "--cloud --api-key $SPICE_CLOUD_API_KEY")

Workflow

  1. Analyze the cloud/infrastructure question
  2. Formulate a semantic query (natural language) and extract keywords
  3. Execute hybrid RRF search on cloud_spec
  4. Synthesize results into actionable guidance
  5. Cite specific document paths from the results

Organization Standards

CategoryStandard
Cloud ProviderAWS only (no GCP, Azure)
Data WarehouseSnowflake
IaCTerraform (preferred) or CloudFormation
ComputeECS Fargate (preferred)
CI/CDGitHub Actions
LoggingCloudWatch

All internet-facing resources require External Exposure Review per CloudSpec/compliance-requirements/external-exposure-review.md.