con un clic
android-branch-create
Create a branch with correct prefix and base.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Create a branch with correct prefix and base.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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.