ソース情報
- リポジトリ
- 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コマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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