소스 정보
- 저장소
- 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 upgrade-devproxy-version명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | upgrade-devproxy-version |
| description | > Use when this capability is needed. |
Bump Dev Proxy from current version to a new version across all project files.
Confirm the Dev Proxy workspace is open:
DevProxy.sln./schemas/v<current-version>/ existsDevProxy/, DevProxy.Abstractions/, DevProxy.Plugins/ presentFind current version from DevProxy/DevProxy.csproj:
<Version>X.Y.Z</Version>
Copy the schema folder to the new version:
cp -r ./schemas/v<current-version> ./schemas/v<new-version>
Update version in all relevant files. There are two categories:
Category A: Assembly/Package Version (format: X.Y.Z)
Update <Version>X.Y.Z</Version> in:
DevProxy/DevProxy.csprojDevProxy.Abstractions/DevProxy.Abstractions.csprojDevProxy.Plugins/DevProxy.Plugins.csprojCategory B: Schema URLs (format: vX.Y.Z in URL paths)
Update schemas/v<old>/ to schemas/v<new>/ in:
DevProxy/devproxyrc.json - $schema URLsDevProxy/devproxy-errors.json - $schema URLDevProxy/config/m365.json - all $schema URLsDevProxy/config/m365-mocks.json - $schema URLDevProxy/config/microsoft-graph.json - all $schema URLsDevProxy/config/microsoft-graph-rate-limiting.json - $schema URLDevProxy/config/spo-csom-types.json - $schema URLDevProxy.Plugins/Mocking/MockResponsePlugin.cs - hardcoded schema URLCategory C: Installer Files (format: X.Y.Z or X.Y.Z-beta.N)
Update version in:
install.iss:
#define MyAppSetupExeName "dev-proxy-installer-win-x64-X.Y.Z"#define MyAppVersion "X.Y.Z"install-beta.iss:
#define MyAppSetupExeName "dev-proxy-installer-win-x64-X.Y.Z-beta.N"#define MyAppVersion "X.Y.Z-beta.N"Category D: Script Files (format: vX.Y.Z or vX.Y.Z-beta.N)
Update version string in:
scripts/local-setup.ps1 - $versionString = "vX.Y.Z-beta.N"scripts/version.ps1 - $script:versionString = "vX.Y.Z-beta.N"Category E: Dockerfiles (format: X.Y.Z or X.Y.Z-beta.N)
Update DEVPROXY_VERSION ARG in:
Dockerfile - ARG DEVPROXY_VERSION=X.Y.ZDockerfile_beta - ARG DEVPROXY_VERSION=X.Y.Zscripts/Dockerfile_local - ARG DEVPROXY_VERSION=X.Y.Z-beta.NDifferent files use different version formats:
| Location | Format | Example |
|---|---|---|
csproj <Version> | X.Y.Z | 2.1.0 |
| Schema URL path | vX.Y.Z | v2.1.0 |
| Installer stable | X.Y.Z | 2.1.0 |
| Installer beta | X.Y.Z-beta.N | 2.1.0-beta.1 |
| Script version | vX.Y.Z-beta.N | v2.1.0-beta.1 |
| Dockerfile stable | X.Y.Z | 2.1.0 |
| Dockerfile beta | X.Y.Z-beta.N | 2.1.0-beta.1 |
DevProxy/DevProxy.csprojcp -r ./schemas/v{old} ./schemas/v{new}Use the bundled script to automate the upgrade:
.github/skills/upgrade-devproxy-version/scripts/upgrade-version.sh <new-version> [workspace-root]
Example:
.github/skills/upgrade-devproxy-version/scripts/upgrade-version.sh 2.1.0 .
The script handles all categories automatically, including detecting the current version and applying appropriate beta suffixes where needed.
System.CommandLine package version (coincidentally 2.0.0-beta5).vscode/tasks.json version (different context)-beta.N suffixX.Y.ZTo find all version references, use:
# Assembly versions
grep -r "X\.Y\.Z" --include="*.csproj"
# Schema URLs
grep -r "schemas/vX\.Y\.Z" --include="*.json" --include="*.cs"
# Installer versions
grep -r "X\.Y\.Z" --include="*.iss"
# Script versions
grep -r "vX\.Y\.Z" --include="*.ps1"
# Step 1: Copy schemas
cp -r ./schemas/v2.0.0 ./schemas/v2.1.0
# Step 2: Find and update all version strings
# (Use grep/sed or editor find-replace)
Files to update:
2.0.0 → 2.1.0v2.0.0 → v2.1.0After upgrade, verify:
<Version>./schemas/v{new}/ existsdotnet build succeedsSource: dotnet/dev-proxy — distributed by TomeVault.
SOC 직업 분류 기준