demoverse: Skill for Claude Code

.claude/skills/import-hubspot/SKILL.md

import-hubspot is a skill for Claude Code from calven-ai/demoverse. It costs 74 tokens per session (1,063 once invoked), scanned A, original, MIT.

A fixed procedure for importing sample companies, contacts, deals, and their relationships into a HubSpot test account. HubSpot is a customer-relationship management system used to store sales and customer records.

In plain words
What is it for?
Use it to seed, refresh, or verify the demo CRM data in HubSpot using the required access token and predefined commands.
Why use it?
It makes test-data imports repeatable and verifiable, and stops when required setup or checks fail.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is calven-ai/demoverse's own configuration. It tells Claude Code how to work on demoverse itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything demoverse configures →

Reuse

Borrowing it

Nothing to install: this file belongs to calven-ai/demoverse. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/calven-ai/demoverse/main/.claude/skills/import-hubspot/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/calven-ai/demoverse

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for import-hubspot

README.md
[![agentmods](https://agentmods.dev/badge/skills/calven-ai/demoverse/import-hubspot/github.svg)](https://agentmods.dev/skills/calven-ai/demoverse/import-hubspot)
Your own site
<a href="https://agentmods.dev/skills/calven-ai/demoverse/import-hubspot"><img src="https://agentmods.dev/badge/skills/calven-ai/demoverse/import-hubspot/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for import-hubspot

Your own site · 80×15
<a href="https://agentmods.dev/skills/calven-ai/demoverse/import-hubspot"><img src="https://agentmods.dev/badge/skills/calven-ai/demoverse/import-hubspot.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,063 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00074 $0.01063
Opus 5 $0.00037 $0.00531
Sonnet 5 $0.00015 $0.00213
Haiku 4.5 $0.00007 $0.00106

Measured 11d ago against content hash b24969c2a2b6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

import-hubspot scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/import-hubspot/SKILL.md · 93 lines

How it starts

The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/import-hubspot

Everything here is deterministic. Never hand-edit state/world.json, HubSpot records, or the mapping code to "fix" a result. If a step fails, stop and report it. This skill is designed to be run by a lightweight model: read each command's output, act on it exactly as instructed, and don't improvise.

Preconditions

  • HUBSPOT_ACCESS_TOKEN must be set in .env. That is a HubSpot private-app access token. See docs/connectors/hubspot.md for the required scopes. If it's missing, every command below fails fast with a clear message. Report that and stop. Do not invent a token or guess scopes.
  • state/world.json must exist (npm run init was already run). If not, stop and report. Do not create or edit the ledger yourself.

Steps

  1. Provision the schema (idempotent, so it is safe to always run first):

    npm run hubspot:setup
    

    Confirm it prints Done. created=… existing=… with no error. Any thrown error (e.g. "exists but is not unique") means a property was hand-created in HubSpot incorrectly. Report the exact message and stop.

  2. Preflight the import with --dry-run for the scope you were asked to run (pick exactly one; never mix flags across scopes):

    If asked to… Scope flags
    smoke-test the connector (no flags). Bounded pilot, 3 accounts × 3 deals
    debug one deal --opp=<id>
    import everything --all
    npm run hubspot:import -- --all --dry-run
    

    Read the printed company/contact/deal counts. If they look wildly wrong (e.g. 0 accounts for --all), stop and report. Do not proceed to a write.

  3. Run the real import (same scope flags, no --dry-run):

    npm run hubspot:import -- --all
    

    This is idempotent. Rerunning it, even after a partial failure, updates existing records by demo_world_id rather than duplicating them. Rerunning the same command is always safe. Read the summary block:

    • errors=0 → proceed to step 4.
    • errors>0 → the per-error lines below the summary are the message to report verbatim. Do not attempt to reinterpret or silently retry more than once. If a rerun doesn't reduce the error count, stop and report.
    • Note the printed run-report path (runs/hubspot-import-*.json) in your final report to the operator.

Read the full file on GitHub · 93 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 93 lines · 74 tokens per session scan A b24969c2a2b6

Subscribe to this mod's changes

import-hubspot is a skill published in the GitHub repository calven-ai/demoverse (4 stars, last pushed today), licensed MIT. It adds 74 tokens to every session and 1,063 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

afrexai-lead-hunter

Enterprise-grade B2B lead generation, enrichment, scoring, and outreach sequencing for AI agents. Find ideal prospects, enrich with verified data, score against your ICP, and generate personalized outreach — all autonomously.

LeoYeAI/openclaw-master-skills · 50 tokens

b2b-sdr-agent

Autonomous AI Sales Development Rep for B2B export — handles lead discovery, BANT qualification, multi-channel outreach (WhatsApp/Email/Telegram), CRM management, and deal pipeline tracking. Built for cross-border trade.

iPythoning/b2b-sdr-hermes-skill · 52 tokens

gt-email-infra

Email Infrastructure & Deliverability by Growth Today (growthtoday.co). Expert cold-email infrastructure and deliverability strategist. Use for infrastructure sizing, domain research and purchasing, DNS and auth (MX/SPF/DKIM/DMARC), masking versus redirect, mailbox provisioning, Instantly inbox setup and warmup, going…

Growth-Today/claude-skills · 0 tokens

gt-linkedin-content

A specialist for organic LinkedIn content aimed at B2B founders and GTM teams. Reach for it on anything across the LinkedIn writing workflow, opening lines and hooks, post structure and storytelling, format choice, posting cadence and timing, comments and engagement, CTAs and comment-gates, profile optimization…

Growth-Today/claude-skills · 227 tokens

gt-linkedin-outbound

Expert LinkedIn outbound strategist for B2B campaigns by Growth Today (growthtoday.co). Use for LinkedIn cold outreach, DM writing, connection requests, message sequences, personalization, copywriting frameworks, rented engine setup (multi-account infrastructure, daily limits, restrictions, anti-detect browsers…

Growth-Today/claude-skills · 235 tokens

email-infra-bounce-audit

Audit a bounce or blacklist problem to root cause and produce a full bounce report. Use for pulling replies via the EmailBison MCP/API, working around the broken type=bounced filter, stripping auto-replies, classifying bounces (Hard/Soft/Block) by SMTP/DSN code, running the neutral-copy test, and tracing the cause to…

Growth-Today/claude-skills · 157 tokens