agentsclimarketplace

Job application tracker SKILL

Skill daliaabbruciati/job-application-tracker-SKILL

Automatically syncs Gmail and Google Calendar with a Notion database to keep track of the status of job applications the user has submitted. Use this skill whenever the user asks to "sync my job applications," "update my job tracker," "check where my interviews stand," or something similar — even if they don't explicitly mention Notion, Gmail, or Calendar, and even if they don't have a Notion database set up for this yet. Requires (or guides the user through setting up) the Notion, Gmail, and Google Calendar MCP connectors.From its SKILL.md

Install
npx -y skills add daliaabbruciati/job-application-tracker-SKILL

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

17.5 KB, ~3.9k tokens by cl100k_base, as published. Nobody here has run it

Job Application Tracker

A skill for keeping a Notion database of job applications up to date, by cross-referencing recent Gmail messages and Google Calendar events. Designed to be usable by anyone, including someone starting from scratch (no Notion database yet, connectors not yet linked).

Step -1 — Ask preferred language (always do this first, before anything else)

Before doing anything else, ask the user whether they'd like your responses (status updates, reports, notes written into Notion, etc.) in English or Italian. Use whichever language they pick for the rest of the interaction, including the final report in Step 7 and any Notes written to Notion. If the user has already stated a language preference earlier in the conversation, you can skip re-asking and just confirm it briefly.

This choice also drives the language of the Notion table itself:

  • If the user picks Italian, and you end up creating a brand-new database (Step 0.2), build it with the Italian column names and status options (see the Italian schema variant in Step 0.2).
  • If the user picks English, use the English schema variant instead.
  • If a database already exists, don't rename its existing columns just because of this answer — keep using whatever language/labels it already has (per Step 0.2's "different column names" case), and simply write Notes in the user's chosen language going forward.

Step 0 — Check prerequisites (always do this first)

0.1 Connectors

Check whether you have access to Notion, Gmail, and Google Calendar tools. If one or more are missing:

  • Use search_mcp_registry with relevant keywords (e.g. ["notion"], ["gmail", "email"], ["calendar"]).
  • Use suggest_connectors to let the user connect them.
  • Don't move to the next step until the user has at least connected Notion. Gmail and Calendar are both needed for a full scan, but if the user wants to start with just one of the two, that's fine — flag it and proceed with what's available.

0.2 Notion database

Ask the user (or search yourself) whether a dedicated job-applications page/database already exists. Try notion-search with keywords like "applications", "job tracker", "interviews", "candidature".

If no database exists: Offer to create one yourself, explain what you're about to do, and ask for confirmation before creating pages in the user's workspace. Create a page with an inline database using the schema matching the language chosen in Step -1 (it can be enriched if the user wants):

English variant:

PropertyTypeNotes
Companytitlecompany or agency name
Roletextposition applied for
Application Statusstatusoptions: No contact, Applied, HR Contact, Intro Call, Technical Test, Rejected, Offer Accepted
Last Updateddatedate of the last detected status change
Notestextfree-form summary of what happened / next steps

Italian variant:

PropertyTypeNotes
Aziendatitlenome dell'azienda o dell'agenzia
Ruolotextposizione per cui si è candidati
Stato Candidaturastatusoptions: Nessun contatto, Candidato, Contatto HR, Colloquio Conoscitivo, Test Tecnico, Rifiutato, Offerta Accettata
Ultimo Aggiornamentodatedata dell'ultimo cambio di stato rilevato
Notetextriepilogo libero di cosa è successo / prossimi passi

[CRITICAL ORDERING RULE]: Whichever variant you use, you MUST define and inject these properties into the Notion API payload in the exact top-to-bottom sequence shown in the corresponding table above (title property, then role, then status, then date, then notes). Notion establishes the visual column order based strictly on the sequence of the creation object; do not scramble or alphabetize them.

Use notion-create-pages (or whichever database-creation tool is available) to generate it, then share the link with the user and ask for confirmation that it looks right before starting to populate it.

If a database already exists but with different column names (e.g. "Azienda" instead of "Company", "Stage" instead of "Application Status", or no Notes column at all):

  • Adapt the matching to the real column names — don't assume they match the ones above. Always read the actual schema with notion-fetch on the data source before writing anything.
  • If a column you need for useful information is missing (typically Notes or a last-updated date), propose adding it with notion-update-data-source (ADD COLUMN ...) asking for confirmation before modifying the schema of an existing user database.
  • If the Application Status property has different or incomplete options compared to the table above, don't force the existing options: map the classification from Step 5 onto the closest available option, and if important stages are genuinely missing, propose (without imposing) adding them.

0.3 First run vs. subsequent syncs

If the database is empty or newly created, every application found will be a new row. If it already contains rows, run the matching described in Step 4 before deciding whether to create or update an entry.

Execution flow (after Step 0)

