getInbox
Retrieve all captured items from your personal knowledge base to review pending tasks, notes, and goals stored in markdown files.
Instructions
Get all items from the inbox/capture list
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/core/brain.ts:129-137 (handler)The actual implementation of the getInbox tool logic within the Brain class.
async getInbox(): Promise<InboxItem[]> { try { const file = await this.sync.readSection("inbox"); return parseInbox(file.content); } catch (err) { if (isNotFound(err)) return []; throw err; } } - src/tools/inbox.ts:10-10 (registration)Registration of the getInbox tool.
toolHandler("getInbox", async () => brain.getInbox())