Add Gmail integration to NanoClaw. Can be configured as a tool (agent reads/sends emails when triggered from WhatsApp) or as a full channel (emails can trigger the agent, schedule tasks, and receive replies). Guides through GCP OAuth setup and implements the integration.
62
73%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Fix and improve this skill with Tessl
tessl review fix ./.claude/skills/add-gmail/SKILL.mdThis skill adds Gmail support to NanoClaw — either as a tool (read, send, search, draft) or as a full channel that polls the inbox.
Check if src/channels/gmail.ts exists. If it does, skip to Phase 3 (Setup). The code changes are already in place.
Use AskUserQuestion:
AskUserQuestion: Should incoming emails be able to trigger the agent?
git remote -vIf gmail is missing, add it:
git remote add gmail https://github.com/qwibitai/nanoclaw-gmail.gitgit fetch gmail main
git merge gmail/main || {
git checkout --theirs package-lock.json
git add package-lock.json
git merge --continue
}This merges in:
src/channels/gmail.ts (GmailChannel class with self-registration via registerChannel)src/channels/gmail.test.ts (unit tests)import './gmail.js' appended to the channel barrel file src/channels/index.ts~/.gmail-mcp) in src/container-runner.ts@gongrzhe/server-gmail-autoauth-mcp) and mcp__gmail__* allowed tool in container/agent-runner/src/index.tsgoogleapis npm dependency in package.jsonIf the merge reports conflicts, resolve them by reading the conflicted files and understanding the intent of both sides.
If the user chose channel mode, append the following to groups/main/CLAUDE.md (before the formatting section):
## Email Notifications
When you receive an email notification (messages starting with `[Email from ...`), inform the user about it but do NOT reply to the email unless specifically asked. You have Gmail tools available — use them only when the user explicitly asks you to reply, forward, or take action on an email.npm install
npm run build
npx vitest run src/channels/gmail.test.tsAll tests must pass (including the new Gmail tests) and build must be clean before proceeding.
ls -la ~/.gmail-mcp/ 2>/dev/null || echo "No Gmail config found"If credentials.json already exists, skip to "Build and restart" below.
Tell the user:
I need you to set up Google Cloud OAuth credentials:
- Open https://console.cloud.google.com — create a new project or select existing
- Go to APIs & Services > Library, search "Gmail API", click Enable
- Go to APIs & Services > Credentials, click + CREATE CREDENTIALS > OAuth client ID
- If prompted for consent screen: choose "External", fill in app name and email, save
- Application type: Desktop app, name: anything (e.g., "NanoClaw Gmail")
- Click DOWNLOAD JSON and save as
gcp-oauth.keys.jsonWhere did you save the file? (Give me the full path, or paste the file contents here)
If user provides a path, copy it:
mkdir -p ~/.gmail-mcp
cp "/path/user/provided/gcp-oauth.keys.json" ~/.gmail-mcp/gcp-oauth.keys.jsonIf user pastes JSON content, write it to ~/.gmail-mcp/gcp-oauth.keys.json.
Tell the user:
I'm going to run Gmail authorization. A browser window will open — sign in and grant access. If you see an "app isn't verified" warning, click "Advanced" then "Go to [app name] (unsafe)" — this is normal for personal OAuth apps.
Run the authorization:
npx -y @gongrzhe/server-gmail-autoauth-mcp authIf that fails (some versions don't have an auth subcommand), try timeout 60 npx -y @gongrzhe/server-gmail-autoauth-mcp || true. Verify with ls ~/.gmail-mcp/credentials.json.
Clear stale per-group agent-runner copies (they only get re-created if missing, so existing copies won't pick up the new Gmail server):
rm -r data/sessions/*/agent-runner-src 2>/dev/null || trueRebuild the container (agent-runner changed):
cd container && ./build.shThen compile and restart:
npm run build
launchctl kickstart -k gui/$(id -u)/com.nanoclaw # macOS
# Linux: systemctl --user restart nanoclawTell the user:
Gmail is connected! Send this in your main channel:
@Andy check my recent emailsor@Andy list my Gmail labels
Tell the user to send themselves a test email. The agent should pick it up within a minute. Monitor: tail -f logs/nanoclaw.log | grep -iE "(gmail|email)".
Once verified, offer filter customization via AskUserQuestion — by default, only emails in the Primary inbox trigger the agent (Promotions, Social, Updates, and Forums are excluded). The user can keep this default or narrow further by sender, label, or keywords. No code changes needed for filters.
tail -f logs/nanoclaw.logTest directly:
npx -y @gongrzhe/server-gmail-autoauth-mcpRe-authorize:
rm ~/.gmail-mcp/credentials.json
npx -y @gongrzhe/server-gmail-autoauth-mcp~/.gmail-mcp is mounted: check src/container-runner.ts for the .gmail-mcp mountcat groups/main/logs/container-*.log | tail -50is:unread category:primary)~/.gmail-mcp mount from src/container-runner.tsgmail MCP server and mcp__gmail__* from container/agent-runner/src/index.tsrm -r data/sessions/*/agent-runner-src 2>/dev/null || truecd container && ./build.sh && cd .. && npm run build && launchctl kickstart -k gui/$(id -u)/com.nanoclaw (macOS) or systemctl --user restart nanoclaw (Linux)src/channels/gmail.ts and src/channels/gmail.test.tsimport './gmail.js' from src/channels/index.ts~/.gmail-mcp mount from src/container-runner.tsgmail MCP server and mcp__gmail__* from container/agent-runner/src/index.tsnpm uninstall googleapisrm -r data/sessions/*/agent-runner-src 2>/dev/null || truecd container && ./build.sh && cd .. && npm run build && launchctl kickstart -k gui/$(id -u)/com.nanoclaw (macOS) or systemctl --user restart nanoclaw (Linux)7454673
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.