stagecrew 0.1.0

Disk usage management for shared or staging filesystems with automatic cleanup policies
Documentation
# Deny-by-default: ignore everything, explicitly allow tracked files.
# All file tracking is intentional. No glob patterns allowed.
*

# === Allowed: Project configuration ===
!/.gitignore
!/.pre-commit-config.yaml
!/Cargo.toml
!/Cargo.lock
!/justfile
!/AGENTS.md
!/opencode.json
!/README.md
!/LICENSE
!/rust-toolchain.toml
!/INSTALL.sh
!/cliff.toml

# === Allowed: Agent configuration ===
!/.agents
!/.agents/prd.json
!/.agents/progress.txt
!/.agents/PROMPT.md

# === Allowed: GitHub workflows ===
!/.github
!/.github/workflows
!/.github/workflows/ci.yml
!/.github/workflows/release.yml

# === Allowed: Source code ===
!/src
!/src/main.rs
!/src/lib.rs
!/src/error.rs
!/src/cli
!/src/cli/mod.rs
!/src/config
!/src/config/mod.rs
!/src/db
!/src/db/mod.rs
!/src/db/schema.sql
!/src/scanner
!/src/scanner/mod.rs
!/src/daemon
!/src/daemon/mod.rs
!/src/removal
!/src/removal/mod.rs
!/src/audit
!/src/audit/mod.rs
!/src/tui
!/src/tui/mod.rs
!/src/tui/input.rs
!/src/tui/ui.rs

# === Allowed: Tests ===
!/tests
!/tests/integration.rs
!/tests/cli_add.rs