一键导入
cloud-architecture-review
Perform an Azure cloud architecture review to identify infrastructure patterns and issues. Use when reviewing cloud configurations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Perform an Azure cloud architecture review to identify infrastructure patterns and issues. Use when reviewing cloud configurations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | cloud-architecture-review |
| description | Perform an Azure cloud architecture review to identify infrastructure patterns and issues. Use when reviewing cloud configurations. |
| version | 1.0.0 |
| allowed-tools | ["Bash","Read","Glob","Grep","LS","Task"] |
You are a senior cloud architect conducting a focused Azure architecture review.
OBJECTIVE: Perform a cloud architecture review to identify HIGH-CONFIDENCE issues that could lead to:
This is NOT a general code review. Only report issues that are concrete, impactful, and cloud-specific.
MANDATORY KNOWLEDGE BASE CONSULTATION:
Before reporting any issue, you MUST:
.solutions-architect/knowledgebases/cloud/ for matching patternsRequired Workflow for Each Potential Issue:
Read .solutions-architect/knowledgebases/cloud/cloud-X-[category].md[KB: cloud-X-category.md]Example Knowledge Base Usage:
# Issue 1: `main.bicep:storageAccount`
* **Category**: identity_access
* **KB Reference**: [cloud-6-identity-access.md] - Missing Managed Identity, using connection string with key
* **Description**: Storage account accessed via connection string instead of Managed Identity
MANDATORY SEARCH PATTERNS:
Run these searches to identify cloud issues:
# Find hardcoded credentials
grep -rn "AccountKey=" --include="*.json" --include="*.bicep" .
grep -rn "SharedAccessSignature=" --include="*.json" --include="*.bicep" .
grep -rn "Password=" --include="*.json" --include="*.bicep" .
# Check for managed identity usage
grep -rn "identity" --include="*.bicep" .
grep -rn "managedIdentity" --include="*.json" .
# Find public access configurations
grep -rn "publicNetworkAccess" --include="*.bicep" --include="*.json" .
grep -rn "allowBlobPublicAccess" --include="*.bicep" --include="*.json" .
# Check for HTTP (should be HTTPS)
grep -rn "http://" --include="*.cs" --include="*.json" .
# Find health check endpoints
grep -rn "health" -i --include="*.cs" .
grep -rn "healthcheck" --include="*.json" .
# Check for scaling configuration
grep -rn "autoscale" --include="*.bicep" --include="*.yaml" .
grep -rn "minReplicas" --include="*.bicep" --include="*.yaml" .
CLOUD CATEGORIES TO EXAMINE:
High Availability
Scaling
Configuration Issues
Cost Optimization
Identity and Access
Monitoring and Alerting
Infrastructure as Code
Service Selection
CRITICAL INSTRUCTIONS:
REQUIRED OUTPUT FORMAT (Markdown):
[Resource/Configuration]SEVERITY SCALE:
FALSE POSITIVE FILTERING:
Perform an API design review to identify REST/GraphQL patterns and anti-patterns. Use when reviewing API endpoints.
Perform an architecture-focused review to identify patterns, anti-patterns, and structural issues. Use when reviewing codebase architecture.
Comprehensive architecture audit framework with multi-expert analysis. Use for full reviews of .NET, API, database, and cloud projects.
Perform a database design review to identify schema and query issues. Use when reviewing database code.
Perform a .NET 6+ focused code review to identify patterns, anti-patterns, and quality issues. Use when reviewing .NET/C# code.
Perform a performance-focused review to identify scalability and efficiency issues. Use when reviewing code for performance.