This repository has been archived on 2026-04-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
core/ISSUES.md
2026-02-19 15:03:20 +00:00

38 lines
721 B
Markdown

# Development Workflow
## Branches
- `main` — stable, deployable
- `feature-*` — feature branches, merge to main via PR
## Issue Format
Title: `[CATEGORY] Description`
Categories: `BACKEND`, `FRONTEND`, `DEVOPS`, `TESTING`, `DOCS`, `BUG`
## Commit Messages
```
[Category] Short description
Longer explanation if needed. Closes #XX
```
## PR Checklist
- [ ] Code follows existing style
- [ ] Tested manually
- [ ] No breaking API changes (or documented)
- [ ] Docs updated if user-facing
- [ ] Screenshots if UI changes
## Current Priorities
1. WebSocket hub (blocks Channels)
2. Channels backend + frontend
3. Plugin architecture design
4. Notes & Knowledge Base
See [ROADMAP.md](ROADMAP.md) for detail.