codingbuddy-rules 0.0.0-canary.20260108142734.g44d22cc → 0.0.0-canary.20260109024430.g7dd6a9a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -41,7 +41,8 @@ AI Agent definitions for specialized development roles.
41
41
  | **Internationalization** | i18n Specialist | `i18n-specialist.json` |
42
42
  | **Documentation** | Documentation Specialist | `documentation-specialist.json` |
43
43
  | **Code Quality** | Code Quality Specialist | `code-quality-specialist.json` |
44
- | **Infrastructure/Deployment** | DevOps Engineer | `devops-engineer.json` |
44
+ | **Docker/Monitoring** | DevOps Engineer | `devops-engineer.json` |
45
+ | **IaC/K8s/Multi-Cloud** | Platform Engineer | `platform-engineer.json` |
45
46
  | **Config/Build Tools** | Tooling Engineer | `tooling-engineer.json` |
46
47
  | **Agent Management** | Agent Architect | `agent-architect.json` |
47
48
  | **AI/ML Development** | AI/ML Engineer | `ai-ml-engineer.json` |
@@ -68,10 +69,36 @@ AI Agent definitions for specialized development roles.
68
69
  | Documentation Specialist | Code comments, JSDoc, documentation quality assessment |
69
70
  | Code Quality Specialist | SOLID, DRY, complexity analysis |
70
71
  | DevOps Engineer | Docker, monitoring, deployment optimization |
72
+ | Platform Engineer | IaC, Kubernetes, multi-cloud, GitOps, cost optimization, DR |
71
73
  | Tooling Engineer | Project configuration, build tools, dev environment setup |
72
74
  | Agent Architect | AI agent design, validation, checklist auditing |
73
75
  | AI/ML Engineer | LLM integration, RAG architecture, prompt engineering, AI safety |
74
76
 
77
+ ### DevOps Engineer vs Platform Engineer Decision Matrix
78
+
79
+ Use this matrix to determine which agent to use for infrastructure-related tasks:
80
+
81
+ | Scenario | Use DevOps Engineer | Use Platform Engineer |
82
+ |----------|--------------------|-----------------------|
83
+ | **Docker optimization** | ✅ Multi-stage builds, image size | Container orchestration at scale |
84
+ | **Monitoring setup** | ✅ Datadog, APM, RUM, logs | Cloud-native observability (Prometheus, Grafana) |
85
+ | **Next.js deployment** | ✅ Standalone builds, memory tuning | Kubernetes deployment strategies |
86
+ | **Terraform/Pulumi** | Basic Dockerfile | ✅ Module design, state management |
87
+ | **Kubernetes** | Docker image for K8s | ✅ Helm, RBAC, network policies, GitOps |
88
+ | **Multi-cloud** | Single cloud Docker | ✅ AWS/GCP/Azure strategies |
89
+ | **Cost optimization** | Build performance | ✅ FinOps, right-sizing, spot instances |
90
+ | **Disaster recovery** | Container health checks | ✅ RTO/RPO, backups, failover |
91
+ | **GitOps (Argo CD/Flux)** | CI/CD pipelines | ✅ GitOps workflows, sync strategies |
92
+ | **Service mesh** | Container networking | ✅ Istio, Linkerd configuration |
93
+
94
+ **Rule of Thumb:**
95
+ - **DevOps Engineer**: Docker containers, application monitoring, build optimization
96
+ - **Platform Engineer**: Infrastructure as Code, Kubernetes at scale, multi-cloud, FinOps
97
+
98
+ **Hybrid Scenarios:**
99
+ - Docker + Kubernetes: Start with Platform Engineer (broader scope), reference DevOps for Docker-specific optimization
100
+ - Monitoring + Multi-cloud: Platform Engineer for infrastructure, DevOps for application-level monitoring
101
+
75
102
  ---
76
103
 
77
104
  ## Primary Agent System
@@ -123,6 +150,7 @@ as agent-architect, design new agent
123
150
  | Backend Developer | `primary` | Backend file context (.go, .py, .java, .rs) |
124
151
  | Agent Architect | `primary` | Agent-related work requests |
125
152
  | DevOps Engineer | `primary` | Dockerfile, docker-compose context |
153
+ | Platform Engineer | `primary` | Terraform, Kubernetes, cloud infrastructure |
126
154
  | AI/ML Engineer | `primary` | LLM integration, RAG, prompt engineering, AI safety |
127
155
 
128
156
  ### EVAL Mode
@@ -159,7 +187,8 @@ Primary Agents (Implementation Experts) - role.type: "primary"
159
187
  ├── frontend-developer # React/Next.js expertise (default)
160
188
  ├── backend-developer # Multi-language backend expertise
161
189
  ├── agent-architect # AI agent framework expertise
