revise tool calls

This commit is contained in:
KS Jannette
2026-08-31 09:21:06 -04:00
parent e7feb61e6f
commit 25ac1ec68f
4 changed files with 68 additions and 69 deletions

View File

@@ -97,10 +97,10 @@ The server fetches unread emails, classifies them using your configured prompts,
| Category | Description | Default Action |
|----------|-------------|----------------|
| **A** | Acknowledgements, auto-replies | Delete |
| **B** | Advancement (interview requests, next steps) | Log + Calendar event |
| **C** | Rejections | Delete |
| **D** | Other/uncategorized | Log for review |
| **A** | Acknowledgements, auto-replies | Star and mark read |
| **B** | Advancement (interview requests, next steps) | Log + Calendar event (never star) |
| **C** | Rejections | Star and mark read |
| **D** | Other/uncategorized | Star, mark read, and log for review |
### Customizing Prompts
@@ -119,7 +119,7 @@ Changes take effect immediately without rebuilding.
|------|-------------|
| `fetch_new_emails` | Fetch unread emails with classification instructions appended |
| `delete_emails` | Move specified message IDs to trash |
| `star_emails` | Star messages and mark as read |
| `star_emails` | Star Category A/C/D messages and mark as read |
| `append_to_summary` | Log email metadata to local JSON (auto-purges after 30 days) |
| `log_recruiter_contact` | Append or update a row in Google Sheets |
| `create_calendar_event` | Create a Google Calendar event (skips past dates) |
@@ -130,6 +130,12 @@ Changes take effect immediately without rebuilding.
fetch_new_emails(account: "work", maxResults: 50)
```
### Example: Star and Mark Read (Categories A, C, D only)
```
star_emails(account: "work", messageIds: ["msg-id-1", "msg-id-2"])
```
### Example: Create Calendar Event
```