一键导入
android-branch-create
Create a branch with correct prefix and base.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a branch with correct prefix and base.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | android-branch-create |
| description | Create a branch with correct prefix and base. |
Create a new branch for the Adyen Android SDK following project naming conventions.
Invoke this skill when starting new work that requires a branch. The skill determines the correct prefix, base branch, and name, then creates and checks out the branch.
Ask the user what type of work this is:
| Prefix | When to use |
|---|---|
feature/ | New functionality or enhancements |
fix/ | Bug fixes |
chore/ | Internal changes, refactoring, tooling, maintenance |
Note: Until v6 is released, use
chore/for all branches based onmain(where v6 development happens). Thefeature/andfix/prefixes require release notes, which are not applicable during v6 development.
main (current development branch, v6)v5 only for essential fixes or features required for v5 maintenanceFormat: <prefix>/<descriptive-name>
Rules:
chore/v6-sdk-data-implementation)For branch chaining (multi-phase work):
Example chain:
chore/drop-in-payment-method-list
chore/drop-in-payment-method-list-default
chore/drop-in-payment-method-list-ui
chore/drop-in-payment-method-list-stored
Present the proposed branch name and base branch. Ask for approval before creating.
git checkout <base-branch>
git pull
git checkout -b <branch-name>
git push --set-upstream origin <branch-name>
Confirm the branch was created by running git rev-parse --abbrev-ref HEAD.
Plan and execute the migration of a v5 payment method to the v6 component architecture.
Run compile, lint, and unit test checks.
Create a commit with pre-commit checks and conventions.
Create a draft PR with title, body, and checklist.