Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 906 Bytes

File metadata and controls

32 lines (25 loc) · 906 Bytes

CLAUDE.md

Refer to AGENTS.md for comprehensive project documentation including:

  • Project architecture and structure
  • Tech stack and dependencies
  • Code conventions and patterns
  • Key abstractions and files
  • Development guidelines
  • Database schema

Quick Commands

docker-compose up -d          # Start infrastructure
uv sync                       # Install dependencies
make run                      # Run application
pytest                        # Run tests
black src/ && isort src/      # Format code
pyright                       # Type check

Key Entry Points

  • src/run.py - Application entry
  • src/agentic_layer/memory_manager.py - Core memory manager
  • src/infra_layer/adapters/input/api/ - REST API controllers

Remember

  • All I/O is async - use await
  • Multi-tenant system - data is tenant-scoped
  • Prompts in src/memory_layer/prompts/ (EN/ZH)