# RESTRICTIVE AIDIGEST IGNORE - Extract ONLY Python and YAML files from 3 core directories
# This file extracts Python code from the 3 most important folders only:
# - ai/ (multi-agent core)
# - api/ (HTTP layer) 
# - lib/ (shared services)

# Ignore EVERYTHING by default
*

# Allow the core directories themselves
!ai/
!api/
!lib/

# Allow subdirectories recursively
!ai/**/
!api/**/
!lib/**/

# Allow Python and YAML files in these directories
!ai/**/*.py
!api/**/*.py
!lib/**/*.py
!ai/**/*.yaml
!ai/**/*.yml
!api/**/*.yaml
!api/**/*.yml
!lib/**/*.yaml
!lib/**/*.yml