Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/roboco-io/plugins/aws-wa-operational-excellencenpx skills add roboco-io/plugins --skill aws-wa-operational-excellencegit clone --depth 1 https://github.com/roboco-io/pluginsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/roboco-io/plugins/aws-wa-operational-excellence)<a href="https://agentmods.dev/skills/roboco-io/plugins/aws-wa-operational-excellence"><img src="https://agentmods.dev/badge/skills/roboco-io/plugins/aws-wa-operational-excellence.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00035 | $0.00959 |
| Opus 5 | $0.00017 | $0.00479 |
| Sonnet 5 | $0.00007 | $0.00192 |
| Haiku 4.5 | $0.00003 | $0.00096 |
Grade A, and why
aws-wa-operational-excellence scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 136 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Operational Excellence Pillar
운영 효율성, 모니터링, 지속적 개선 관점에서 IaC 코드를 검토합니다.
핵심 원칙
- 운영을 코드로 수행: IaC, 자동화된 배포
- 작고 가역적인 변경: 점진적 배포, 롤백 가능
- 운영 절차 개선: 런북, 플레이북
- 장애 예측: 모니터링, 알람
- 모든 장애로부터 학습: 로깅, 분석
검토 항목
OPS-01: CloudWatch 로그 그룹
| 심각도 | 탐지 유형 |
|---|---|
| High | 자동 탐지 |
검토 내용: 모든 리소스에 CloudWatch 로그 그룹이 설정되어 있는지 확인
Terraform 패턴:
# 취약 - 로그 그룹 없음
resource "aws_lambda_function" "example" {
function_name = "my-function"
# CloudWatch 로그 설정 없음
}
# 안전 - 로그 그룹 설정
resource "aws_cloudwatch_log_group" "lambda" {
name = "/aws/lambda/my-function"
retention_in_days = 14
}
OPS-02: CloudWatch 알람
| 심각도 | 탐지 유형 |
|---|---|
| High | 자동 탐지 |
검토 내용: 주요 메트릭에 대한 알람이 설정되어 있는지 확인
Terraform 패턴:
# 안전 - 알람 설정
resource "aws_cloudwatch_metric_alarm" "high_cpu" {
alarm_name = "high-cpu-utilization"
comparison_operator = "GreaterThanThreshold"
evaluation_periods = "2"
metric_name = "CPUUtilization"
namespace = "AWS/EC2"
period = "300"
statistic = "Average"
threshold = "80"
alarm_actions = [aws_sns_topic.alerts.arn]
}
OPS-03: X-Ray 트레이싱
| 심각도 | 탐지 유형 |
|---|---|
| Medium | 자동 탐지 |
검토 내용: 분산 트레이싱이 활성화되어 있는지 확인
Terraform 패턴:
# 취약 - 트레이싱 비활성화
resource "aws_lambda_function" "example" {
tracing_config {
mode = "PassThrough"
}
}
# 안전 - 트레이싱 활성화
resource "aws_lambda_function" "example" {
tracing_config {
mode = "Active"
}
}
OPS-04: 태그 지정
| 심각도 | 탐지 유형 |
|---|---|
| Low | 자동 탐지 |
검토 내용: 리소스에 적절한 태그가 지정되어 있는지 확인
필수 태그:
Environment: dev/staging/prodProject: 프로젝트 이름Owner: 담당자/팀CostCenter: 비용 센터
OPS-05: 런북/플레이북
| 심각도 | 탐지 유형 |
|---|---|
| Low | 수동 확인 필요 |
검토 내용: 운영 문서가 존재하는지 확인
수동 확인 항목:
- 인시던트 대응 절차 문서화
- 배포 롤백 절차 문서화
- 장애 복구 절차 문서화
IaC 플랫폼별 패턴
상세 패턴은 다음 참조:
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 136 lines · 35 tokens per session scan A f0818f834465
aws-wa-operational-excellence is a skill published in the GitHub repository roboco-io/plugins (21 stars, last pushed 1mo ago), licensed MIT. It adds 35 tokens to every session and 959 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
gke-compute-classes
Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…
gke-reliability
Improves GKE workload reliability, using PDBs, health probes, and topology spread constraints. Use when configuring GKE workload reliability, setting up PDBs, or configuring GKE health probes (liveness, readiness, startup). Don't use for disaster recovery setup or full cluster backups (use gke-backup-dr instead).
gke-workload-security
Audits, configures, and hardens workload-level security controls for Google Kubernetes Engine (GKE) applications and namespaces. Covers running cluster security audits (auditcluster.sh), configuring Workload Identity Federation (impersonation, KSA/GSA binding, and pod setup), enforcing Network Policies (default-deny…
nemo-automodel-launcher-config
Configure NeMo AutoModel job launches for interactive runs, Slurm clusters, and SkyPilot cloud execution.
azure-mgmt-botservice-dotnet
Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".
cloud-architect
Designs cloud architectures, creates migration plans, generates cost optimization recommendations, and produces disaster recovery strategies across AWS, Azure, and GCP. Use when designing cloud architectures, planning migrations, or optimizing multi-cloud deployments. Invoke for Well-Architected Framework, cost…