Skills copper
Copper CRM integration — manage people, companies, opportunities, projects, tasks, and activities via the Copper REST API. Google Workspace native CRM with relationship intelligence. Built for AI agents — Python stdlib only, zero dependencies. Use for CRM management, deal tracking, relationship mapping, project management, and sales pipeline automation.
git clone https://github.com/openclaw/skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/aiwithabidi/copper" ~/.claude/skills/openclaw-skills-copper && rm -rf "$T"
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/aiwithabidi/copper" ~/.openclaw/skills/openclaw-skills-copper && rm -rf "$T"
skills/aiwithabidi/copper/SKILL.md🟤 Copper CRM
Copper CRM integration — manage people, companies, opportunities, projects, tasks, and activities via the Copper REST API.
Features
- People management — contacts with full CRUD and search
- Company tracking — organizations, details, relationships
- Opportunity pipeline — deals, stages, values, win rates
- Project management — track projects with stages and tasks
- Task management — create, assign, complete tasks
- Activity logging — calls, meetings, notes on any record
- Relationship mapping — see connections between records
- Search across all entity types
- Custom fields — read and write custom field values
- Pipeline reports — value, velocity, conversion metrics
Requirements
| Variable | Required | Description |
|---|---|---|
| ✅ | API key/token for Copper CRM |
| ✅ | Your Copper account email |
Quick Start
# List people/contacts python3 {baseDir}/scripts/copper.py people --limit 20
# Get person details python3 {baseDir}/scripts/copper.py person-get 12345
# Create a person python3 {baseDir}/scripts/copper.py person-create '{"name":"Jane Doe","emails":[{"email":"jane@example.com"}]}'
# Update a person python3 {baseDir}/scripts/copper.py person-update 12345 '{"title":"VP Sales"}'
Commands
people
peopleList people/contacts.
python3 {baseDir}/scripts/copper.py people --limit 20
person-get
person-getGet person details.
python3 {baseDir}/scripts/copper.py person-get 12345
person-create
person-createCreate a person.
python3 {baseDir}/scripts/copper.py person-create '{"name":"Jane Doe","emails":[{"email":"jane@example.com"}]}'
person-update
person-updateUpdate a person.
python3 {baseDir}/scripts/copper.py person-update 12345 '{"title":"VP Sales"}'
companies
companiesList companies.
python3 {baseDir}/scripts/copper.py companies --limit 20
company-create
company-createCreate a company.
python3 {baseDir}/scripts/copper.py company-create '{"name":"Acme Corp"}'
opportunities
opportunitiesList opportunities.
python3 {baseDir}/scripts/copper.py opportunities --limit 20
opportunity-create
opportunity-createCreate opportunity.
python3 {baseDir}/scripts/copper.py opportunity-create '{"name":"Acme Deal","monetary_value":50000}'
projects
projectsList projects.
python3 {baseDir}/scripts/copper.py projects --limit 20
tasks
tasksList tasks.
python3 {baseDir}/scripts/copper.py tasks --limit 20 --status open
task-create
task-createCreate a task.
python3 {baseDir}/scripts/copper.py task-create '{"name":"Follow up","due_date":"2026-03-01"}'
activities
activitiesList activities for a record.
python3 {baseDir}/scripts/copper.py activities --person 12345
search
searchSearch across all records.
python3 {baseDir}/scripts/copper.py search "Acme"
pipelines
pipelinesList pipelines.
python3 {baseDir}/scripts/copper.py pipelines
pipeline-report
pipeline-reportPipeline summary report.
python3 {baseDir}/scripts/copper.py pipeline-report
Output Format
All commands output JSON by default. Add
--human for readable formatted output.
# JSON (default, for programmatic use) python3 {baseDir}/scripts/copper.py people --limit 5 # Human-readable python3 {baseDir}/scripts/copper.py people --limit 5 --human
Script Reference
| Script | Description |
|---|---|
| Main CLI — all Copper CRM operations |
Data Policy
This skill never stores data locally. All requests go directly to the Copper CRM API and results are returned to stdout. Your data stays on Copper CRM servers.
Credits
Built by M. Abidi | agxntsix.ai YouTube | GitHub Part of the AgxntSix Skill Suite for OpenClaw agents.
📅 Need help setting up OpenClaw for your business? Book a free consultation