https://github.com/wincent/filechute
Tag-based document archive
https://github.com/wincent/filechute
Last synced: 14 days ago
JSON representation
Tag-based document archive
- Host: GitHub
- URL: https://github.com/wincent/filechute
- Owner: wincent
- License: unlicense
- Created: 2026-03-22T17:09:11.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-03-23T07:18:25.000Z (5 months ago)
- Last Synced: 2026-03-23T17:31:36.833Z (5 months ago)
- Language: Swift
- Size: 264 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Filechute
A macOS app for tag-based file organization.
## Build and run
```
make run
```
## Tests
```
make test # unit tests (SPM)
make uitest # UI tests (Xcode)
```
## Formatting
```
bin/check-format # lint
bin/format # auto-fix
```
## Debug logging
The app logs to both an in-app log window and the macOS unified log.
**In-app:** Debug > Show Log (Cmd+Option+L)
**Terminal:** Stream logs in real time:
```
log stream --predicate 'subsystem == "dev.wincent.Filechute"' --level debug
```
**Console.app:** Open Console, then filter by the subsystem `dev.wincent.Filechute`.
Set the "Action" menu to "Include Debug Messages" to see debug-level entries.
## Claude Code memory
To keep Claude Code memory files tracked in the repo:
```
ln -s "$(pwd)/.claude-memory" ~/.claude/projects/${MANGLED-PROJECT-PATH}/memory
```