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
@@ -0,0 +1,34 @@
# Шаблон changelog агента
Используйте для инициализации changelog нового агента.
Формат файла: `CHANGELOG/agents/{agent_name}.md`
```markdown
# {agent_name} Changelog
<!-- checksum: {sha256_hash} -->
## 1.0.0 ({date})
- Initial version
```
## Пример
```markdown
# doc_agent Changelog
<!-- checksum: a1b2c3d4e5f67890abcdef1234567890abcdef1234567890abcdef1234567890 -->
## 1.2.1 (2026-05-11)
- Fixed: update README on file rename
- Fixed: handle empty docstrings gracefully
## 1.2.0 (2026-05-10)
- Added: YAML prompt loading support
- Added: cross-reference validation
## 1.1.0 (2026-05-09)
- Added: auto-generate README for new modules
## 1.0.0 (2026-05-01)
- Initial version
```