소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 7월 3일 19:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill configuration-file-parsing명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | configuration-file-parsing |
| description | > Use when this capability is needed. |
The Configuration File Parsing skill enables the Render Deployment Specialist agent to effectively parse, validate, modify, and generate configuration files essential for cloud deployments. This skill covers Render-specific YAML, Docker configurations, shell scripts, and general structured data formats.
[API], [WORKER]) for clarityservices:
- type: web
name: paperclip-app
runtime: docker
dockerfilePath: ./Dockerfile
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: 8000
- key: HERMES_MODE
value: both
- key: OPENROUTER_API_KEY
fromSecret: openrouter_api_key
- key: SUPABASE_URL
fromSecret: supabase_url
- key: SUPABASE_SERVICE_ROLE_KEY
fromSecret: supabase_service_role_key
- key: GITHUB_TOKEN
fromSecret: github_token
healthCheckPath: /health
disk:
name: tmp
mountPath: /tmp
sizeGB: 1
FROM python:3.11-slim
# Install system dependencies required for health checks and git operations
RUN apt-get update && apt-get install -y \
curl \
git \
jq \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
# Copy and install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Make entrypoint executable
RUN chmod +x docker/entrypoint.sh
# Expose port
EXPOSE 8000
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
CMD curl -f http://localhost:8000/health || exit 1
# Start command
CMD ["./docker/entrypoint.sh"]
#!/bin/bash
set -euo pipefail
# Configuration
API_PORT="${API_PORT:-8000}"
API_HOST="${API_HOST:-0.0.0.0}"
HEALTH_CHECK_URL="http://${API_HOST}:${API_PORT}/health"
MAX_HEALTH_CHECK_ATTEMPTS=30
HEALTH_CHECK_INTERVAL=5
# Log helper
log() {
echo "[$(date -Iseconds)] $1"
}
# Check required environment variables
log "Checking required environment variables..."
required_vars=("OPENROUTER_API_KEY" "GITHUB_TOKEN" "SUPABASE_URL" "SUPABASE_SERVICE_ROLE_KEY")
missing_vars=()
for var in "${required_vars[@]}"; do
if [[ -z "${!var:-}" ]]; then
missing_vars+=("$var")
fi
done
if [[ ${#missing_vars[@]} -gt 0 ]]; then
log "ERROR: Missing required environment variables: ${missing_vars[*]}"
exit 1
fi
log "All required environment variables are present."
# Start API server in background
log "Starting API server on :..."
hermes serve --host --port &
API_PID=$!
attempt=0
[ -lt ];
curl -sf > /dev/null 2>&1;
attempt=$((attempt + ))
[ -eq ];
2>/dev/null ||
1
python -m worker.main &
WORKER_PID=$!
() {
2>/dev/null ||
2>/dev/null ||
0
}
shutdown SIGTERM SIGINT
# Validate YAML syntax
python -c "import yaml; yaml.safe_load(open('render.yaml'))"
# Or use yamllint if available
yamllint render.yaml
# Build and check for errors
docker build -t test-build .
# Lint with hadolint if available
hadolint Dockerfile
# Syntax check
bash -n entrypoint.sh
# Run shellcheck if available
shellcheck entrypoint.sh
Skill Level: Expert Last Updated: 2026-04-23 Version: 1.0
Source: Construct-AI-primary/z-docs-paperclip — distributed by TomeVault.