crm-automation

crm-automation is a skill for Claude Code from aAAaqwq/AGI-Super-Team. It costs 28 tokens per session (3,257 once invoked), scanned A, a copy of crm-automation, MIT.

A skill for automating customer-relationship-management workflows in HubSpot, Salesforce, and Pipedrive. A CRM is software for managing leads, sales deals, customer data, and follow-up work.

In plain words
What is it for?
Use it to capture and enrich leads, assign them to sales staff, move deals through stages, automate follow-ups, synchronize multiple CRMs, and report on sales activity.
Why use it?
It reduces manual updates and keeps leads, deal stages, follow-ups, and data synchronized across sales systems.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the agi-super-team plugin — 194 skills, 1 agent shipped together

Good fit Use it to capture and enrich leads, assign them to sales staff, move deals through stages, automate follow-ups, synchronize multiple CRMs, and report on sales activity.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aaaaqwq/agi-super-team/crm-automation
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add aAAaqwq/AGI-Super-Team --skill crm-automation
Clone the repo
git clone --depth 1 https://github.com/aAAaqwq/AGI-Super-Team

Made for: Claude Code.

Or install agi-super-team, the plugin that ships this one along with the rest of its 194 skills, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for crm-automation

README.md
[![agentmods](https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/crm-automation/github.svg)](https://agentmods.dev/skills/aaaaqwq/agi-super-team/crm-automation)
Your own site
<a href="https://agentmods.dev/skills/aaaaqwq/agi-super-team/crm-automation"><img src="https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/crm-automation/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for crm-automation

Your own site · 80×15
<a href="https://agentmods.dev/skills/aaaaqwq/agi-super-team/crm-automation"><img src="https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/crm-automation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,257 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00028 $0.03257
Opus 5 $0.00014 $0.01629
Sonnet 5 $0.00006 $0.00651
Haiku 4.5 $0.00003 $0.00326

Measured 6d ago against content hash b3c9f124b28b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

crm-automation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to crm-automation — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/crm-automation/SKILL.md · 546 lines

How it starts

The opening of the file, as written. The whole thing — 546 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CRM Automation

Automate CRM workflows for HubSpot, Salesforce, and Pipedrive including lead management, deal tracking, pipeline automation, and multi-CRM synchronization. Based on n8n workflow templates.

Overview

This skill covers:

  • Lead capture and enrichment automation
  • Deal stage progression workflows
  • Multi-CRM data synchronization
  • Automated follow-up sequences
  • Sales analytics and reporting

Core Workflow Patterns

1. Lead Capture → Enrichment → Assignment

┌─────────────┐    ┌─────────────┐    ┌─────────────┐    ┌─────────────┐
│ Lead Source │───▶│ Enrich Data │───▶│ Score Lead  │───▶│ Route to    │
│ (Form/API)  │    │ (Clearbit)  │    │ (AI/Rules)  │    │ Sales Rep   │
└─────────────┘    └─────────────┘    └─────────────┘    └─────────────┘
                                                                │
                         ┌─────────────┐    ┌─────────────┐    │
                         │ Start       │◀───│ Create in   │◀───┘
                         │ Sequence    │    │ CRM         │
                         └─────────────┘    └─────────────┘

n8n Configuration:

workflow: "Lead Capture to CRM"

trigger:
  - type: webhook
    event: form_submission
    source: [website, landing_page, calendly]

steps:
  1. capture_lead:
      fields: [email, name, company, phone, source]
  
  2. enrich_data:
      provider: clearbit
      lookup_by: email
      append: [company_size, industry, title, linkedin]
  
  3. score_lead:
      model: ai_scoring  # or rule-based
      factors:
        - company_size: {1-50: 10, 51-200: 20, 201+: 30}
        - industry_fit: {high: 30, medium: 20, low: 10}
        - title_seniority: {c-level: 30, director: 20, manager: 10}
      threshold: 50  # MQL threshold
  
  4. route_lead:
      rules:
        - if: score >= 80 AND industry == "tech"
          assign_to: "Enterprise Team"
        - if: score >= 50
          assign_to: "SMB Team"
        - else:
          assign_to: "Marketing Nurture"
  
  5. create_in_crm:
      platform: hubspot
      object: contact
      properties:
        email: "{email}"
        firstname: "{first_name}"
        company: "{company}"
        lead_score: "{score}"
        lead_source: "{source}"
  
  6. start_sequence:
      if: score >= 50
      sequence: "New Lead Welcome"
      delay: 1_hour

Read the full file on GitHub · 546 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 546 lines · 28 tokens per session scan A b3c9f124b28b

Subscribe to this mod's changes

crm-automation is a skill published in the GitHub repository aAAaqwq/AGI-Super-Team (91 stars, last pushed today), licensed MIT. It adds 28 tokens to every session and 3,257 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to crm-automation, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

crm-automation

CRM workflow automation for HubSpot, Salesforce, Pipedrive - lead management, deal tracking, and multi-CRM synchronization.

claude-office-skills/skills · 28 tokens

sales-expert

Build comprehensive sales technology solutions including CRM implementation, pipeline management, sales forecasting, and performance analytics. Use when the user mentions CRM, sales pipelines, lead qualification, opportunity tracking, sales forecasting, quotas or territories, or sales automation.

personamanagmentlayer/pcl · 50 tokens

lead-routing

Intelligent lead assignment and routing - AI-powered scoring, territory mapping, round-robin distribution, and workload balancing.

claude-office-skills/skills · 25 tokens

skill-saas-dast-recon

Run defensive, explicitly authorized SaaS DAST and recon with scope controls. Use when asked to scan an owned local, staging, preview, or approved production URL, API endpoint, SaaS app, tenant boundary, public web surface, auth flow, exposed files, headers, TLS, or OWASP Top 10 behavior using tools such as ZAP…

IAPro-Community/Orquestrador-Maestro · 93 tokens

xlsx

Criar, editar e analisar Excel/CSV/TSV. Use para abrir/corrigir planilhas, converter formatos, limpar dados e gerar relatorios .xlsx.

andregusman-raiz/a-gusman-claude · 36 tokens

ag-gerar-testes

Gera testes Playwright production-grade a partir de fluxos reais observados via MCP. Explora o app pelo browser, documenta cada passo, gera codigo TypeScript, valida executando. Use para transformar fluxos explorados em testes automatizados.

andregusman-raiz/a-gusman-claude · 57 tokens