Add Lead logo

Add Lead

Community
aAAaqwq
add-lead

Add company/person/relationship to CRM

Overview

PublisheraAAaqwq
RepositoryAGI-Super-Team
Skill nameadd-lead
Stars
98
Forks
23
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by aAAaqwq on GitHub. Read the source before you install it.

Installation

Install the Add Lead AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/aAAaqwq/AGI-Super-Team.git /tmp/AGI-Super-Team
mkdir -p .claude/skills
cp -r /tmp/AGI-Super-Team/skills/add-lead .claude/skills/add-lead
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Add Lead in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Add Lead on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Add Lead is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

CRM Add

Adding a new company, person, or relationship

When to use

  • "add company X"
  • "add contact Y"
  • "new client/partner/lead"

Architecture

See $SKILLS_PATH/skills/crm/README.md

Paths

WhatPath
Companies$CRM_PATH/contacts/companies.csv
People$CRM_PATH/contacts/people.csv
Clients$CRM_PATH/relationships/clients.csv
Partners$CRM_PATH/relationships/partners.csv
Leads$CRM_PATH/relationships/leads.csv
Products$CRM_PATH/products.csv

Schemas

contacts/companies.csv

csv
company_id,name,website,linkedin_url,type,industry,geo,size,description,created_date,last_updated
  • type: company, enterprise, ngo, individual
  • size: small, medium, enterprise, individual

contacts/people.csv

csv
person_id,first_name,last_name,email,phone,linkedin_url,company_id,role,notes,created_date,last_updated

relationships/clients.csv

csv
client_id,company_id,product_id,status,contract_start,contract_end,mrr,currency,primary_contact_id,notes,created_date,last_updated
  • status: active, paused, churned

relationships/partners.csv

csv
partner_id,company_id,product_id,partnership_type,status,since,primary_contact_id,revenue_share,notes,created_date,last_updated
  • partnership_type: training_partner, workforce_partner, reseller_agreement, referral_partner

relationships/leads.csv

csv
lead_id,company_id,product_id,stage,source,source_direction,source_detail,priority,primary_contact_id,estimated_value,currency,next_action,next_action_date,notes,created_date,last_updated,last_contact_via_primary
  • stage: new, qualified, proposal, negotiation, won, lost
  • source: google, website, facebook, linkedin, email, telegram, referral, direct, event, calendly, research
  • source_direction: inbound, outbound
  • source_detail: (optional) campaign name, referrer, post URL, etc.

How to add

1. New company

python
import pandas as pd
from datetime import date

df = pd.read_csv('$CRM_PATH/contacts/companies.csv')

# Check for duplicate
if 'example.com' in df['website'].values:
    print("Company already exists!")
else:
    new_row = {
        'company_id': 'comp-example',
        'name': 'Example Inc',
        'website': 'example.com',
        'type': 'company',
        'industry': 'Technology',
        'geo': 'USA',
        'created_date': str(date.today()),
        'last_updated': str(date.today())
    }
    df = pd.concat([df, pd.DataFrame([new_row])], ignore_index=True)
    df.to_csv('$CRM_PATH/contacts/companies.csv', index=False)

2. New contact

python
# First make sure the company exists!
companies = pd.read_csv('$CRM_PATH/contacts/companies.csv')
if 'comp-example' not in companies['company_id'].values:
    print("Add the company first!")

people = pd.read_csv('$CRM_PATH/contacts/people.csv')

new_person = {
    'person_id': 'p-example-001',
    'first_name': 'John',
    'last_name': 'Doe',
    'email': 'john@example.com',
    'company_id': 'comp-example',
    'role': 'CEO',
    'created_date': str(date.today()),
    'last_updated': str(date.today())
}

3. New client (relationship)

python
# Company and product must exist!
clients = pd.read_csv('$CRM_PATH/relationships/clients.csv')

new_client = {
    'client_id': 'cli-example-001',
    'company_id': 'comp-example',
    'product_id': 'prod-labeling',
    'status': 'active',
    'contract_start': str(date.today()),
    'primary_contact_id': 'p-example-001',
    'created_date': str(date.today()),
    'last_updated': str(date.today())
}

Validation (REQUIRED!)

Before saving:

  • ID is unique
  • company_id exists in companies.csv (for people, relationships)
  • product_id exists in products.csv (for relationships)
  • person_id exists in people.csv (for primary_contact_id)
  • No duplicates (check by email, website, name)
  • created_date and last_updated are filled in

After changes:

  • Run change-review skill before PR

ID formats

TypeFormatExample
Companycomp-{name}comp-acme
Personp-{company}-{number}p-acme-001
Clientcli-{company}-{number}cli-acme-001
Partnerptnr-{company}-{number}ptnr-acme-001
Leadlead-{company}-{number}lead-newco-001

Related skills

  • update-lead -- update existing record
  • query-leads -- search
  • change-review -- review before PR

Frequently asked questions

What does the Add Lead AI skill do?

Add company/person/relationship to CRM

Why use Add Lead on TypingMind?

Because you install it once and use it with any model. Add Lead is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Add Lead in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/aAAaqwq/AGI-Super-Team/tree/main/skills/add-lead. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Add Lead?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Add Lead?

As many as you like. As long as a model supports skills, you can use Add Lead with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Add Lead AI skill free?

Yes. It is published on GitHub by aAAaqwq under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