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.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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:
- Overview
- How to Use This Agent
- Trigger
- What the Agent Does
- Error Handling
- Summary Output
- Key Points
- Example: Processing One Email
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.
