From saber-skills
Build a target account list and run company signals against it. Works with the Saber CLI, Apollo, HubSpot, or any available prospecting tool — with a manual fallback.
How this skill is triggered — by the user, by Claude, or both
Slash command
/saber-skills:build-account-listThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to build a list of target accounts and optionally run signals against them.
Use this skill to build a list of target accounts and optionally run signals against them. The Saber CLI is the preferred path, but the skill works with Apollo, HubSpot, or manual research if you don't have it.
Summarise the account criteria from conversation context (ICP, extract-icp output, or ask):
Ask the user to confirm or adjust before proceeding.
Check what's available and take the best path:
Run saber --help to confirm the CLI is installed.
Option 1 — Filter-based list (Saber finds matching companies)
saber list company create --name "<list name>" --industry "<industry>" --country "<country>" --size "<size range>"
Filter formats:
--industry: lowercase, e.g. restaurants, food & beverages, hotels and motels--size: 1-10, 11-50, 51-200, 201-500, 501-1K, 1K-5K, 5K-10K, 10K+--country: ISO 3166-1 alpha-2, e.g. GB, DE, NL--technology: technology slugs, e.g. hubspot, salesforce, stripeImportant: if using --technology, always run count-preview first — it shows how many companies match and the credit cost before charging anything:
saber list company count-preview --technology "<slug>" [--industry] [--country] [--size]
Show the result and ask the user to confirm before creating.
Option 2 — Import from HubSpot
saber list company import --name "<list name>" --property <property> --operator EQ --value "<value>"
Option 3 — Empty list (user adds companies via dashboard)
saber list company create --name "<list name>"
Use Apollo to search for matching companies with equivalent filters:
If Saber CLI is also available, import the Apollo results into Saber:
saber list company import --name "<list name>" --property domain --operator EQ --value "<domain>"
# repeat per domain, or ask the user to bulk-add via the dashboard
Pull companies from HubSpot matching the ICP criteria using the HubSpot MCP:
Search HubSpot companies where industry = [X], numberofemployees between [Y] and [Z]
Export or work with the results directly. If Saber CLI is available, import into Saber for signal activation.
If no prospecting tools are available:
| Company | Domain | Industry | Employees | Country |
|---------|--------|----------|-----------|---------|
| Acme | acme.com | SaaS | 150 | NL |
| ... | | | | |
When ready, suggest importing this list into Saber or another signal tool.
Show the list summary (name, company count) and ask the user to confirm before activating signals.
Before running signals across the full list, test a sample of the first 10 companies to validate signal quality without spending credits on the full list:
saber list company companies <listId> --limit 10
saber signal --domain <domain> --question "<question>" --answer-type boolean --no-wait
saber signal get <signalId>
Present the 10 results and ask: do the signals look accurate? Any false positives? Proceed?
If approved signals are available in conversation context, offer to run them using create-company-signals.
After signals are activated, offer to wire up native scoring for the list so fit + urgency compute automatically as signals fire. Skip this step if the list is empty.
"Want this list to be scored automatically? I can assign a scoring profile to every account on it."
If the user agrees:
List existing company-scoped scoring profiles:
saber scoring profile list
Filter to type = company and show the user. If none exist, route to configure-scoring to create one, then return here.
Pull the list's domains:
saber list company companies <listId>
Bulk-assign — one call, repeat --object per domain:
saber scoring assignment bulk --profile <profileId> --type company \
--object acme.com --object stripe.com ...
Compute kicks off automatically when assignments are created. From this point on, scores stay fresh via auto-trigger as signals complete — no recurring action needed. See _shared/scoring.md for details.
saber list company count-preview [--technology] [--industry] [--country] [--size]
saber list company create --name "<name>" [--industry] [--country] [--size] [--technology]
saber list company import --name "<name>" --property <property> --operator EQ --value "<value>"
saber list company get <listId>
saber list company list
saber scoring profile list
saber scoring assignment bulk --profile <id> --type company --object <domain> ...
npx claudepluginhub saberapp/saber-marketplace --plugin saber-skillsCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.