🎯

commit

🎯Skill

from bumgeunsong/daily-writing-friends

VibeIndex|
What it does

Stages and commits git changes following specific Korean commit message guidelines for clean, meaningful version control.

πŸ“¦

Part of

bumgeunsong/daily-writing-friends(12 items)

commit

Installation

git cloneClone repository
git clone https://github.com/BumgeunSong/daily-writing-friends.git
npm runRun npm script
npm run dev
πŸ“– Extracted from docs: bumgeunsong/daily-writing-friends
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Use when creating git commits in this project

Overview

# Git Commit

Context

  • Current git status: !git status
  • Current git diff (staged and unstaged changes): !git diff HEAD
  • Current branch: !git branch --show-current
  • Recent commits: !git log --oneline -10

Commit Rules

Size

Small logical steps forward. Each commit = one feature, one fix, or one refactor.

Message Format

```

  • WHY point 1
  • WHY point 2

```

  • Title: Concise Korean summary (50 chars max)
  • Body: 1-3 bullet points explaining WHY we made this change (not WHAT changed)

No AI Signatures

Never include:

  • Generated with [Claude Code]
  • Co-Authored-By: Claude
  • Any emoji or AI branding

Good vs Bad Examples

```

# BAD - describes WHAT changed (obvious from diff)

토큰 μ‚¬μš©λŸ‰ 좔적 버그 μˆ˜μ •

  • Changed modelUsage.tokens to usage.input_tokens
  • Added try-catch block

# GOOD - explains WHY we made changes

토큰 μ‚¬μš©λŸ‰ 좔적 버그 μˆ˜μ •

  • API response structure changed in v2, tokens now nested under modelUsage
  • Fallback needed for backward compatibility with older API responses

```

Your Task

Based on the above changes and rules, create a single git commit. Stage and commit using a single message. Do not use any other tools or send any text besides the tool calls.

More from this repository10

🎯
refactoring🎯Skill

Refactors code by extracting pure functions from side-effect-laden logic, enabling easier testing and maintainability.

🎯
code-style🎯Skill

Enforces clean, readable code by providing guidelines for function design, naming conventions, and code clarity principles.

🎯
testing🎯Skill

Enforces output-based testing of pure functions, guiding developers to write testable code by focusing on functional core transformations.

🎯
react-hook🎯Skill

I apologize, but I cannot generate a description without seeing the specific details about the "react-hook" skill from the repository. Could you provide more context or details about what this part...

🎯
pr-stacking🎯Skill

Enables developers to break large features into smaller, dependent PRs for incremental development and easier code reviews.

🎯
daily-writing-friends-design🎯Skill

Provides a comprehensive design system for Daily Writing Friends, ensuring consistent UI components, styling, and accessibility across the application.

🎯
api-layer🎯Skill

Manages API interactions and request handling for the Daily Writing Friends application, facilitating communication between frontend and backend services.

🎯
skill-creator🎯Skill

Guides developers in designing Claude Skills using progressive disclosure, optimizing skill architecture and content creation.

🎯
fetching-pr-comments🎯Skill

Retrieves and parses GitHub PR review comments for the current branch using GitHub CLI, enabling quick review of code-level feedback.

🎯
firebase-functions🎯Skill

Streamlines Firebase Cloud Functions development with structured TypeScript patterns, error handling, and organized function implementations.