analyze-bugs
**Purpose:** Analyze bug reports from host projects (framework project only).
Помочь написать тесты для кода
$ npx -y skills add alexeykrol/claude-code-starter --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/testContext preview
What this command does when you run it.
Помочь написать тесты для кода
description: Помочь написать тесты для кода
Помоги написать тесты для указанного кода.
**Стратегия тестирования:**
1. **Определи тип теста:**
2. **Определи что тестировать:**
3. **Настрой окружение:**
4. **Напиши тесты:**
5. **Покрытие:**
**Пример структуры:**
describe('ComponentName', () => {
describe('when user is authenticated', () => {
it('should render correctly', () => {
// test
})
it('should handle submit', () => {
// test
})
})
describe('when user is not authenticated', () => {
it('should redirect to login', () => {
// test
})
})
describe('error handling', () => {
it('should show error message on failure', () => {
// test
})
})
})**Best practices:**
См. `.claude/testing-guide.md` для подробностей.
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.