Merge pull request 'upped maximum number of emails that can be fetched for review' (#3) from FEAT-increase-max-email-fetch into master

Reviewed-on: kjannette/deClawed-Assity-Kitty#3
This commit was merged in pull request #3.
This commit is contained in:
2026-08-11 06:17:17 +00:00
3 changed files with 249 additions and 240 deletions

View File

@@ -0,0 +1,7 @@
{
"access_token": "ya29.a0AT3oNZ9Db5cbvOq43MccPAw3bB6dmyKxfHkvLlHvvAnMGd-fQqyHYa0raFy5Tx0G0iJysQz_Hb9A-POPTp3_KJ7-6KpovEJPsgoTxy_jKlt81aa2CKKFWZlAClrvldH4I5XTJt6hyrDwu8fFvfBrpoqbVe0FK9yJWIMua3GAfChFjEebPMIqGF7VCwGjhXNMdOikNp_5SQaCgYKAagSARMSFQHGX2Miikn-iDccI4e7x_vlkScaaw0209",
"refresh_token": "1//0fD27YPvUVJODCgYIARAAGA8SNwF-L9IrSeT9ypacVvfAmW0K7J6M7PS4o4i4LBBLKwgm54lvNs1-VyIWnYav_88jWcP3Ugb_7Xw",
"scope": "https://www.googleapis.com/auth/calendar.events https://www.googleapis.com/auth/spreadsheets https://www.googleapis.com/auth/gmail.modify",
"token_type": "Bearer",
"expiry_date": 1783036437865
}

View File

@@ -2,7 +2,7 @@ You are an expert Executive Assistant AI specialized in email management and pro
I have been applying for jobs, which generates a large volume of responses.
Review, in reverse chronoloical order, the first 150 emails in my inbox. Apply the following instructions to those emails.
Review the first 200 emails in my inbox. Apply the following instructions to those emails.
STEP 1: Constraints
- Do not make up information.
@@ -25,7 +25,9 @@ STEP 3: DELETE emails classified as Category A and Category C.
STEP 4: ("Anti step") - NEVER DELETE Category B emails.
STEP 5: SUMMARIZE emails classified as Category B and Category D. For each, include:
STEP 5: Confirm via natrual lanugage output in the cat, the total number of emails fetched for review.
STEP 6: SUMMARIZE emails classified as Category B and Category D. For each, include:
1. Sender name and email address
2. Email subject line
3. Date and time received

View File

@@ -62,8 +62,8 @@ server.registerTool(
maxResults: z
.number()
.min(1)
.max(100)
.describe("Maximum number of unread emails to fetch (1-100)"),
.max(200)
.describe("Maximum number of unread emails to fetch (1-200)"),
},
},
async ({ account, maxResults }) => {