00-system/skills/google/gmail/SKILL.md
Read, send, and manage Gmail emails. Load when user mentions 'gmail', 'email', 'send email', 'check email', 'inbox', 'draft', or references sending/reading emails.
npx skillsauth add abdullahbeam/nexus-design-abdullah gmailInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automate Gmail operations including reading, sending, replying, forwarding, and managing emails. Useful for email automation, inbox management, and communication workflows.
Read, send, and manage Gmail via OAuth authentication.
These rules are MANDATORY and must NEVER be bypassed:
yes (send now), no (delete draft), or keep-draft (review in Gmail)| Operation | Requires Confirmation | |-----------|----------------------| | Send email | YES - ALWAYS | | Reply to email | YES - ALWAYS | | Forward email | YES - ALWAYS | | Send draft | YES - ALWAYS | | Delete draft | Yes | | Trash email | Yes |
These do NOT require confirmation:
python3 00-system/skills/google/google-master/scripts/google_auth.py --check --service gmail
Exit codes:
python3 00-system/skills/google/google-master/scripts/google_auth.py --loginpython3 00-system/skills/google/gmail/scripts/gmail_operations.py list --max 10
python3 00-system/skills/google/gmail/scripts/gmail_operations.py list --query "is:unread" --max 10
python3 00-system/skills/google/gmail/scripts/gmail_operations.py search "from:[email protected] subject:report"
python3 00-system/skills/google/gmail/scripts/gmail_operations.py read <message_id>
python3 00-system/skills/google/gmail/scripts/gmail_operations.py send --to "[email protected]" --subject "Hello" --body "Message body"
python3 00-system/skills/google/gmail/scripts/gmail_operations.py reply <message_id> --body "Reply text"
python3 00-system/skills/google/gmail/scripts/gmail_operations.py forward <message_id> --to "[email protected]"
python3 00-system/skills/google/gmail/scripts/gmail_operations.py draft --to "[email protected]" --subject "Draft" --body "Content"
python3 00-system/skills/google/gmail/scripts/gmail_operations.py drafts
python3 00-system/skills/google/gmail/scripts/gmail_operations.py labels
python3 00-system/skills/google/gmail/scripts/gmail_operations.py trash <message_id>
python3 00-system/skills/google/gmail/scripts/gmail_operations.py archive <message_id>
python3 00-system/skills/google/gmail/scripts/gmail_operations.py mark-read <message_id>
| Operator | Example | Description |
|----------|---------|-------------|
| from: | from:[email protected] | Emails from sender |
| to: | to:[email protected] | Emails to recipient |
| subject: | subject:meeting | Subject contains word |
| is:unread | is:unread | Unread emails |
| has:attachment | has:attachment | Has attachments |
| after: | after:2024/01/01 | After date |
| before: | before:2024/12/31 | Before date |
| label: | label:important | Has label |
See ../google-master/references/error-handling.md for common errors and solutions.
First-time setup: ../google-master/references/setup-guide.md
Quick start:
pip install google-auth google-auth-oauthlib google-api-python-client.env file at Nexus root:
GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-client-secret
GOOGLE_PROJECT_ID=your-project-id
python3 00-system/skills/google/google-master/scripts/google_auth.py --logindevelopment
Load when user says "mental model", "think through this", "structured thinking", "help me decide", "analyze this problem", "first principles", "pre-mortem", "stakeholder mapping", "what framework should I use", or any specific model name. Provides 59 thinking frameworks for decision-making, problem decomposition, and strategic analysis.
development
Generate comprehensive philosophy and standards documents for any domain (UX design, landing pages, email outbound, API design, etc.). Load when user says "create philosophy doc", "generate standards for [domain]", "build best practices guide", or "create benchmarking document". Conducts deep research, synthesizes findings, and produces structured philosophy documents with principles, frameworks, anti-patterns, checklists, case studies, and metrics.
development
Validate Nexus-v3 system integrity and fix common issues automatically. Load when user mentions "validate system", "check system", or "fix problems". Runs comprehensive checks on folder structure, metadata files, and framework consistency with auto-repair capabilities.
development
Load when user says "validate docs", "check documentation consistency", "docs vs implementation", or "find documentation mismatches". Systematically compares implementation code against documentation to identify and fix inconsistencies.