agentsclimarketplace

Hubspot deals

Skill dipankar/hubspot-cli/assets/skills/hubspot-deals

Your AI Agent's Gateway to HubSpot CRM

Install
npx -y skills add dipankar/hubspot-cli --skill hubspot-deals

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when the user wants to search, read, create, update, or manage HubSpot CRM deals (opportunities, pipeline revenue, deal stages) via the `hubspot` command-line tool.

SKILL.md

2.6 KB, as published. Nobody here has run it

HubSpot Deals (via hubspot CLI)

Deals track revenue opportunities through a sales pipeline. Each deal lives in a pipeline and a stage.

Auth

Set HUBSPOT_ACCESS_TOKEN. Optional --profile <name>.

Canonical commands

IntentCommand
Listhubspot crm deals list --limit 20 --properties dealname,amount,dealstage,closedate
Get by IDhubspot crm deals get 12345
Createhubspot crm deals create --dealname "Q2 Expansion" --amount 50000 --stageid appointmentscheduled
Create from JSONhubspot crm deals create --properties '{"dealname":"Q2","amount":"50000","pipeline":"default","dealstage":"appointmentscheduled"}'
Update stagehubspot crm deals update 12345 --properties '{"dealstage":"contractsent"}'
Close-wonhubspot crm deals update 12345 --properties '{"dealstage":"closedwon","closedate":"2025-06-01T00:00:00Z"}'
Deletehubspot crm deals delete 12345 --yes
Search by stagehubspot crm deals search --filter-groups '[{"filters":[{"propertyName":"dealstage","operator":"EQ","value":"closedwon"}]}]'
Open dealshubspot crm deals search --filter-groups '[{"filters":[{"propertyName":"dealstage","operator":"NOT_IN","values":["closedwon","closedlost"]}]}]'
Batch createhubspot crm deals batch-create --inputs '[...]'

Pipelines and stages

Deal stages are pipeline-specific. Always list them before creating or moving deals:

hubspot crm pipelines list deals
hubspot crm pipelines stages deals <pipeline_id>

Use the internal dealstage id (e.g. appointmentscheduled, qualifiedtobuy, contractsent, closedwon, closedlost), not the display label.

Common properties

dealname, amount, dealstage, pipeline, closedate, hubspot_owner_id, dealtype, description, hs_priority.

Associating deals

# Associate deal 12345 with contact 67890
hubspot crm associations create deals 12345 contacts 67890

# And with company 54321
hubspot crm associations create deals 12345 companies 54321

Output / errors

Standard {success, data, paging}. Error codes: AUTH_ERROR (3), VALIDATION_ERROR (5), NOT_FOUND (6), RATE_LIMIT (7).

Scopes

  • Read: crm.objects.deals.read
  • Write: crm.objects.deals.write

Tips

  • amount is a string (HubSpot returns all numeric properties as strings). Quote it in JSON.
  • closedate must be ISO-8601 UTC.
  • Use --output json-pretty only when the user explicitly wants to read the JSON.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.