Agent skill
zoho-crm
Manage Zoho CRM — leads, contacts, deals, and accounts via the REST API.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/zoho-crm
Metadata
Additional technical details for this skill
- thinkfleetbot
-
{ "emoji": "\ud83d\udcca", "requires": { "env": [ "ZOHO_ACCESS_TOKEN", "ZOHO_API_DOMAIN" ], "bins": [ "curl", "jq" ] } }
SKILL.md
Zoho CRM
Manage leads, contacts, deals, and accounts.
Environment Variables
ZOHO_ACCESS_TOKEN- OAuth access tokenZOHO_API_DOMAIN- API domain (e.g.https://www.zohoapis.com)
List leads
curl -s -H "Authorization: Zoho-oauthtoken $ZOHO_ACCESS_TOKEN" \
"$ZOHO_API_DOMAIN/crm/v5/Leads?per_page=10" | jq '.data[] | {id, Full_Name, Email, Company, Lead_Status}'
List deals
curl -s -H "Authorization: Zoho-oauthtoken $ZOHO_ACCESS_TOKEN" \
"$ZOHO_API_DOMAIN/crm/v5/Deals?per_page=10" | jq '.data[] | {id, Deal_Name, Amount, Stage}'
Create lead
curl -s -X POST -H "Authorization: Zoho-oauthtoken $ZOHO_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
"$ZOHO_API_DOMAIN/crm/v5/Leads" \
-d '{"data":[{"Last_Name":"Doe","First_Name":"John","Email":"[email protected]","Company":"Acme"}]}' | jq '.data[]'
Notes
- Always confirm before creating or updating records.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?