한국어 | English
- macOS 13.0+
- Swift 5.9+
- Dependencies: ZIPFoundation (automatically managed in Package.swift)
git clone https://github.com/DinN0000/DotBrain.git
cd DotBrain
swift buildmain— stable releasesfeature/*— feature development, merge into main when complete- Delete feature branches after merge (local + remote)
Conventional Commits format, in English:
feat: add vault search functionality
fix: resolve folder nesting bug in classifier
perf: parallelize file extraction with TaskGroup
docs: update architecture design document
refactor: consolidate dashboard views
style: systematize color scheme
chore: update .gitignore
- Zero warnings —
swift buildmust produce no warnings before committing - Do not add unnecessary comments or docstrings
- Only modify what was requested — do not refactor surrounding code
See CLAUDE.md for detailed code style and security rules
- Work on a feature branch
- Verify
swift buildsucceeds - Create a PR (follow the template)
- Merge into main after review