بنقرة واحدة
branch
Create a feature branch from a Linear ticket
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create a feature branch from a Linear ticket
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | branch |
| description | Create a feature branch from a Linear ticket |
| argument-hint | <ticket-id> |
| disable-model-invocation | true |
| allowed-tools | Bash |
Fetch the Linear ticket using the get_issue MCP tool with ticket identifier $ARGUMENTS. Extract the ticket title.
Generate a kebab-case slug from the title:
Get the developer prefix by running git config user.name, lowercasing the result, and taking only the first name (first word).
Update default branch:
Look for the "HEAD branch" line to identify whether the default branch is master or main. Use that as the base branch.
git checkout master && git pull origin master
Create the feature branch from master:
git checkout -b <prefix>/<TICKET>-<slug>
Where <TICKET> is the original ticket identifier (e.g. MCI-55) and <slug> is the generated slug.
Confirm by showing:
git statusFor ticket LMO-55 with title "Branch create util" and git user "Neb Borf":
neb/LMO-55-branch-create-util