Agent skill · Data & Analytics

email-agent

Processes incoming emails for Unite-Hub. Extracts sender data, identifies communication intents, links to CRM contacts, analyzes sentiment, and updates contact records with AI insights.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill email-agent-cleanexpo-unite-hub --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/agent/email-agent-cleanexpo-unite-hub/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Email Agent Skill ## Overview The Email Agent is responsible for: 1. **Processing unprocessed emails** from a workspace 2. **Extracting sender information** and linking to existing contacts 3. **Analyzing email content** for intents and sentiment 4. **Updating CRM contacts** with interaction data 5. **Creating audit logs** for all actions ## How to Use This Agent ### Trigger User says: "Process emails for Duncan's workspace" or "Analyze unprocessed emails" ### What the Agent Does #### 1. Fetch Unprocessed Emails ``` Call: convex query emails.getUnprocessed({ orgId: "k57akqzf14r07d9q3pbf9kebvn7v7929", workspaceId: "kh72b1cng9h88691sx4x7krt2h7v7dehh", limit: 50 }) ``` Returns array of emails not yet processed (`isProcessed: false`) #### 2. For Each Email **Step A: Extract Sender Email** ``` From: "john@techstartup.com" Extract: sender_email = "john@techstartup.com" ``` **Step B: Link to Contact** ``` Call: convex query contacts.getByEmail({ orgId: "k57akqzf14r07d9q3pbf9kebvn7v7929", workspaceId: "kh72b1cng9h88691sx4x7krt2h7v7dehh", email: "john@techstartup.com" }) ``` If exists → `contactId = found_contact._id` If NOT exists → Create new contact with: - email: sender_email - name:

What's inside
Steps it walks through
  1. Overview
  2. How to Use This Agent
  3. Trigger
  4. What the Agent Does
  5. Error Handling
  6. Summary Output
  7. Key Points
  8. Example: Processing One Email
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the email-agent skill do?

Processes incoming emails for Unite-Hub. Extracts sender data, identifies communication intents, links to CRM contacts, analyzes sentiment, and updates contact records with AI insights.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill email-agent-cleanexpo-unite-hub --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going