소스 정보
- 저장소
- openshift/ocm-agent-operator
- 최근 소스 활동
- 2026년 5월 26일 10:09
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 56
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/openshift/ocm-agent-operator --skill prow-ci명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | prow-ci |
| description | Access and analyze OpenShift Prow CI results for ocm-agent-operator |
| trigger | prow, prow-ci, /prow-ci, ci results, check ci |
This skill helps you access and analyze Prow CI results for the ocm-agent-operator repository.
# Invoke the skill
/prow-ci
# Or ask naturally:
"Check CI results for PR 255"
"What Prow jobs are failing?"
"Show me the CI status"
Main Dashboard: https://prow.ci.openshift.org/
CI Search: https://github.com/openshift/ci-search
Job History: https://prow.ci.openshift.org/?repo=openshift%2Focm-agent-operator
# View recent PR jobs
curl -s "https://prow.ci.openshift.org/?repo=openshift%2Focm-agent-operator&type=presubmit" | grep -E "pull-ci-openshift-ocm-agent-operator"
# Check latest job status for specific PR
# Replace PR_NUMBER with actual PR number
gh pr view PR_NUMBER --json statusCheckRollup --jq '.statusCheckRollup[] | select(.context | contains("prow"))'
Prow logs are stored at:
gs://test-platform-results/pr-logs/pull/openshift_ocm-agent-operator/[PR_NUMBER]/[JOB_NAME]/[JOB_ID]gs://test-platform-results/logs/[JOB_NAME]/[JOB_ID]Viewing logs via web:
https://prow.ci.openshift.org/view/gs/test-platform-results/pr-logs/pull/openshift_ocm-agent-operator/[PR_NUMBER]/[JOB_NAME]/[JOB_ID]
# Get PR checks
gh pr view PR_NUMBER --json statusCheckRollup
# Find failed jobs
gh pr checks PR_NUMBER | grep -i "fail"
# Access specific job artifacts
# Navigate to Prow UI and click on:
# - Build Log (for compilation/test output)
# - JUnit (for structured test results)
# - Artifacts (for generated files, coverage, etc.)
Prow CI Jobs (configured in openshift/release):
pull-ci-openshift-ocm-agent-operator-master-e2e-binary-build-success - E2E binary build verificationpull-ci-openshift-ocm-agent-operator-master-coverage - Code coverage analysis (with Codecov)pull-ci-openshift-ocm-agent-operator-master-lint - Linting checkspull-ci-openshift-ocm-agent-operator-master-test - Unit testspull-ci-openshift-ocm-agent-operator-master-validate - Validation checksTekton Pipelines (configured in .tekton/):
ocm-agent-operator-pull-request - Main PR pipeline (docker build with OCI-TA)ocm-agent-operator-e2e-pull-request - E2E testing pipelineocm-agent-operator-pko-pull-request - PKO (Package Operator) pipeline-push pipelines for merged commitsgh pr checks PR_NUMBER
Open the Prow link from PR checks or construct manually:
https://prow.ci.openshift.org/?repo=openshift%2Focm-agent-operator&type=presubmit
Click on failed job → "Build Log" tab
Look for:
Many Prow jobs can be reproduced with:
# For unit tests (matches: pull-ci-...-test)
make go-test
# For linting (matches: pull-ci-...-lint)
make go-check
# OR use pre-commit for comprehensive linting
pre-commit run --all-files
# For validation (matches: pull-ci-...-validate)
make validate
# For coverage (matches: pull-ci-...-coverage)
make coverage
# For E2E binary build (matches: pull-ci-...-e2e-binary-build-success)
make e2e-binary-build
# For container builds (Tekton pipelines)
make docker-build
This repo uses both Prow and Tekton for comprehensive CI:
Prow CI (openshift/release):
ci-operator/config/openshift/ocm-agent-operator/openshift-ocm-agent-operator-master.yamlocm-agent-operator-codecov-token).tekton/, .github/, .md files, OWNERS, LICENSE don't trigger most jobsTekton Pipelines (.tekton/):
openshift/boilerplate (docker-build-oci-ta pipeline)# Check all PR checks status
gh pr checks <PR_NUMBER>
# View detailed status for a specific PR
gh pr view <PR_NUMBER> --json statusCheckRollup
# Filter only Prow jobs
gh pr checks <PR_NUMBER> | grep "pull-ci-openshift-ocm-agent-operator"
# Check Tekton pipeline status
gh pr view <PR_NUMBER> --json statusCheckRollup --jq '.statusCheckRollup[] | select(.context | contains("Tekton"))'
# Open Prow dashboard in browser (cross-platform)
# Copy and paste this URL into your browser:
# https://prow.ci.openshift.org/?repo=openshift%2Focm-agent-operator
# Or use platform-specific command:
# macOS: open "https://prow.ci.openshift.org/?repo=openshift%2Focm-agent-operator"
# Linux: xdg-open "https://prow.ci.openshift.org/?repo=openshift%2Focm-agent-operator"
# Windows: start "https://prow.ci.openshift.org/?repo=openshift%2Focm-agent-operator"
# View specific PR on Prow (replace <PR_NUMBER>)
# https://prow.ci.openshift.org/?repo=openshift%2Focm-agent-operator&type=presubmit&pull=<PR_NUMBER>
pull-ci-openshift-ocm-agent-operator-master-*openshift_ocm-agent-operator (underscore, not dash)ocm-agent-operator-tenant namespace# Validate Tekton YAML syntax
kubectl apply --dry-run=client -f .tekton/
# Test container build locally
podman build -f build/Dockerfile -t test:local .
For historical job searches:
# Clone ci-search tool
git clone https://github.com/openshift/ci-search.git
# Use web interface at search.ci.openshift.org (if available)
# Search for patterns in build logs across all jobs
Prow Configuration (in openshift/release repo):
ci-operator/config/openshift/ocm-agent-operator/openshift-ocm-agent-operator-master.yamlci-operator/jobs/openshift/ocm-agent-operator/Tekton Pipelines (in this repo):
.tekton/ directoryocm-agent-operator-pull-request.yaml - Main PR pipelineocm-agent-operator-push.yaml - Post-merge pipelineocm-agent-operator-e2e-pull-request.yaml - E2E testingocm-agent-operator-pko-pull-request.yaml - PKO validationThis repository uses Codecov for coverage tracking:
ocm-agent-operator-codecov-token (stored in Prow)make coveragepublish-coverage)