원클릭으로
infrastructure-standards
Best practices for Docker, CI/CD scripts, and Security Middleware.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Best practices for Docker, CI/CD scripts, and Security Middleware.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Design system patterns for reusable UI via atomic design, Tailwind tokens/variants, and accessibility. Use when creating atoms/molecules, theming, or hardening a11y.
Entity Framework Core best practices for configuration, queries, concurrency, and multi-tenancy.
Frontend architecture patterns for React apps (React Router 7, TanStack Query). Use when planning features, defining routes, data strategies, and component gaps.
Infrastructure standards for Docker, scripts, middleware, and authentication in multi-tenant deployments.
Integration testing performance optimization, test parallelization, cleanup strategies, and CI/CD categorization patterns. Use when optimizing test execution speed, managing test data, or structuring tests for automated pipelines.
ASP.NET Core Minimal APIs patterns for endpoints, DTOs, validation, and service integration. Use when implementing API endpoints, defining request/response contracts, or structuring API projects with clean separation of concerns.
| name | infrastructure-standards |
| description | Best practices for Docker, CI/CD scripts, and Security Middleware. |
As a Platform Engineer, you are responsible for:
scripts/.src/GloboTicket.API/Middleware/.latest)..env files for environment-specific configuration.services:
api:
image: globoticket-api:1.0
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
interval: 30s
timeout: 10s
retries: 3
scripts/bash/ and scripts/powershell/.TenantResolutionMiddleware in production code.public async Task InvokeAsync(HttpContext context)
{
// ... validation logic ...
if (tenantIdClaim == null)
{
_logger.LogWarning("Authenticated user {Username} has no TenantId claim", context.User.Identity.Name);
}
}