1. Read the current state of the Notion database

  • notion-fetch on the page URL/ID to find the inline database and its data-source-url (collection://...).
  • notion-fetch on the data source to read the exact schema (property names, available status options) — never assume the names, always read them.
  • Try reading existing rows with notion-query-database-view or notion-query-data-sources (SQL). Note: both tools require a Notion Business+ plan with Notion AI: if they fail with validation_error, use notion-search with data_source_url set to the data source to retrieve existing pages, or proceed by browsing the database view directly.

2. Scan Gmail (if connected)

Search with Gmail:search_threads, a query like:

newer_than:7d (application OR interview OR screening OR "intro call" OR "technical assessment" OR recruiter OR position OR offer OR hiring)

Adapt the keywords to whatever language(s) the user receives emails in (e.g. add Italian terms like "candidatura", "colloquio", "prova tecnica" if they're also applying to companies in Italy, or other languages as needed).

Default window "7d", or since the last sync date if known. For ambiguous threads, use Gmail:get_thread or Gmail:get_message to read the full body before classifying — don't rely on the snippet alone.

Discard clearly promotional/irrelevant emails (newsletters, generic platform alerts with no specific application behind them).

3. Scan Google Calendar (if connected)

Google Calendar:list_events for the current month (startTime/endTime first-to-last day of the month), including both past and future events. Look for interviews, calls, and screenings in the title/description/attendees.

3.5 Detect interview/call events missing from Calendar and add them

For every email found in Step 2 that describes a scheduled interview, call, or screening with a specific date/time (e.g. a calendar invite pasted in the body, a confirmed Teams/Meet/Zoom link with a date, a line like "see you Tuesday at 3pm"), check whether a matching event already exists in the events pulled in Step 3.

  • Matching check: an email-derived event counts as "already on the calendar" if there's an existing event on the same date, with an overlapping or matching time (allow a small tolerance, e.g. ±15 minutes, for imprecise phrasing), and a title/attendee/description that plausibly refers to the same company or contact (use the same name-matching logic as Step 4).
  • If no matching event is found → the interview is missing from the calendar. Automatically create it with Google Calendar:create_event, using:
    • Title: Colloquio – <Company> / Interview – <Company> (matching the user's chosen language), optionally adding the role if known.
    • Date/time: parsed from the email; if the email only gives a date with no time (or the time is ambiguous), don't guess a time — instead flag it in the final report as needing manual confirmation rather than creating an event with a fabricated time.
    • Description: a short note that this event was auto-created from an email, plus the sender/thread subject, so the user can trace it back.
    • Attendees: only add attendees if their email is unambiguous from the message (e.g. the recruiter's address); otherwise leave attendees empty rather than guessing.
  • Do this automatically, without asking for confirmation first, since it's low-risk and reversible (the user can delete or edit the event from Calendar). Still, always list every auto-created event in the final report (Step 7) so the user can double check date/time and attendees.
  • Never create a duplicate event: if you're unsure whether an existing event already covers this email (rather than confident it's missing), skip creation and mention the ambiguous case in the report instead of risking a duplicate.

4. Company ↔ Email/Event matching algorithm

For every email or event found:

  1. Extract the sender's domain ([email protected]company), strip TLDs (.com, .io, .co...) and common corporate suffixes (inc, ltd, llc, group, srl, spa...).
  2. Compare the cleaned name against the "company" column of the database (whatever its real name is): match if one contains the other (case-insensitive).
  3. Recruiting platforms/agencies (LinkedIn, Teamtailor, Greenhouse, Lever, Indeed, staffing agencies like Randstad/Adecco/Robert Half/Akkodis...): the sender's domain is NOT the company. Extract the real company name from the subject or body (e.g. "your application for [Role] at [Company]", or the client name mentioned in the text). If the agency doesn't name a specific client (a general/spontaneous application to the agency itself), use the agency name as the Company and note this in the Notes field.
  4. If no matching row is found → this is a new application to create.
  5. If a matching row is found → evaluate whether the status or notes need updating (see Step 5).

5. Status classification (rules)

Read the full subject + body of the email (or the calendar event description) and classify it according to these rules, from most recent/advanced. The labels below are the "standard" ones proposed in Step 0.2 (English and Italian variants): if the user's database uses different labels, map onto the closest concept.

"Standard" status (EN)"Standard" status (IT)Typical signals
RejectedRifiutato"we've decided not to move forward", "not the right fit at this time", explicit negative outcome
Offer AcceptedOfferta Accettatasigned/accepted job offer, confirmed contract
Technical TestTest Tecnicotechnical assessment, live coding, HackerRank/Codility, "test completed", interview with the engineering team
Intro CallColloquio Conoscitivoinvitation/confirmation of a call or interview (Teams/Meet/Zoom) with a recruiter or hiring manager, "intro chat", "first round"
HR ContactContatto HRa recruiter has replied/written but without a call scheduled yet, request for more information, discussion about work mode/location
AppliedCandidatoautomatic confirmation of application receipt ("thank you for applying", "we've received your resume"), no human contact yet
No ContactNessun contattoapplication planned but not yet submitted (rarely used in this flow)

Use the column that matches whichever variant (EN/IT) actually exists in the Notion database — don't mix languages within the same database.

Priority rules:

  • If a thread contains multiple stages (e.g. application → then test → then call), always use the latest stage reached, not the first one.
  • In case of genuine ambiguity between two adjacent statuses, prefer the one supported by the most recent, concrete signal (e.g. a calendar invite beats a vague mention in text).
  • If the Notion schema doesn't have a status that accurately represents the situation, use the closest available status and add the detail in Notes instead of forcing a new status option into the schema, unless the user explicitly asks to expand the options.

6. Write to Notion

  • New applicationnotion-create-pages with the data_source_id as parent. You MUST populate the page properties strictly respecting the established column order in the schema array/object:

    1. Company
    2. Role
    3. Application Status
    4. Last Updated
    5. Notes

    Never omit a property from the creation payload if it belongs to the standard schema, even if empty, to preserve the structural visual order.- Existing application with a changed statusnotion-update-page (command: update_properties) on the matching page, updating status, notes, and date.

  • Don't touch existing applications if there's no new signal from email/calendar.

6.5 Duplicate detection and removal

Before producing the final report, check the full set of rows read in Step 1 (plus anything just created/updated in Step 6) for duplicates: two or more rows referring to the same company (same cleaned name per the matching rules in Step 4).

  • For each group of duplicate rows for the same company, keep only the row with the most recent "Last Updated" date and treat all the others as duplicates to remove.
    • If two duplicate rows are tied on "Last Updated" (same date), use the underlying page's actual last-edited timestamp (visible in notion-search results, or by comparing which row was just written in this run) as a tiebreaker, and keep the more recently edited one.
  • Removal mechanism: this integration has no tool to permanently delete a Notion page. To "remove" a duplicate:
    1. Rename its title to prefix it clearly, e.g. [DUPLICATO - da eliminare] <Company> (adapt the language to the user's), so it's unambiguous and easy to find later.
    2. Use notion-move-pages to move it out of the database, to {"type": "workspace"} (private page at workspace level). This removes it from the tracked database/view without touching the row you're keeping.
  • Never guess which row to keep based on content length or how detailed the notes look — always use the "Last Updated" date (with the edit-timestamp tiebreaker above) as the deciding factor.
  • Do this automatically, without asking for confirmation first, since the action is reversible (the page still exists, just moved and relabeled, not deleted) and the criteria are deterministic. Still, always tell the user clearly in the final report which duplicates were found and that they were removed/moved (see Step 7), and mention that true permanent deletion isn't available via this integration — the person can delete the relabeled pages themselves from Notion's trash/sidebar if they want them gone for good.

7. Final report

Present the user with a text summary (a markdown table is fine) including:

  • Applications added (company, role, status, brief reason)
  • Applications updated (previous status → new, reason)
  • Calendar events auto-created from emails that weren't already on the calendar (company, date/time, source email), plus any ambiguous cases (e.g. date without a clear time) that were flagged instead of auto-created
  • Duplicates found and removed/moved (company, which row was kept vs. removed and why, i.e. the "Last Updated" dates compared), explicitly telling the user the duplicate records were removed/moved out of the database
  • Any emails excluded as irrelevant (brief mention, no need to list them all)
  • Any issues encountered (e.g. Notion tools unavailable on the current plan, missing connector, database created from scratch)

Notes for first-time users

  • You don't need everything set up in advance: if the database, connector, or a column is missing, the skill walks you through creating them step by step, asking for confirmation before making any change to your Notion workspace.
  • If you're not sure what column names or statuses you want to use, the standard schema proposed in Step 0.2 works fine — you can always rename or expand it later, directly in Notion.
  • If you also receive applications/interviews in other languages, mention it: the email search keywords in Step 2 should be adapted accordingly.

Known limitations

  • This skill doesn't run on its own: in a normal chat it needs to be triggered manually ("sync my job applications"). To run it automatically every N hours, you need Claude Cowork with a scheduled task (/schedule), pasting these instructions in.
  • notion-query-database-view and notion-query-data-sources require a Notion Business+ plan with Notion AI: if the workspace doesn't support it, matching against existing rows has to be done via notion-search or by browsing, with a higher margin of error.
  • Generic alert emails (job alerts, newsletters from learning platforms) should never be treated as job applications.
  • There's no tool available to permanently delete a Notion page. Duplicate rows (see Step 6.5) are relabeled and moved out of the database rather than deleted outright; the user can permanently delete them from Notion's own trash/sidebar if they want.

What ships with it: 3 files

6.3 KB alongside SKILL.md

Keep looking

Skills are one crate of 326,970. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.