From salesbuildr
Searches companies and contacts in Salesbuildr CRM by term or ID, filters contacts by company, retrieves details, and creates new contacts with required fields like first_name, last_name, company_id.
How this skill is triggered — by the user, by Claude, or both
Slash command
/salesbuildr:companies-contactsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Companies and contacts are the foundation of the Salesbuildr CRM. Companies represent organizations (customers, prospects), while contacts are individuals associated with companies.
Companies and contacts are the foundation of the Salesbuildr CRM. Companies represent organizations (customers, prospects), while contacts are individuals associated with companies.
GET /companies?search=<term>&from=0&size=25
Parameters:
search - Search term for company namefrom - Pagination offsetsize - Results per page (max 100)GET /companies/{id}
Returns full company details including address, phone, and metadata.
GET /contacts?search=<term>&company_id=<id>&from=0&size=25
Parameters:
search - Search by name or emailcompany_id - Filter contacts to a specific companyfrom - Pagination offsetsize - Results per page (max 100)GET /contacts/{id}
POST /contacts
{
"first_name": "Jane",
"last_name": "Smith",
"email": "[email protected]",
"company_id": 12345,
"phone": "555-0100"
}
Required fields: first_name, last_name, company_id
GET /companies?search=acmeGET /contacts?company_id=12345GET /companies?search=company namePOST /contacts with company_idnpx claudepluginhub wyre-technology/msp-claude-plugins --plugin salesbuildrSearches for and retrieves contact records from the Carta CRM. Use for finding people by name, email, or ID, listing contacts, or looking up details including deals and notes.
Manages Salesbuildr sales opportunities: search pipelines, create new ones, update stages/values, link to companies/contacts.
Manages Attio CRM companies, contacts, notes, and deals via Python scripts: search/get companies, create/update records, add notes, parse URLs. For CRM automation.