/int-evo-crm
Query and manage Evo AI CRM data via REST API. Use when you need to list/search contacts, conversations, messages, inboxes, pipelines (with stages and items), or labels. Supports filtering, pagination, creating/updating/deleting resources. Calls the CRM API directly with no
$ npx -y skills add evolution-foundation/evo-nexus --skill int-evo-crm --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/int-evo-crm
Context preview
The summary Claude sees to decide when to auto-load this skill.
Query and manage Evo AI CRM data via REST API. Use when you need to list/search contacts, conversations, messages, inboxes, pipelines (with stages and items), or labels. Supports filtering, pagination, creating/updating/deleting resources. Calls the CRM API directly with no
SKILL.md
int-evo-crm.SKILL.mdname: int-evo-crm
description: "Query and manage Evo AI CRM data via REST API. Use when you need to list/search contacts, conversations, messages, inboxes, pipelines (with stages and items), or labels. Supports filtering, pagination, creating/updating/deleting resources. Calls the CRM API directly with no third-party proxy."
metadata:
openclaw:
requires:
env:
- EVO_CRM_URL
- EVO_CRM_TOKEN
bins:
- python3
primaryEnv: EVO_CRM_TOKEN
files:
- "scripts/*"Evo CRM
Interact with your Evo AI CRM instance directly via the REST API.
Setup (one-time)
1. Get your API access token from your CRM admin panel. 2. Set environment variables:
EVO_CRM_URL=https://api.evoai.app
EVO_CRM_TOKEN=your_api_access_token
Commands
Contacts
List contacts
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py contacts [--sort name] [--page 1]
Get contact details
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py contact <id>
Search contacts
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py search_contacts --q <term>
Filter contacts (advanced)
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py filter_contacts --payload '{"attribute_key":"city","filter_operator":"equal_to","values":["NYC"]}'Create contact
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py create_contact --name "John Doe" [--email john@example.com] [--phone +5511999999999]
Update contact
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py update_contact <id> [--name "New Name"] [--email new@example.com] [--phone +5511999999999]
Delete contact
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py delete_contact <id>
Contact conversations
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py contact_conversations <id>
Contact notes
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py contact_notes <id>
Create contact note
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py create_contact_note <id> --content "Note text here"
Contact pipelines
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py contact_pipelines <id>
Conversations
List conversations
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py conversations [--status open] [--assignee_type all] [--inbox_id <id>] [--page 1]
Get conversation details
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py conversation <id>
Search conversations
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py search_conversations --q <term>
Filter conversations (advanced)
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py filter_conversations --payload '{"status":"open"}' [--page 1]Conversation counts by status
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py conversation_meta [--status open] [--assignee_type all]
Create conversation
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py create_conversation --contact_id <id> --inbox_id <id>
Assign conversation
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py assign_conversation <id> --assignee_id <user_id>
Toggle conversation status
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py toggle_status <id> --status resolved
Toggle conversation priority
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py toggle_priority <id> --priority urgent
Mute/Unmute conversation
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py mute_conversation <id>
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py unmute_conversation <id>
Mark conversation as unread
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py mark_unread <id>
Send conversation transcript
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py send_transcript <id> --email user@example.com
Messages
List messages in conversation
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py messages <conversation_id>
Send message (or private note)
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py create_message <conversation_id> --content "Hello" [--private]
Update message
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py update_message <conversation_id> <message_id> --content "Updated text"
Delete message
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py delete_message <conversation_id> <message_id>
Retry failed message
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py retry_message <conversation_id> <message_id>
Inboxes
List all inboxes
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py inboxes
Get inbox details
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py inbox <id>
List inbox agents
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py inbox_agents <inbox_id>
Get assignable agents
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py assignable_agents <inbox_id>
List inbox message templates
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py inbox_templates <inbox_id>
Pipelines
List all pipelines
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py pipelines
Get pipeline details
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py pipeline <id>
Pipeline stats
python3 /mnt/skills/user/int-
Read more
name: int-evo-crm
description: "Query and manage Evo AI CRM data via REST API. Use when you need to list/search contacts, conversations, messages, inboxes, pipelines (with stages and items), or labels. Supports filtering, pagination, creating/updating/deleting resources. Calls the CRM API directly with no third-party proxy."
metadata:
openclaw:
requires:
env:
- EVO_CRM_URL
- EVO_CRM_TOKEN
bins:
- python3
primaryEnv: EVO_CRM_TOKEN
files:
- "scripts/*"Evo CRM
Interact with your Evo AI CRM instance directly via the REST API.
Setup (one-time)
1. Get your API access token from your CRM admin panel. 2. Set environment variables:
EVO_CRM_URL=https://api.evoai.app EVO_CRM_TOKEN=your_api_access_token
Commands
Contacts
List contacts
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py contacts [--sort name] [--page 1]
Get contact details
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py contact <id>
Search contacts
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py search_contacts --q <term>
Filter contacts (advanced)
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py filter_contacts --payload '{"attribute_key":"city","filter_operator":"equal_to","values":["NYC"]}'Create contact
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py create_contact --name "John Doe" [--email john@example.com] [--phone +5511999999999]
Update contact
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py update_contact <id> [--name "New Name"] [--email new@example.com] [--phone +5511999999999]
Delete contact
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py delete_contact <id>
Contact conversations
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py contact_conversations <id>
Contact notes
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py contact_notes <id>
Create contact note
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py create_contact_note <id> --content "Note text here"
Contact pipelines
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py contact_pipelines <id>
Conversations
List conversations
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py conversations [--status open] [--assignee_type all] [--inbox_id <id>] [--page 1]
Get conversation details
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py conversation <id>
Search conversations
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py search_conversations --q <term>
Filter conversations (advanced)
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py filter_conversations --payload '{"status":"open"}' [--page 1]Conversation counts by status
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py conversation_meta [--status open] [--assignee_type all]
Create conversation
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py create_conversation --contact_id <id> --inbox_id <id>
Assign conversation
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py assign_conversation <id> --assignee_id <user_id>
Toggle conversation status
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py toggle_status <id> --status resolved
Toggle conversation priority
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py toggle_priority <id> --priority urgent
Mute/Unmute conversation
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py mute_conversation <id> python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py unmute_conversation <id>
Mark conversation as unread
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py mark_unread <id>
Send conversation transcript
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py send_transcript <id> --email user@example.com
Messages
List messages in conversation
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py messages <conversation_id>
Send message (or private note)
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py create_message <conversation_id> --content "Hello" [--private]
Update message
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py update_message <conversation_id> <message_id> --content "Updated text"
Delete message
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py delete_message <conversation_id> <message_id>
Retry failed message
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py retry_message <conversation_id> <message_id>
Inboxes
List all inboxes
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py inboxes
Get inbox details
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py inbox <id>
List inbox agents
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py inbox_agents <inbox_id>
Get assignable agents
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py assignable_agents <inbox_id>
List inbox message templates
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py inbox_templates <inbox_id>
Pipelines
List all pipelines
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py pipelines
Get pipeline details
python3 /mnt/skills/user/int-evo-crm/scripts/evo_crm_client.py pipeline <id>
Pipeline stats
python3 /mnt/skills/user/int-
Other skills on evo-nexus.
- /ai-image-creator
Generate PNG images using AI (multiple models via OpenRouter including Gemini, FLUX.2, Riverflow, SeedDream, GPT-5 Image, proxied through Cloudflare AI Gateway BYOK). Also analyze/describe existing images using multimodal AI vision. Use when user asks to "generate an image",
Open skill - /create-agent
Create a new custom agent for the workspace. Guides the user through defining agent name, domain, personality, skills, model, and memory folder. Use when the user says 'create an agent', 'new agent', 'add an agent', 'I need a custom agent', or wants to create a specialized agent
Open skill - /create-command
Create a new slash command for Claude Code. Guides the user through defining the command name, what it does, and generates the markdown file in .claude/commands/. Use when the user says 'create a command', 'new command', 'add a slash command', 'I want a shortcut for', or wants
Open skill - /create-goal
Create a Mission, Project, or Goal (Mission → Project → Goal → Task hierarchy) in EvoNexus. Guides the user through picking a mission, choosing or creating a project, defining a measurable goal with metric_type and target_value. Writes to the SQLite goals tables via POST
Open skill - /create-heartbeat
Create a new heartbeat (proactive agent scheduled with a decision prompt) for EvoNexus. Guides the user through picking an agent, setting interval, wake triggers, and the decision prompt that governs when the agent acts. Writes to config/heartbeats.yaml with pydantic validation.
Open skill - /create-integration
Create a new custom integration (API/service wrapper) for the workspace. Guides the user through defining the integration's slug, display name, description, category, and required env keys. Writes .claude/skills/custom-int-{slug}/SKILL.md via POST /api/integrations/custom. Use
Open skill

