소스 정보
- 저장소
- suxrobGM/depvault
- 최근 소스 활동
- 2026년 4월 19일 17:06
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/suxrobGM/depvault --skill release-cli명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Create a pull request with a well-structured title and description based on branch commits.
Migrate a React @tanstack/react-form codebase from the prop-drilled `useForm` + erased-form-type pattern to the official `createFormHook` composition API (`useAppForm` / `withForm` / `field.X`). Use when a project threads a `form` object (often cast to an `any`-erased type like `ReactFormExtendedApi<any,...>`) through field-wrapper components that take `form`+`name` props, and you want typed field names/values, no casts, and reusable bound field components. Triggers: "migrate forms to createFormHook", "adopt useAppForm/withForm", "remove AnyReactForm cast", "type-safe tanstack form fields".
Best practices for Remotion - Video creation in React
SOC 직업 분류 기준
SKILL.md 표시 중
| name | release-cli |
| description | Bump version, update changelog, commit, and tag a new DepVault CLI release |
| user-invocable | true |
Create a new DepVault CLI release by bumping the version, adding a CHANGELOG
entry, committing, and creating a git tag that triggers the Release CLI
workflow.
The user provides a version number (e.g. 1.6.0) or a bump type (major,
minor, patch). If no argument is given, default to a patch bump.
apps/cli/DepVault.Cli.csproj — the <Version> elementapps/cli/CHANGELOG.md — Keep a Changelog format, newest on topcli/vX.Y.Z (matches .github/workflows/release-cli.yml trigger cli/v*)## [X.Y.Z] section from
apps/cli/CHANGELOG.md and uses it as the GitHub Release body. If no section
exists for the tag's version, the release job fails — so the changelog entry
is not optional.linux-x64, osx-x64,
osx-arm64, win-x64 and attaches archives to the GitHub ReleaseDetermine the new version:
apps/cli/DepVault.Cli.csproj (the <Version> element)1.6.0), use itmajor, minor, patch), calculate from currentPre-flight checks:
git status reports no changes)main (or ask the user if on another branch)cli/vX.Y.Z already exists (git tag -l)Bump version:
<Version>CURRENT</Version> with <Version>NEW</Version> in
apps/cli/DepVault.Cli.csprojUpdate apps/cli/CHANGELOG.md:
Read the existing file
Ask the user what changes to include in this release (or confirm entries they've already drafted)
Insert a new section at the top (above any existing version sections) in the form:
## [X.Y.Z] - YYYY-MM-DD
- Bullet 1
- Bullet 2
Use today's date in YYYY-MM-DD
Do NOT modify or remove existing entries
The new section must be non-empty — the release workflow will fail without it
Commit the changes:
apps/cli/DepVault.Cli.csproj and apps/cli/CHANGELOG.mdchore(cli): release vX.Y.ZCreate an annotated tag:
git tag -a cli/vX.Y.Z -m "DepVault CLI vX.Y.Z"--no-verify or --no-gpg-sign if hooks fail — report the failure insteadgit push && git push origin cli/vX.Y.Z to trigger
the Release CLI workflow, which will publish the GitHub Release with
the CHANGELOG section as the body and AOT binaries for all four RIDs