Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
11 changes: 6 additions & 5 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CLAUDE.md

Refer to [AGENTS.md](AGENTS.md) for comprehensive project documentation including:
Refer to [AGENTS.md](methods/evermemos/AGENTS.md) for comprehensive project documentation including:
- Project architecture and structure
- Tech stack and dependencies
- Code conventions and patterns
Expand All @@ -11,6 +11,7 @@ Refer to [AGENTS.md](AGENTS.md) for comprehensive project documentation includin
## Quick Commands

```bash
cd methods/evermemos
docker-compose up -d # Start infrastructure
uv sync # Install dependencies
make run # Run application
Expand All @@ -21,12 +22,12 @@ 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
- `methods/evermemos/src/run.py` - Application entry
- `methods/evermemos/src/agentic_layer/memory_manager.py` - Core memory manager
- `methods/evermemos/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)
- Prompts in `methods/evermemos/src/memory_layer/prompts/` (EN/ZH)
Loading