소스 정보
- 저장소
- suxrobGM/depvault
- 최근 소스 활동
- 2026년 6월 1일 12:56
- 감지된 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 pr명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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".
Bump version, update changelog, commit, and tag a new DepVault CLI release
Best practices for Remotion - Video creation in React
SOC 직업 분류 기준
SKILL.md 표시 중
| name | pr |
| description | Create a pull request with a well-structured title and description based on branch commits. |
| argument-hint | [--base <branch>] [--draft] |
Create a pull request from the current branch with a clear title and structured description based on all commits since diverging from the base branch.
Run these commands in parallel:
git status
git branch --show-current
git log --oneline -1 origin/HEAD 2>/dev/null || git log --oneline -1 origin/main 2>/dev/null || git log --oneline -1 origin/master
Determine the base branch:
--base <branch> is in $ARGUMENTS, use thatmain or master (whichever exists on remote)Then run:
git log --oneline <base>..HEAD
git diff <base>...HEAD --stat
Read the full diff to understand the scope of changes:
git diff <base>...HEAD
Understand all commits on the branch, not just the latest one. Group related changes by area.
git rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null
If the branch doesn't track a remote, or is behind, push first:
git push -u origin <current-branch>
feat: — save that for commitsUse this format:
## Summary
<1-3 bullet points covering the key changes>
## Changes
<grouped list of what was changed, organized by area>
## Test plan
- [ ] <checklist of how to verify the changes>
Rules:
Co-Authored-By or AI attributionParse $ARGUMENTS for flags:
--draft: create as draft PR--base <branch>: set base branchgh pr create --title "<title>" --base <base-branch> [--draft] --body "$(cat <<'EOF'
## Summary
...
## Changes
...
## Test plan
...
EOF
)"
Output the PR URL so the user can open it.
Small fix:
Title: Fix payer deletion removing all records instead of selected ones
## Summary
- Fix dangerous Prisma `deleteMany` behavior where `undefined` filter deletes all records
- Align frontend request body property names with backend expectations
## Changes
- **Backend:** `payer.ts` — read `payerIds` instead of `ids`, add `UserId` scope
- **Backend:** `form.ts` — same fix for form deletion
## Test plan
- [ ] Select 2 payers and delete — only those 2 should be removed
- [ ] Select 1 form and delete — only that form should be removed
- [ ] Verify other users' records are unaffected
Feature branch with multiple changes:
Title: Migrate RTK Query slices and fix multiple API issues
## Summary
- Fix several frontend/backend mismatches causing data loss and silent errors
- Extract shared toast helpers to reduce duplication across 8 API slices
- Unify admin login through the regular login page
## Changes
### Backend
- Fix payer and form delete endpoints to scope by `UserId`
- Add admin detection in login service
- Handle admin role in `GET /user/me`
### Frontend
- Extract `toastOnQueryStarted` and `errorOnlyOnQueryStarted` into `query-helpers.ts`
- Fix error path from `data.data.message` to `data.error.message` across all API slices
- Remove dedicated admin login page
- Fix checkout order summary payload shape
## Test plan
- [ ] Login as admin through `/auth/login` — should redirect to admin dashboard
- [ ] Delete selected payers/forms — only selected records removed
- [ ] Submit a form and trigger a backend error — error toast should display
- [ ] Complete checkout flow — order summary displays, payment succeeds
Co-Authored-By or AI attribution to the PR body