소스 정보
- 저장소
- wanghaisheng/web3-scaffold-app-monorepo
- 최근 소스 활동
- 2026년 4월 15일 21:39
- 감지된 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/wanghaisheng/web3-scaffold-app-monorepo --skill 1k-git-workflow명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Analytics event tracking for OneKey. Use when adding tracking events, logging to server, user behavior tracking, or business metrics. Covers the @LogToServer decorator pattern, logger scope/scene architecture, and common pitfalls. Triggers on "埋点", "统计", "打点", "数据追踪", "日志", "analytics", "tracking event", "Mixpanel", "LogToServer", "trackEvent", "defaultLogger".
Create test versions to verify app auto-update functionality and version migration.
Release branch management — checkout from release, prepare builds, pre-release diff checks, publish tracking, and sync back to x. Use this skill when managing release branches, creating branches for bundle releases, running pre-release diff checks, finalizing releases, or syncing release changes to x. Triggers on "bundle release", "release diff", "release publish", "release sync", "release checkout", "发布管理", "release 分支", "release management", "bundle-release", "bundle branch".
SOC 직업 분류 기준
SKILL.md 표시 중
| name | 1k-git-workflow |
| description | Git workflow and conventions — branching, commit messages, and PR creation. |
| allowed-tools | Bash, Read |
x - This is the primary development branchx → create feature branch → develop → PR back to xonekey, master, or main as the base branch - always use xx branch → ALWAYS create feature branchesfeat/description or feature/descriptionfix/descriptionrefactor/descriptionUse Conventional Commits format:
feat: - New featuresfix: - Bug fixesrefactor: - Code refactoringperf: / optimize: - Performance improvementschore: - Build, version, or non-code changesdocs: - Documentation onlyFormat: type: short description
fix: resolve login bug OK-12345IMPORTANT - Claude Code commits:
Follow the same format as commit messages:
feat: add dark mode supportfix: resolve authentication timeout issuerefactor: simplify payment processing logicgit checkout x
git pull origin x
git checkout -b feat/my-new-feature
Option 1: Use /commit command (Recommended)
/commit
The /commit command automatically runs pre-commit checks (yarn lint:staged and yarn tsc:staged) and creates a well-formatted commit message.
Option 2: Manual commit with pre-checks
# Stage your changes
git add .
# Run pre-commit checks (MANDATORY)
yarn lint:staged
yarn tsc:staged
# If checks pass, commit
git commit -m "feat: add user profile page"
IMPORTANT:
/commit command handles this automaticallygit push -u origin feat/my-new-feature
# Then create PR via GitHub UI or gh CLI
git fetch origin
git rebase origin/x