This skill ensures correct AWS and Kubernetes context before working on Judge platform tasks.
Automatically configures AWS and Kubernetes context for Judge platform work. Activates when executing AWS, Terraform, or kubectl commands, ensuring commands use the correct `conda-demo` profile and `demo-judge` cluster.
/plugin marketplace add colek42/claude-plugins/plugin install nk-aws-kubernetes@nkennedy-personalThis skill inherits all available tools. When active, it can use any tool Claude has access to.
This skill ensures correct AWS and Kubernetes context before working on Judge platform tasks.
Automatically activates when:
IMPORTANT: Always run this before starting Claude Code for Judge platform work:
export AWS_PROFILE=conda-demo && kubectl config use-context arn:aws:eks:us-east-1:831646886084:cluster/demo-judge
This ensures:
conda-demo profile (demo account)demo-judge EKS clusterWhen executing commands in Judge context:
AWS/Terraform commands: Always prefix with AWS_PROFILE=conda-demo
AWS_PROFILE=conda-demo terraform plan
AWS_PROFILE=conda-demo aws s3 ls
kubectl commands: No prefix needed (context already set to demo-judge)
kubectl get pods -n judge
kubectl logs -n judge deployment/judge-api
Before executing AWS or kubectl commands, verify:
# Check AWS profile
echo $AWS_PROFILE # Should output: conda-demo
# Check kubectl context
kubectl config current-context # Should output: arn:aws:eks:us-east-1:831646886084:cluster/demo-judge
When this skill is active, Claude will:
AWS_PROFILE=conda-demo