Initial commit: VoIdeaAI - voice-first AI idea assistant

This commit is contained in:
2026-05-13 12:51:42 +03:00
commit 688d043dad
421 changed files with 47915 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
# Conventional Commits — шпаргалка
```
<тип>[optional scope]: <описание>
[optional body]
[optional footer]
```
## Типы
| Тип | Описание | Версия |
|-----|----------|--------|
| `feat` | Новая функция | MINOR |
| `fix` | Исправление бага | PATCH |
| `BREAKING` | Несовместимое изменение | MAJOR |
| `docs` | Документация | — |
| `style` | Форматирование | — |
| `refactor` | Рефакторинг | — |
| `test` | Тесты | — |
| `chore` | Обслуживание | — |
## Примеры
```
feat(auth): add OAuth2 login with Yandex
fix: handle empty list in idea search
BREAKING: change API response format
docs: update README with setup instructions
refactor: extract IdeaService from api/ideas.py
```