スキル一覧に戻る
tettuan

create-feature-branch

by tettuan

Development prompt&schema tool for automated AI development, using TypeScript and JSON.

1🍴 0📅 2026年1月6日
GitHubで見るManusで実行

SKILL.md


name: create-feature-branch description: Create a new feature branch following Git Flow strategy. Use when starting new feature development, creating a branch for an issue, or when user says "create branch", "new feature", "start working on issue". allowed-tools: Bash, Read

Create Feature Branch

This skill creates feature branches following the project's Git Flow strategy.

Branch Naming Convention

PrefixPurposeExample
feat/New featurefeat/issue-88-return-mode
fix/Bug fixfix/stdout-encoding
refactor/Refactoringrefactor/output-processor
update/Dependency updatesupdate/jsr-packages
remove/Feature removalremove/deprecated-api

Workflow

1. Ensure clean working directory

git status

If there are uncommitted changes, ask user how to handle them.

2. Update develop branch

git checkout develop
git pull origin develop

3. Create feature branch

Format: {prefix}/issue-{number}-{short-description}

git checkout -b feat/issue-{NUMBER}-{DESCRIPTION}

4. Confirm creation

git branch --show-current

Checklist

  • Working directory is clean
  • develop branch is up to date
  • Branch name follows convention
  • Branch is created from develop

Example

For Issue #88 (add return mode):

git checkout develop
git pull origin develop
git checkout -b feat/issue-88-return-mode

Notes

  • Always branch from develop, not main
  • Include issue number in branch name for traceability
  • Use lowercase with hyphens for descriptions

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です