skills$openclaw/activecampaign
kesslerio4.1k

by kesslerio

activecampaign – OpenClaw Skill

activecampaign is an OpenClaw Skills integration for coding workflows. ActiveCampaign CRM integration for lead management, deal tracking, and email automation. Use for syncing demo leads, managing clinic sales pipeline, and triggering follow-up sequences.

4.1k stars4.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameactivecampaign
descriptionActiveCampaign CRM integration for lead management, deal tracking, and email automation. Use for syncing demo leads, managing clinic sales pipeline, and triggering follow-up sequences. OpenClaw Skills integration.
ownerkesslerio
repositorykesslerio/babyconnect
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @kesslerio/babyconnect
last updatedFeb 7, 2026

Maintainer

kesslerio

kesslerio

Maintains activecampaign in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
_meta.json
285 B
activecampaign-fields-sample.json
5.5 KB
README.md
2.3 KB
SKILL.md
4.0 KB
SKILL.md

name: activecampaign description: ActiveCampaign CRM integration for lead management, deal tracking, and email automation. Use for syncing demo leads, managing clinic sales pipeline, and triggering follow-up sequences. metadata: {"clawdbot":{"emoji":"📧","requires":{"bins":["activecampaign"],"env":["ACTIVECAMPAIGN_URL","ACTIVECAMPAIGN_API_KEY"]},"primaryEnv":["ACTIVECAMPAIGN_URL","ACTIVECAMPAIGN_API_KEY"]}}

ActiveCampaign Skill 📧

ActiveCampaign integration for CRM automation and sales pipeline management.

Purpose

Manage leads, deals, and email automations for sales:

  • Contacts: Sync demo attendees, leads, and prospects
  • Deals: Track sales pipeline stages
  • Tags: Segment leads (demo-requested, nurture, close-ready)
  • Automations: Trigger email sequences based on actions
  • Custom Fields: Map order, shipping, billing, and subscription data

Setup

1. Credentials

# Create config directory
mkdir -p ~/.config/activecampaign

# Add credentials
echo "https://youraccount.api-us1.com" > ~/.config/activecampaign/url
echo "your-api-key" > ~/.config/activecampaign/api_key

# Or use environment variables
export ACTIVECAMPAIGN_URL="https://youraccount.api-us1.com"
export ACTIVECAMPAIGN_API_KEY="your-api-key"

Get API credentials from ActiveCampaign:

  • URL: Settings → Developer → API Access
  • API Key: Settings → Developer → API Access

2. Custom Fields Configuration (Optional)

The skill supports custom field mappings for order, shipping, billing, and subscription data.

# Initialize config from sample
activecampaign config init

# Edit with your field IDs
nano ~/.config/activecampaign/fields.json

The config file is gitignored and should not be committed.

Usage

# Contacts
activecampaign contacts list                    # List all contacts
activecampaign contacts create "email@test.com" "First" "Last"
activecampaign contacts sync "email@test.com" "First" "Last"
activecampaign contacts get <id>
activecampaign contacts search "clinic"
activecampaign contacts add-tag <id> <tag_id>
activecampaign contacts remove-tag <id> <tag_id>

# Deals
activecampaign deals list
activecampaign deals create "Clinic Name" <stage_id> <value>
activecampaign deals update <id> stage=<stage_id> value=<value>
activecampaign deals get <id>

# Tags
activecampaign tags list
activecampaign tags create "Demo Requested"

# Automations
activecampaign automations list
activecampaign automations add-contact <contact_id> <automation_id>

# Custom Fields
activecampaign fields list                    # List configured fields
activecampaign fields get order_fields.order_id
activecampaign fields set-field <contact_id> <field_id> <value>

# Lists
activecampaign lists list
activecampaign lists add-contact <list_id> <contact_id>

# Configuration
activecampaign config init                    # Create fields.json from sample
activecampaign config path                    # Show config file path

Custom Fields Configuration

The skill includes a comprehensive field configuration system for:

CategoryFields
OrderOrder ID, Number, Date, Total, Tax, Status, Subtotal, Discount, Currency, Payment details
ShippingName, Address 1/2, City, State, Postal Code, Country, Method, Cost
BillingAddress 1/2, City, State, Postal Code, Country
SubscriptionID, Status, Plan, Amount, Currency, Interval, Start, Trial End
AdditionalCompany, Product info, Lead Campaign, Notes, Birthday, etc.

Setting Field Values

# Get field ID from config
activecampaign fields get order_fields.order_id
# Output: 7

# Set field value on contact
activecampaign fields set-field <contact_id> 7 "ORD-12345"
  • 5 requests per second max
  • The wrapper handles rate limiting automatically
  • shapescale-crm - Attio CRM integration (source of truth)
  • shapescale-sales - Sales workflows and qualification
  • campaign-orchestrator - Multi-channel follow-up campaigns
README.md

ActiveCampaign Skill for Moltbot

ActiveCampaign CRM integration for sales automation and pipeline management.

Features

  • Contacts: Create, sync, search, and tag leads
  • Deals: Manage sales pipeline stages
  • Tags: Segment and organize contacts
  • Automations: Trigger email sequences
  • Custom Fields: Comprehensive field mapping system for order, shipping, billing, and subscription data
  • Lists: Contact list management

Quick Setup

1. Credentials

mkdir -p ~/.config/activecampaign
echo "https://youraccount.api-us1.com" > ~/.config/activecampaign/url
echo "your-api-key" > ~/.config/activecampaign/api_key

2. Custom Fields (Optional)

# Create field configuration from sample
activecampaign config init

# Edit with your ActiveCampaign field IDs
nano ~/.config/activecampaign/fields.json

Note: The fields.json file is gitignored and contains your private field IDs.

Usage

# Contacts
activecampaign contacts sync "email@clinic.com" "Dr." "Smith"
activecampaign contacts add-tag <contact_id> <tag_id>

# Deals
activecampaign deals list
activecampaign deals create "Clinic Name" <stage_id> 5000

# Tags
activecampaign tags list
activecampaign tags create "Demo Requested"

# Automations
activecampaign automations list

# Custom Fields
activecampaign fields list
activecampaign fields get order_fields.order_id

Field Configuration

The skill includes comprehensive field mappings for:

CategoryExamples
OrderOrder ID, Number, Date, Total, Tax, Status, Currency, Payment
ShippingName, Address, City, State, Postal Code, Country, Method, Cost
BillingAddress, City, State, Postal Code, Country
SubscriptionID, Status, Plan, Amount, Currency, Interval, Start, Trial End

See activecampaign-fields-sample.json for the complete field reference.

Installation

Install via Moltbot's skill registry or clone directly:

git clone https://github.com/kesslerio/activecampaign-moltbot-skill.git
cd activecampaign-moltbot-skill

Integration

This skill integrates with:

  • shapescale-crm - Attio CRM for source of truth
  • shapescale-sales - Sales qualification workflows
  • campaign-orchestrator - Multi-channel follow-up campaigns

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

Configuration

The skill supports custom field mappings for order, shipping, billing, and subscription data. ```bash

FAQ

How do I install activecampaign?

Run openclaw add @kesslerio/babyconnect in your terminal. This installs activecampaign into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/kesslerio/babyconnect. Review commits and README documentation before installing.