소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 5월 11일 16:18
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill aws명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | aws |
| description | AWS — ECS, EC2, RDS, S3, CloudFront, ALB, IAM best practices. |
Always ask: "Is there a managed service or simpler option that costs less?" Before adding a service, estimate monthly cost at expected load.
Free tier / low-cost anchors: EC2 t3.micro, RDS t3.micro, S3 Standard, CloudFront (1TB/month free tier), Lambda (1M req/month free).
Best for: small teams, predictable traffic, tight budgets.
Route 53 → CloudFront → ALB → EC2 (Docker + docker-compose) → RDS
Cost estimate (us-east-1): ~$30–80/month for t3.small EC2 + db.t3.micro RDS.
Best for: variable traffic, no ops overhead.
Route 53 → CloudFront → ALB → ECS Fargate Tasks → RDS Aurora Serverless
Cost estimate: ~$50–150/month depending on task size and usage.
Best for: simple HTTP APIs, minimal config.
ECR → App Runner → RDS Proxy → RDS
# Authenticate
aws ecr get-login-password --region us-east-1 | \
docker login --username AWS --password-stdin \
123456789.dkr.ecr.us-east-1.amazonaws.com
# Build and push
docker build -t myapp .
docker tag myapp:latest 123456789.dkr.ecr.us-east-1.amazonaws.com/myapp:$GIT_SHA
docker push 123456789.dkr.ecr.us-east-1.amazonaws.com/myapp:$GIT_SHA
# Enable lifecycle policy to avoid storage costs
aws ecr put-lifecycle-policy --repository-name myapp \
--lifecycle-policy-text '{"rules":[{"rulePriority":1,"selection":{"tagStatus":"untagged","countType":"imageCountMoreThan","countNumber":3},"action":{"type":"expire"}}]}'
{
"family": "myapp",
"networkMode": "awsvpc",
"requiresCompatibilities": ["FARGATE"],
"cpu": "256",
"memory": "512",
"executionRoleArn": "arn:aws:iam::ACCOUNT:role/ecsTaskExecutionRole",
"containerDefinitions": [{
"name": "app",
"image": "ACCOUNT.dkr.ecr.REGION.amazonaws.com/myapp:TAG",
"portMappings": [{"containerPort": 8000}],
"environment": [{"name": "APP_ENV",
Never use environment variables for secrets in task definitions. Use SSM Parameter Store:
# Store
aws ssm put-parameter \
--name "/myapp/db-password" \
--value "supersecret" \
--type SecureString
# The ECS task execution role needs ssm:GetParameters permission
{
"Version": "2012-10-17",
"Statement": [{
"Effect": "Allow",
"Action": [
"ssm:GetParameters",
"secretsmanager:GetSecretValue"
],
"Resource": [
"arn:aws:ssm:REGION:ACCOUNT:parameter/myapp/*"
]
}]
}
Rules:
# Check running ECS tasks
aws ecs list-tasks --cluster myapp-cluster --service-name myapp
# Get task logs
aws logs tail /ecs/myapp --follow
# Force new deployment
aws ecs update-service --cluster myapp-cluster --service myapp --force-new-deployment
# Check costs
aws ce get-cost-and-usage \
--time-period Start=2024-01-01,End=2024-01-31 \
--granularity MONTHLY \
--metrics BlendedCost
SOC 직업 분류 기준