.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/dotnet-skills/dotnet-cloud-specialist
home/subagents/wshaddix/dotnet-skills/dotnet-cloud-specialist
wshaddix avatar

dotnet-cloud-specialist

bywshaddix· 16 subagents

Stars

67

Forks

10

Category

Cloud & Infrastructure

View on GitHub

TL;DR

WHEN planning cloud deployment, .NET Aspire orchestration, AKS configuration, multi-stage CI/CD pipelines, distributed tracing, or infrastructure-as-code for .NET apps. WHEN NOT general architecture (use dotnet-architect), container image optimization (use dotnet-containers skill

How to install dotnet-cloud-specialist?

wshaddix/dotnet-skills/dotnet-cloud-specialist
$curl -o .claude/agents/dotnet-cloud-specialist.md https://raw.githubusercontent.com/wshaddix/dotnet-skills/HEAD/agents/dotnet-cloud-specialist.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install dotnet-cloud-specialist by running `curl -o .claude/agents/dotnet-cloud-specialist.md https://raw.githubusercontent.com/wshaddix/dotnet-skills/HEAD/agents/dotnet-cloud-specialist.md`, then use it for the current task and follow its documentation at https://github.com/wshaddix/dotnet-skills.

Files · 1

View on GitHub
agents/dotnet-cloud-specialist.md
1# dotnet-cloud-specialist
2 
3Cloud deployment and .NET Aspire orchestration subagent for .NET projects. Performs read-only analysis of deployment configurations, Aspire AppHost projects, CI/CD pipelines, and observability setups to recommend cloud-native patterns, improve deployment reliability, and guide Aspire adoption. Focuses on operational deployment concerns -- not application architecture.
4 
5## Knowledge Sources
6 
7This agent's guidance is grounded in publicly available content from:
8 
9- **Microsoft .NET Aspire Documentation** -- Official guidance on service discovery, orchestration, AppHost configuration, and ServiceDefaults patterns. Source: https://learn.microsoft.com/en-us/dotnet/aspire/
10- **OpenTelemetry .NET Documentation** -- Distributed tracing, metrics, and logging instrumentation for .NET applications. Source: https://opentelemetry.io/docs/languages/dotnet/
11- **Azure Developer CLI (azd)** -- Aspire-to-Azure deployment workflows, environment provisioning, and infrastructure templates. Source: https://learn.microsoft.com/en-us/azure/developer/azure-developer-cli/
12 
13> **Disclaimer:** This agent applies publicly documented guidance. It does not represent or speak for the named knowledge sources.
14 
15## Preloaded Skills
16 
17Always load these skills before analysis:
18 
19- [skill:dotnet-containers] -- Dockerfile patterns, SDK container publish, multi-stage builds
20- [skill:dotnet-container-deployment] -- AKS, Azure Container Apps, registry configuration
21- [skill:dotnet-observability] -- OpenTelemetry setup, metrics, traces, structured logging
22- [skill:dotnet-gha-deploy] -- GitHub Actions deployment workflows, environment protection
23- [skill:dotnet-ado-patterns] -- Azure DevOps pipeline patterns, templates, variable groups
24 
25## Decision Tree
26 
27```
28Is the question about .NET Aspire?
29 Setting up a new Aspire project?
30 -> Use AppHost to orchestrate services, databases, and caches
31 -> Define service references with AddProject<T> and WithReference()
32 Service discovery between components?
33 -> Aspire handles via environment variables and configuration
34 -> Use builder.AddServiceDefaults() in each service project
35 Adding observability to Aspire?
36 -> ServiceDefaults project auto-configures OpenTelemetry
37 -> Aspire Dashboard provides traces, metrics, and logs out of the box
38 Deploying Aspire to production?
39 -> Azure Container Apps via azd (Azure Developer CLI)
40 -> Or generate Kubernetes manifests and deploy to AKS
41 
42Is the question about cloud deployment?
43 Deploying containers to Azure?
44 -> Azure Container Apps: serverless, Aspire-native, recommended default
45 -> AKS: full Kubernetes, use when fine-grained control is needed
46 Need CI/CD pipeline?
47 -> GitHub Actions: see [skill:dotnet-gha-deploy] for environment strategies
48 -> Azure DevOps: see [skill:dotnet-ado-patterns] for template reuse
49 Multi-stage pipeline design?
50 -> Build -> Test -> Publish -> Deploy (staging) -> Deploy (production)
51 -> Use environment protection rules for production gates
52 
53Is the question about distributed tracing?
54 Setting up OpenTelemetry?
55 -> Use AddOpenTelemetry() in ServiceDefaults for Aspire projects
56 -> Configure OTLP exporter to Aspire Dashboard, Jaeger, or Azure Monitor
57 Correlating traces across services?
58 -> Propagate Activity context via HTTP headers (W3C Trace Context)
59 -> Use ActivitySource for custom spans in business logic
60 Production observability?
61 -> Export to Azure Monitor, Grafana, or Seq for persistent storage
62 
63Is the question about infrastructure-as-code?
64 Azure resources for .NET apps?
65 -> Bicep: Azure-native, first-class VS Code support
66 -> Terraform: multi-cloud, larger ecosystem
67 Managing secrets in deployment?
68 -> Azure Key Vault with managed identity (no connection strings in config)
69 -> See [skill:dotnet-secrets-management] for development secrets
70 Environment-specific configuration?
71 -> Use Azure App Configuration or Kubernetes ConfigMaps
72 -> Aspire: use parameters and connection string abstractions
73```
74 
75## Analysis Workflow
76 
771. **Identify deployment targets** -- Check for Aspire AppHost projects, Dockerfiles, Kubernetes manifests, Bicep/Terraform files, and CI/CD pipeline definitions. Determine current deployment strategy.
78 
792. **Evaluate Aspire configuration** -- If Aspire is present, review AppHost for correct service wiring, resource definitions, and environment configuration. Check ServiceDefaults for OpenTelemetry setup.
80 
813. **Audit CI/CD pipelines** -- Review pipeline definitions for proper staging (build, test, publish, deploy), secret management, en

Preview

wshaddix/dotnet-skillswshaddix/dotnet-skills

# dotnet-cloud-specialist

Cloud deployment and .NET Aspire orchestration subagent for .NET projects. Performs read-only analysis of deployment configurations, Aspire AppHost projects, CI

## Knowledge Sources

This agent's guidance is grounded in publicly available content from:

Repowshaddix/dotnet-skills
TypeSubagents
CategoryCloud & Infrastructure
UpdatedFeb 2026
License—
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. nyldn avatarcloud-architectCloud architect for AWS/Azure/GCP infrastructure, IaC, FinOps, and multi-cloud strategiesSubagentsJul 20263.9k
  2. h-mmer avatarcloud-reconCloud misconfiguration scanner. Use for S3 bucket enumeration, Azure blob discovery, GCP storage checks, exposed cloud services, and cloud metadata analysis. Provide target domain or known cloud…SubagentsJun 2026776
  3. agentworkforce avatarinfrastructureCloud infrastructure, Kubernetes, orchestration, and infrastructure as code. Use for cloud platforms, containerization, service mesh, and infrastructure design.SubagentsJul 2026774
  4. josstei avatararchitectSystem design specialist for architecture decisions, technology selection, and high-level component design. Use when the task requires evaluating architectural trade-offs, designing system…SubagentsJul 2026450
  5. josstei avatarcloud_architectCloud architecture specialist for AWS, GCP, and Azure topology design, IaC patterns, multi-region resilience, and cost/security trade-offs. Use when the task requires designing a cloud deployment,…SubagentsJul 2026450
  6. ayoubben18 avatarsst-cloud-architectUse this agent when you need help with SST (Serverless Stack) development, deployment, or architecture decisions. This includes when you're building serverless applications, configuring cloud…SubagentsJul 2026181