analyze-bugs
**Purpose:** Analyze bug reports from host projects (framework project only).
Создать git commit с правильным сообщением
$ npx -y skills add alexeykrol/claude-code-starter --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/commitContext preview
What this command does when you run it.
Создать git commit с правильным сообщением
description: Создать git commit с правильным сообщением
Создай git commit следуя лучшим практикам.
**ВАЖНО: НЕ используй git add . бездумно!**
Выполни параллельно:
❌ НЕ добавляй в коммит:
⚠️ Если пользователь явно просит закоммитить эти файлы - предупреди его о рисках!
Добавляй файлы **по отдельности** или группами, НЕ `git add .`:
git add path/to/file1.ts path/to/file2.ts
Или по паттерну:
git add src/**/*.ts
**Формат:**
<type>: <краткое описание> (до 50 символов) <детальное описание - ПОЧЕМУ, а не ЧТО> - Причина изменения - Какую проблему решает - Важные детали 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
**Types:**
**Примеры хороших сообщений:**
feat: add user authentication with JWT Implement JWT-based authentication to secure API endpoints. - Add login/logout endpoints - Create auth middleware for protected routes - Store tokens in httpOnly cookies for security 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
fix: prevent memory leak in useEffect cleanup Users reported app slowdown after long sessions. Root cause was missing cleanup in dashboard useEffect hook. - Add cleanup function to WebSocket subscription - Clear intervals on component unmount 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Используй HEREDOC для правильного форматирования:
git commit -m "$(cat <<'EOF' <type>: <краткое описание> <детальное описание> 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> EOF )"
git log -1 --stat
Если коммит провалился из-за pre-commit hook: 1. Посмотри какие изменения сделал hook 2. Если hook только отформатировал код - сделай amend:
git add <измененные файлы> git commit --amend --no-edit
Перед коммитом ВСЕГДА проверь:
**Если пользователь не указал что коммитить - спроси его!**
Claude Code Starter — это готовая управляющая среда для проектов, в которых основной рабочий агент — Claude Code.
Repo: alexeykrol/claude-code-starter
**Purpose:** Analyze bug reports from host projects (framework project only).
**Purpose:** Analyze local bug reports to find patterns and recurring issues.