Files
optimclaw/skills/close/SKILL.md
T
[email protected]andClaude Opus 4.6 7d31d68f6f feat(skills): add 245 Pica integration skills covering full catalog
Add SKILL.md files for all 252 Pica platform integrations (245 new,
7 internal skills already existed). Covers the full Pica catalog:

- CRM: attio, close, freshdesk, gorgias, hubspot, intercom, klaviyo, zoho, etc.
- Communication: bluesky, linked-in, meta, x, teams, twilio, ring-central, etc.
- DevOps: git-lab, circle-ci, netlify, render, n8n, neon, ngrok, posthog, etc.
- AI/LLM: anthropic, deep-seek, gemini, perplexity, open-router, x-ai
- E-commerce: big-commerce, shopify-admin, shopify-storefront, square, woocommerce
- Payments: chargebee, paystack, square, stripe
- Email: sendgrid, mailchimp-marketing, mailgun, loops
- And 190+ more across all categories

~83 skills have detailed API docs (base URLs, example http() calls, notes).
~122 skills have auth setup and credential config from Pica metadata.

Skills are embedded into the binary at compile time via the bundling
infrastructure added to v2-architecture, making them available on
every IronClaw install without needing ClawHub.

Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
2026-03-27 20:16:12 -07:00

1.5 KiB

name, version, description, activation
name version description activation
close 1.0.0 Close API — Close is a sales engagement CRM designed to help inside sales teams close more d
keywords patterns tags max_context_tokens
close
crm
(?i)close
crm
sales
contacts
CRM
1200

Close API

Use the http tool. OAuth credentials are automatically injected — never construct Authorization headers manually.

Base URL

https://api.close.com/api/v1

Actions

List leads:

http(method="GET", url="https://api.close.com/api/v1/lead/?_limit=10")

Get lead:

http(method="GET", url="https://api.close.com/api/v1/lead/{lead_id}/")

Create lead:

http(method="POST", url="https://api.close.com/api/v1/lead/", body={"name": "Acme Corp","contacts": [{"name": "John Doe","emails": [{"email": "[email protected]","type": "office"}]}]})

Search leads:

http(method="POST", url="https://api.close.com/api/v1/data/search/", body={"query": {"type": "and","queries": [{"type": "field_condition","field": {"field_name": "lead_name"},"condition": {"type": "text","mode": "full_words","value": "Acme"}}]},"results_limit": 10})

List activities:

http(method="GET", url="https://api.close.com/api/v1/activity/?_limit=10")

Notes

  • Uses API key as Basic auth username (no password).
  • Lead IDs start with lead_.
  • Activities: EmailThread, Call, SMS, Note, Meeting.
  • Pagination: _skip and _limit params.