.claude/skills/container-expert/SKILL.md
Container orchestration expert including Docker, Kubernetes, Helm, and service mesh
npx skillsauth add oimiragieo/agent-studio container-expertInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
When reviewing or writing code, apply these guidelines:
docker-compose command.When reviewing or writing code, apply these guidelines:
When reviewing or writing code, apply these guidelines:
Project-Specific Notes: Istio should be leveraged for inter-service communication, security, and monitoring.
When reviewing or writing code, apply these guidelines:
When reviewing or writing code, apply these guidelines:
Project-Specific Notes: The backend should be implemented as Knative services.
</instructions> <examples> Example usage: ``` User: "Review this code for container best practices" Agent: [Analyzes code against consolidated guidelines and provides specific feedback] ``` </examples>This expert skill consolidates 5 individual skills:
USER in Dockerfile and runAsNonRoot: true in pod security context.docker-compose (hyphenated) — docker-compose is the deprecated v1 CLI; use docker compose (space, v2 plugin) which is maintained and included in Docker Desktop.| Anti-Pattern | Why It Fails | Correct Approach |
| ------------------------------------------------ | --------------------------------------------------- | ---------------------------------------------------------- |
| Running as root in container | Privilege escalation via any CVE in the container | Set USER nonroot in Dockerfile; runAsNonRoot: true |
| Secrets in environment variables or image layers | Leaked in docker inspect, logs, and image exports | Use Kubernetes Secrets with RBAC; external secret managers |
| No resource limits on pods | One pod starves the node; cascading failures | Set CPU/memory requests AND limits on all pods |
| Missing health probes | Traffic routed to unhealthy pods indefinitely | Add livenessProbe and readinessProbe to all containers |
| Using docker-compose (deprecated v1) | Deprecated; lacks compose v2 features and fixes | Use docker compose (space, Docker Engine plugin) |
Before starting:
cat .claude/context/memory/learnings.md
After completing: Record any new patterns or exceptions discovered.
ASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.
tools
Comprehensive biosignal processing toolkit for analyzing physiological data including ECG, EEG, EDA, RSP, PPG, EMG, and EOG signals. Use this skill when processing cardiovascular signals, brain activity, electrodermal responses, respiratory patterns, muscle activity, or eye movements. Applicable for heart rate variability analysis, event-related potentials, complexity measures, autonomic nervous system assessment, psychophysiology research, and multi-modal physiological signal integration.
tools
Comprehensive toolkit for creating, analyzing, and visualizing complex networks and graphs in Python. Use when working with network/graph data structures, analyzing relationships between entities, computing graph algorithms (shortest paths, centrality, clustering), detecting communities, generating synthetic networks, or visualizing network topologies. Applicable to social networks, biological networks, transportation systems, citation networks, and any domain involving pairwise relationships.
data-ai
Molecular featurization for ML (100+ featurizers). ECFP, MACCS, descriptors, pretrained models (ChemBERTa), convert SMILES to features, for QSAR and molecular ML.
development
Run Python code in the cloud with serverless containers, GPUs, and autoscaling. Use when deploying ML models, running batch processing jobs, scheduling compute-intensive tasks, or serving APIs that require GPU acceleration or dynamic scaling.