agentsclimarketplace

Hubspot tickets

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

Your AI Agent's Gateway to HubSpot CRM

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

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 manage HubSpot CRM tickets (support cases, service desk issues, customer requests) via the `hubspot` command-line tool.

SKILL.md

2.4 KB, as published. Nobody here has run it

HubSpot Tickets (via hubspot CLI)

Tickets represent customer service cases. They live in a ticket pipeline and move through stages (New → Waiting on contact → Waiting on us → Closed).

Auth

Set HUBSPOT_ACCESS_TOKEN. Optional --profile <name>.

Canonical commands

IntentCommand
List open ticketshubspot crm tickets list --limit 20 --properties subject,hs_pipeline_stage,hs_ticket_priority
Get by IDhubspot crm tickets get 12345
Createhubspot crm tickets create --subject "Login broken" --content "User reports 500" --priority HIGH
Create from JSONhubspot crm tickets create --properties '{"subject":"Login broken","hs_pipeline":"0","hs_pipeline_stage":"1","hs_ticket_priority":"HIGH"}'
Update stagehubspot crm tickets update 12345 --properties '{"hs_pipeline_stage":"4"}'
Closehubspot crm tickets update 12345 --properties '{"hs_pipeline_stage":"4","hs_resolution":"RESOLVED"}'
Deletehubspot crm tickets delete 12345 --yes
Search by priorityhubspot crm tickets search --filter-groups '[{"filters":[{"propertyName":"hs_ticket_priority","operator":"EQ","value":"HIGH"}]}]'
Open tickets onlyhubspot crm tickets search --filter-groups '[{"filters":[{"propertyName":"hs_pipeline_stage","operator":"NEQ","value":"4"}]}]'

Pipelines and stages

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

Ticket stage IDs are numeric strings ("1", "2", "3", "4"), unlike deal stages which are named.

Common properties

subject, content, hs_pipeline, hs_pipeline_stage, hs_ticket_priority (LOW|MEDIUM|HIGH), hs_ticket_category, hubspot_owner_id, source_type, createdate.

Associating tickets

hubspot crm associations create tickets 12345 contacts 67890
hubspot crm associations create tickets 12345 companies 54321
hubspot crm associations create tickets 12345 deals 11111

Scopes

  • Read: tickets
  • Write: tickets

Tips

  • If hs_pipeline is omitted on create, HubSpot uses the default ticket pipeline — fine for most cases.
  • hs_resolution is free text; standardize on values the team already uses.

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.