Use this file to discover all available pages before exploring further.
AgentFS records every file operation and tool call, giving you complete visibility into agent behavior. This is essential for debugging, compliance, and understanding how agents work.
Since AgentFS uses SQLite, you can run arbitrary queries:
Turso
SQLite
tursodb .agentfs/my-session.db
sqlite3 .agentfs/my-session.db
Example queries:
-- Find all tool calls that took longer than 1 secondSELECT name, duration_msFROM toolcallsWHERE duration_ms > 1000;-- Count tool usage by typeSELECT name, COUNT(*) as countFROM toolcallsGROUP BY nameORDER BY count DESC;-- Find files modified in the last hourSELECT path, mtimeFROM fs_inodeWHERE mtime > strftime('%s', 'now', '-1 hour');-- Get total bytes writtenSELECT SUM(size) as total_bytesFROM fs_inodeWHERE mode & 0170000 = 0100000; -- regular files only
When an agent fails, use the timeline to understand what happened:
# See recent activityagentfs timeline my-session --limit 20# Focus on errorsagentfs timeline my-session --status error# Check what files were created/modifiedagentfs fs ls my-session