- Introduced a new hive-mind architecture that allows the Core Intelligence to issue directives to anonymous processing nodes. - Each node executes its directive and merges output into a collective state, visible to all nodes in real-time. - Added support for dynamic cognitive cycles, enabling flexible task management. - Implemented documentation generation for hive-mind runs, ensuring a durable record of decisions and actions. - Refactored existing company pipeline tools to align with the new hive-mind structure, replacing division-specific prompts with a more generalized approach. - Updated workflow rendering to accommodate hive-mind nodes and their system-assigned designations. - Enhanced error handling and validation for cognitive cycle plans.
48 lines
1.6 KiB
Markdown
48 lines
1.6 KiB
Markdown
---
|
|
name: commit-convention
|
|
description: Conventional Commits format and version-bump rules for this repo (Bahasa Indonesia commit style). Use when creating a git commit in zesdex.
|
|
---
|
|
|
|
# Commit Convention
|
|
|
|
Gunakan **Conventional Commits** untuk semua commit. Format:
|
|
|
|
```
|
|
<type>(<scope>): <description>
|
|
```
|
|
|
|
**Type & efek ke versi:**
|
|
|
|
| Type | Bump | Kapan pakai |
|
|
|-------------|-------|------------------------------------------|
|
|
| `feat` | minor | Fitur baru |
|
|
| `fix` | patch | Perbaikan bug |
|
|
| `chore` | patch | Maintenance, update deps, dll |
|
|
| `docs` | patch | Perubahan dokumentasi/comment |
|
|
| `refactor` | patch | Refactor kode tanpa perubahan fungsional |
|
|
| `test` | patch | Nambah/ubah test |
|
|
| `style` | patch | Formatting, whitespace, lint |
|
|
| `perf` | patch | Optimasi performa |
|
|
| `ci` | patch | Perubahan CI/CD |
|
|
|
|
**Catatan:**
|
|
- **Semua type menghasilkan release** (patch minimal). Tidak ada commit yang "skip release".
|
|
- Tambahkan `BREAKING CHANGE:` di body commit untuk bump **major**.
|
|
- **Scope** opsional, tapi direkomendasikan (misal `feat(agent):`, `fix(ipc):`).
|
|
|
|
### Contoh
|
|
|
|
```
|
|
feat(tool): add batch file delete
|
|
|
|
chore: bump reqwest to 0.12
|
|
|
|
refactor(harness): flatten guard pipeline
|
|
|
|
fix(ipc): reconnect loop on socket timeout
|
|
|
|
docs: add architecture diagram to README
|
|
|
|
BREAKING CHANGE: IPC frame header changed from 4-byte to 8-byte length
|
|
```
|