Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .claude/CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# qbit_manage

Python tool for managing qBittorrent. Automates tagging, categorization, orphan cleanup, and more.

## Project
- Python 3.10+, setuptools + pyproject.toml
- Ruff: line-length=130 (see ruff.toml)
- Entry point: `qbit_manage.py`
- Config: `config/config.yml` (gitignored)
- Logs: `config/logs/`

## Structure
- `modules/` — core logic (qbittorrent.py, config.py, webhooks.py, util.py)
- `modules/core/` — per-feature modules (tags, share_limits, category)
- `scripts/` — standalone utilities
- `build/` — generated, never edit

## Dev
- `pip install -e ".[dev]"` to install with dev deps
- `ruff check --fix .` — lint and auto-fix
- `ruff format .` — format
- PRs target the `develop` branch