Salesbuildr product catalog: product search, pricing lookup, category browsing, and how products become quote line items.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add WYRE-AI/msp-claude-plugins --skill products --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Products?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/wyre-ai-products-msp-claude-plugins)More formats (shields.io, HTML) on the badges page.
---
name: "SalesBuildr Products"
description: >
Salesbuildr product catalog: product search, pricing lookup, category
browsing, and how products become quote line items.
when_to_use: >-
When searching the Salesbuildr catalog or looking up product pricing. Use
when: salesbuildr product, salesbuildr products, salesbuildr catalog,
salesbuildr pricing, or product search salesbuildr.
---
# Salesbuildr Products
## Overview
The product catalog in Salesbuildr contains items that can be added to quotes. Products include hardware, software licenses, services, and any other billable items.
## Anti-triggers
- **What a product costs from the distributor** — this catalog holds sell
price; supplier SKUs and buy price are `kaseya-quote-manager-purchasing`.
- **A product already placed on a quote** — line items are copies with their
own quantity and price and diverge from the catalog; use
`salesbuildr-quotes`.
## Search Products
```
GET /products?search=<term>&category_id=<id>&from=0&size=25
```
Parameters:
- `search` - Search by product name
- `category_id` - Filter by category
- `from` - Pagination offset
- `size` - Results per page (max 100)
## Get Product by ID
```
GET /products/{id}
```
Returns full product details including pricing, description, and category.
## Key Fields
| Field | Description |
|-------|-------------|
| id | Unique product identifier |
| name | Product display name |
| description | Product description |
| price | Default unit price |
| category | Product category |
| sku | Stock keeping unit |
## Common Workflows
### Find Products for a Quote
1. Search for products: `GET /products?search=firewall`
2. Review pricing and descriptions
3. Note product IDs for quote creation
### Browse by Category
1. Search with category filter: `GET /products?category_id=5`
2. Page through results using from/size
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!