File Navigation
When to use this skill
- •After finding an account, need to read its details
- •User asks about specific communications (emails, calls, SMS)
- •Need to understand account history or current state
Tools available
list_directory
List contents of an account folder:
json
{
"tool": "list_directory",
"args": {"path": "mem/accounts/29041"}
}
read_file
Read a specific file:
json
{
"tool": "read_file",
"args": {"path": "mem/accounts/29041/state.md"}
}
Account directory structure
See references/directory-structure.md for full details.
code
mem/accounts/{account_id}/
├── state.md # Current status, contacts, next steps
├── history.md # Change history with linked entries
└── sources/
├── emails/
│ └── email_{id}/
│ ├── raw.txt # Original email
│ └── summary.md # AI summary
├── calls/
│ └── call_{id}/
│ ├── raw.txt # Transcript
│ └── summary.md # AI summary
└── sms/
└── sms_{id}/
├── raw.txt
└── summary.md
Reading strategy
- •Start with
state.mdfor current status - •Check
history.mdfor recent changes - •Navigate to
sources/for specific communications - •Read
summary.mdfirst, thenraw.txtif more detail needed