소스 정보
- 저장소
- drmoisan/drm-copilot
- 최근 소스 활동
- 2026년 7월 3일 23:13
- 감지된 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/drmoisan/drm-copilot --skill benchmark-baselines명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | benchmark-baselines |
| description | Benchmark baseline provenance rules for performance regression gates. |
Source: legacy Claude rule benchmark-baselines.
This rule governs performance baselines used by benchmark regression gates. It exists because a baseline captured on a developer workstation was compared against a windows-latest runner, producing deterministic latency regressions that the benchmark gate could not survive (issue #26, PR #30).
Performance baselines must be captured in the same runner environment class against which they are compared. A baseline captured on a developer workstation must not be committed for comparison against a CI runner.
A baseline whose HostEnvironmentInfo.ProcessorName is the literal string "Unknown processor" is rejected. This value indicates the baseline was captured in an environment where the processor could not be identified (typically a virtualized or developer workstation), which violates runner-environment parity.
HostEnvironmentInfo.ProcessorName == "Unknown processor".Every committed baseline file MUST have a sibling baseline.provenance.json in the same directory. The provenance file records, at minimum:
runner_class — the runner environment class that produced the baseline (for example windows-latest).
host_signature — a stable signature of the host (for example a hashed or labeled description of the CPU/core configuration).
workflow_run_url — the URL of the workflow run that produced the baseline.
Tooling MUST reject a baseline that has no sibling baseline.provenance.json.
The rejection is a Blocking finding; the baseline must be recaptured with provenance recorded.
scripts/benchmarks/Test-BaselineProvenance.ps1 enforces both rejection conditions above and accepts a runner-captured baseline whose ProcessorName is a real processor and whose sibling baseline.provenance.json is present.modified-workflow-needs-green-run (see .agents/skills/feature-review-workflow/SKILL.md) provides a second line of defense: a diff under scripts/benchmarks/** is Blocking unless a green workflow run against the branch head is present in remediation inputs.