用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill android-branch-create命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | android-branch-create |
| description | Create a branch with correct prefix and base. Use when this capability is needed. |
| metadata | {"author":"Adyen"} |
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.
Source: Adyen/adyen-android — distributed by TomeVault.