askill
gitkkal-branch

gitkkal-branchSafety 95Repository

Create semantic Git branch names from code intent and project conventions. Use when the user asks for `/gitkkal:branch` or `$gitkkal-branch`, wants a branch suggestion from current diffs, or wants consistent branch naming like `feat/add-login`.

1 stars
1.2k downloads
Updated 2/13/2026

Package Files

Loading files...
SKILL.md

Gitkkal Branch

Create and checkout a branch name that reflects the change intent.

Agent-Agnostic Rules

  • Do not assume client-specific UI features (forms, plan mode, special slash-command runtime).
  • Treat trigger command examples as optional; plain-language requests are equally valid.
  • Use a hint-first input model: accept one optional free-form description/hint string.
  • Do not require strict named parameters for normal usage.
  • If user input is needed, ask in plain chat.
  • Ask one clear follow-up at a time for unresolved decisions.
  • If presenting a multiple-choice question, use options as standalone lines (1), 2), 3), ...).
    • Do not use Markdown ordered-list syntax (1., 2., ...), and do not prefix question text with list numbers.
    • Restart numbering at 1) for every question.

Workflow

  1. Resolve repo root and load {repo_root}/.gitkkal/config.json.
  • If missing, use defaults: language=en, branchPattern=type/description.
  1. Handle user argument.
  • If a branch description argument is provided, use it directly and skip diff analysis.
  1. If no argument, inspect current changes.
  • Run git status --short, git diff, and git diff --cached.
  • If there are no changes, ask the user for a short branch description.
  1. Infer semantic intent from actual diff content.
  • Focus on why the change exists, not file counts.
  • If intent is unclear, ask for clarification instead of guessing.
  1. Select branch type.
  • Use one of these numbered options:
    1. feat
    2. fix
    3. refactor
    4. docs
    5. test
    6. style
    7. chore
    8. perf
    9. ci
  1. Build branch slug.
  • Require English lowercase kebab-case only.
  • Allow only [a-z0-9-].
  • Limit length to 50 chars.
  • If the user gives non-English text, ask for an English description.
  1. Apply naming format.
  • type/description: {type}/{slug}
  • description-only: {slug}
  1. Confirm branch name with user and allow custom override.
  2. Create the branch with git checkout -b <branch_name>.

Guardrails

  • Never include spaces, uppercase, or special characters except -.
  • Never exceed 50 characters in the slug.
  • If the branch already exists, propose a safe alternative (for example suffix number).
  • If not a Git repo, stop and report clearly.

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

85/100Analyzed 2/20/2026

Well-structured skill for creating semantic Git branch names with clear workflow steps, agent-agnostic rules, and comprehensive guardrails. Includes when-to-use trigger in description, structured numbered steps, and relevant tags. The core branch naming logic (type/description format) is reusable though the skill references a specific gitkkal tool. High actionability and safety scores, with minor completeness deductions for config file format details.

95
90
75
85
92

Metadata

Licenseunknown
Version-
Updated2/13/2026
PublisherBitYoungjae

Tags

ci-cdgithub-actionstesting