Skip to content
Development
Skill

/opportunities

Salesbuildr opportunities: pipeline search, opportunity creation, stage updates, and deal values, plus how opportunities link companies and contacts to potential revenue.

From plugin
msp-claude-plugins
46200 skills146 agents200 commands4 MCP
Install
$ npx -y skills add wyre-technology/msp-claude-plugins --skill opportunities --agent claude-code

How 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/opportunities

Context preview

The summary Claude sees to decide when to auto-load this skill.

Salesbuildr opportunities: pipeline search, opportunity creation, stage updates, and deal values, plus how opportunities link companies and contacts to potential revenue.

SKILL.md

opportunities.SKILL.md
name: "SalesBuildr Opportunities"
description: >
  Salesbuildr opportunities: pipeline search, opportunity creation, stage
  updates, and deal values, plus how opportunities link companies and
  contacts to potential revenue.
when_to_use: >-
  When managing the Salesbuildr sales pipeline. Use when: salesbuildr
  opportunity, salesbuildr opportunities, salesbuildr pipeline, salesbuildr
  deal, sales pipeline, create opportunity salesbuildr, or opportunity
  stage.

Salesbuildr Opportunities

Overview

Opportunities represent potential deals in the sales pipeline. Each opportunity is linked to a company and optionally a contact, with a value, stage, and expected close date.

Anti-triggers

  • **The priced breakdown behind the opportunity** — an opportunity carries a

single value, not line items; use `salesbuildr-quotes`.

  • **HubSpot deals** — the same pipeline concept in a different CRM; use

`hubspot-deals`.

Search Opportunities

GET /opportunities?search=<term>&company_id=<id>&status=<status>&from=0&size=25

Parameters:

  • `search` - Search by opportunity name
  • `company_id` - Filter by company
  • `status` - Filter by status
  • `from` - Pagination offset
  • `size` - Results per page

Get Opportunity by ID

GET /opportunities/{id}

Create Opportunity

POST /opportunities

{
  "name": "Q1 Infrastructure Refresh",
  "company_id": 12345,
  "contact_id": 67890,
  "value": 25000,
  "stage": "proposal",
  "expected_close_date": "2026-03-31"
}

Required fields: `name`, `company_id`

Update Opportunity

PATCH /opportunities/{id}

{
  "stage": "negotiation",
  "value": 28000
}

Common Workflows

Create Pipeline Entry

1. Find company: `GET /companies?search=customer name` 2. Find contact: `GET /contacts?company_id=12345` 3. Create opportunity: `POST /opportunities`

Update Deal Stage

1. Find opportunity: `GET /opportunities?search=deal name` 2. Update stage: `PATCH /opportunities/{id}`

Read more
Ships withmsp-claude-plugins

One command to supercharge Claude Code for MSP workflows. Then restart Claude Code. That's it. Documentation: mcp.wyre.ai

Get the whole plugin

Other skills on msp-claude-plugins.