소스 정보
- 저장소
- jleechanorg/claude-commands
- 최근 소스 활동
- 2026년 6월 21일 22:59
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/jleechanorg/claude-commands --skill pr-preview-servers명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | pr-preview-servers |
| description | Find and validate rotating GCP Cloud Run preview servers for PR branches. |
Reference for the rotating preview server pool used to deploy PR branches.
mvp-site-app-s1 through mvp-site-app-s10)mvp-site-appworldarchitecture-aius-central1$PROJECT_ROOT/**, Dockerfile, requirements.txt, etc..github/workflows/pr-preview.yml.github/scripts/pr-server-pool.shhttps://mvp-site-app-s{N}-{hash}-uc.a.run.app
Where {N} is 1–10 and {hash} is Cloud Run's stable unique URL segment.
From GitHub CLI (fastest):
gh pr view <PR_NUMBER> --json comments --jq '.comments[].body' | grep -o 'https://mvp-site-app-s[^ ]*'
From PR comments in the UI:
Look for the bot comment that says "Preview deployed to: https://..."
From Cloud Run directly:
gcloud run services describe mvp-site-app-s{N} \
--project=worldarchitecture-ai \
--region=us-central1 \
--format='value(status.url)'
The preview server is deployed with:
FLASK_ENV=productionENVIRONMENT=previewGEMINI_API_KEY, CEREBRAS_API_KEY, OPENROUTER_API_KEYTESTING_AUTH_BYPASS=true — real Firebase auth is required for protected endpointsGET /health
→ 200 {"status": "healthy", "service": "worldarchitect-ai", "timestamp": "..."}
Note: /health does not expose the ENVIRONMENT env var. Confirmed 2026-02-20.
Use the standalone smoke test (no local server startup needed):
# Test the current PR's preview server
python3 testing_mcp/test_openclaw_gateway_url_preview.py
# Test a specific preview URL
python3 testing_mcp/test_openclaw_gateway_url_preview.py \
--server-url https://mvp-site-app-s10-i6xf2p72ka-uc.a.run.app
| Test | Why |
|---|---|
/health → 200 | Public health endpoint |
/settings HTML → 200, field present | Public HTML page |
POST /api/settings → 401 (not 404) | Route wired, auth enforced |
| Static assets | Public static files |
POST /api/settings with actual settings values (save to Firestore)GET /api/settings (read user settings)When all 10 slots are taken, the oldest assignment is evicted to make room. The evicted PR loses its preview URL. Check PR #N's comments for current status.
| PR | Server | URL |
|---|---|---|
| #5662 | s10 | https://mvp-site-app-s10-i6xf2p72ka-uc.a.run.app |
| #5857 | s2 | https://mvp-site-app-s2-i6xf2p72ka-uc.a.run.app |
Update this table as PRs are deployed. URL stays stable as long as the pool slot isn't evicted.