Drupal is a registered trademark of Dries Buytaert
seven 2.0.0-beta6 New beta version released for theme seven (2.0.0-beta6). seven 1.0.1-beta1 First beta version released for theme seven (1.0.1-beta1). swiper_formatter 2.1.1 Minor update available for module swiper_formatter (2.1.1). solo 1.0.31 Minor update available for theme solo (1.0.31). raven 7.3.7 Minor update available for module raven (7.3.7). localgov_publications 1.1.3 Minor update available for module localgov_publications (1.1.3). localgov_base 2.3.4 Minor update available for theme localgov_base (2.3.4). proc 10.1.106 Minor update available for module proc (10.1.106). localgov_events 3.2.4 Minor update available for module localgov_events (3.2.4). localgov_core 3.1.1 Minor update available for module localgov_core (3.1.1). cloudflare_purge 3.0.4 Minor update available for module cloudflare_purge (3.0.4). paragraphs_bundles 1.0.16 Minor update available for module paragraphs_bundles (1.0.16). localgov_search_solr 1.2.1 Minor update available for module localgov_search_solr (1.2.1). lms 1.1.14 Minor update available for module lms (1.1.14). pets_clinic 1.0.6 Minor update available for theme pets_clinic (1.0.6). add_child_page 3.2.1 Minor update available for module add_child_page (3.2.1). cmlexchange 8.x-1.22 Minor update available for module cmlexchange (8.x-1.22). flowdrop 1.1.0 Minor update available for module flowdrop (1.1.0). add_child_page 3.1.2 Minor update available for module add_child_page (3.1.2). add_child_page 3.2.0 Minor update available for module add_child_page (3.2.0).

# Job Tracker

Useful for job seekers that get too many emails. A Drupal module suite that imports job-related emails from Gmail and displays them in an interactive dashboard, using Claude AI to analyze and summarize emails.

## Modules Included
- **Gmail Importer** - Connects to Gmail via OAuth, analyses emails with Claude AI
and saves job-related emails as Drupal nodes
- **Job Dashboard** - Interactive React-based dashboard for viewing and managing
imported job emails

## Requirements
- Drupal 10 or 11
- Gmail OAuth credentials (Google Cloud Console - Web Application type)
- Anthropic API key with purchased credits

## Anthropic API Credits
This module uses the Anthropic Claude API to analyse emails. You will need to:
1. Create an account at https://console.anthropic.com
2. Add a payment method and purchase credits
3. Even a small amount ($5-10) will process hundreds of emails
4. The module uses `claude-haiku-4-5` which is the most cost-effective model
5. Without credits the email analysis will fail silently and fall back to keyword matching

## Gmail OAuth Setup
1. Go to https://console.cloud.google.com
2. Create a new project
3. Enable the Gmail API
4. Create OAuth credentials - choose **Web Application** type (not Desktop)
5. Add your site URL as an Authorised redirect URI:
`https://yoursite.com/admin/config/services/gmail-importer/oauth`

## Private File System
Requires private file system configured in settings.php:
```php
$settings['file_private_path'] = '/path/to/private/files';
```

## Installation
1. Copy the `job_dashboard` and gmail_importer folders to your `web/modules/custom/` directory
2. Enable both modules:
`drush en gmail_importer job_dashboard`
3. Configure Gmail Importer at: /admin/config/services/gmail-importer
4. Add your OAuth Client ID and Secret
5. Add your Anthropic API key
6. Click Save & Authorize Gmail
7. Run the import — a link will appear on your front page automatically

## Content Types
Automatically installs the `email_record` content type with fields:
- Subject, Sender, Date, Body
- AI Summary (generated by Claude)
- Immediate Action flag
- Gmail ID (for duplicate detection)
- Read/Unread status
- Job Status

## Rate Limiting
The module processes emails in batches using Drupal's Batch API to avoid
hitting Anthropic API rate limits. If you experience rate limit errors,
check your Anthropic plan tier at console.anthropic.com.

## Notes
- Only emails identified as job-related are saved as nodes
- Duplicate emails are automatically skipped using Gmail message IDs
- The module falls back to keyword matching if the Claude API is unavailable
- A link to the dashboard and import button appears automatically on the front page

Activity

Total releases
1
First release
Mar 2026
Latest release
5 hours ago
Release cadence
Stability
0% stable

Releases

Version Type Release date
1.0.x-dev Dev Mar 17, 2026