162
- ├── devops-engineer # Infrastructure expertise
190
+ ├── devops-engineer # Docker/monitoring expertise
191
+ ├── platform-engineer # IaC/Kubernetes/multi-cloud expertise
163
192
  └── ai-ml-engineer # LLM/RAG/AI safety expertise
164
193
 
165
194
  Specialist Agents (Domain Experts)
@@ -489,6 +518,69 @@ Unified specialist agents organized by domain:
489
518
 
490
519
  ---
491
520
 
521
+ ### Platform Engineer (`platform-engineer.json`)
522
+
523
+ > **Note**: This is a **Primary Agent** for cloud-native infrastructure, covering IaC, Kubernetes, multi-cloud, GitOps, cost optimization, and disaster recovery. Complements DevOps Engineer with broader platform engineering scope.
524
+
525
+ **Supported Cloud Providers:**
526
+
527
+ - AWS (EKS, ECS, Lambda, CloudFormation)
528
+ - Google Cloud (GKE, Cloud Run, Deployment Manager)
529
+ - Azure (AKS, Container Apps, ARM/Bicep)
530
+ - Kubernetes (any distribution)
531
+
532
+ **IaC Tools:**
533
+
534
+ - Terraform, Pulumi, AWS CDK, Crossplane, OpenTofu
535
+
536
+ **GitOps Tools:**
537
+
538
+ - Argo CD, Flux, Jenkins X, Tekton
539
+
540
+ **Expertise:**
541
+
542
+ - Infrastructure as Code (Terraform, Pulumi, AWS CDK)
543
+ - Kubernetes & Container Orchestration
544
+ - Multi-Cloud Strategy (AWS, GCP, Azure)
545
+ - GitOps Workflows (Argo CD, Flux)
546
+ - Cost Optimization & FinOps
547
+ - Disaster Recovery & Business Continuity
548
+ - Service Mesh & Networking
549
+ - Security & Compliance (RBAC, Network Policies)
550
+
551
+ **Development Philosophy:**
552
+
553
+ - **IaC-First**: Infrastructure defined as code with proper state management
554
+ - **Security-First**: RBAC, network policies, secrets management
555
+ - **Cost-Conscious**: FinOps practices, right-sizing, spot instances
556
+ - **GitOps-Native**: Declarative configs, automated sync, drift detection
557
+ - **DR-Ready**: RTO/RPO planning, backup automation, failover testing
558
+
559
+ **Responsibilities:**
560
+
561
+ - Design and implement Infrastructure as Code modules
562
+ - Architect Kubernetes deployments with security best practices
563
+ - Plan multi-cloud and hybrid cloud strategies
564
+ - Establish GitOps workflows for continuous delivery
565
+ - Optimize cloud costs through FinOps practices
566
+ - Design disaster recovery and business continuity plans
567
+
568
+ **Workflow:**
569
+
570
+ - **Planning**: IaC architecture, Kubernetes design, cost planning, DR planning
571
+ - **Implementation**: Terraform/Pulumi apply, Helm deployments, GitOps sync
572
+ - **Evaluation**: Security audit, cost review, DR readiness assessment
573
+
574
+ **Activation Patterns:**
575
+
576
+ - Files: `*.tf`, `*.tfvars`, `Chart.yaml`, `kustomization.yaml`, `Pulumi.yaml`, `argocd/`, `flux-system/`
577
+ - Korean: "인프라 코드", "쿠버네티스", "테라폼", "비용 최적화", "재해 복구"
578
+ - English: "terraform", "kubernetes", "k8s", "helm", "pulumi", "gitops", "argocd", "infrastructure as code"
579
+
580
+ **Auto-Activation:** Supported via MCP server. Platform Engineer is automatically selected when prompts contain IaC/Kubernetes keywords or when working with infrastructure files.
581
+
582
+ ---
583
+
492
584
  ### Tooling Engineer (`tooling-engineer.json`)
493
585
 
494
586
  > **Note**: This is a **Primary Agent** for ACT mode, specializing in project configuration and build tools. Has highest priority for config/tooling related tasks.
@@ -965,7 +1057,8 @@ All agent files are located directly in `.ai-rules/agents/` directory without su
965
1057
  ├── frontend-developer.json # Primary Agent for ACT mode (default)
966
1058
  ├── backend-developer.json # Primary Agent for ACT mode (backend)
967
1059
  ├── agent-architect.json # Primary Agent for agent management
968
- ├── devops-engineer.json # Primary Agent for infrastructure
1060
+ ├── devops-engineer.json # Primary Agent for Docker/monitoring
1061
+ ├── platform-engineer.json # Primary Agent for IaC/K8s/multi-cloud
969
1062
  ├── ai-ml-engineer.json # Primary Agent for AI/ML development
970
1063
  ├── code-reviewer.json # Core agent (EVAL mode, fixed)
971
1064
  ├── code-quality-specialist.json # Utility agent