بنقرة واحدة
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 المهني
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.
| 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.