Build Smart Lists
Analysis
The skill is aligned with creating HubSpot marketing lists, but it includes an API script that uses an undeclared HubSpot token and implements different, less protective list logic than the instructions describe.
Findings (4)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Create 10 core HubSpot lists via the Lists API (v3). ... All lists are DYNAMIC (auto-updating smart lists).
The script is designed to create HubSpot objects through an external API. That mutation authority is aligned with the skill's purpose, but it is high-impact and not reflected in the declared requirements/capabilities.
"name": "All Marketing Contacts", ... "property": "hs_marketable_status", ... "value": "true"
SKILL.md describes the master sendable list as including unsubscribe, bounce, known-email, and quarantine exclusions, but the script's corresponding marketing-contact list only shows the marketable-status filter. This creates a misleading gap between the documented safety logic and the automated implementation.
# dependencies = [ # "requests>=2.31", # "python-dotenv>=1.0", # ]
The script declares Python dependencies using minimum-version ranges, while the install metadata says there is no install spec. This is not suspicious by itself, but users should know extra packages are needed if they run the script.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
TOKEN = os.environ["HUBSPOT_ACCESS_TOKEN"]
HEADERS = {
"Authorization": f"Bearer {TOKEN}",The included script requires a HubSpot access token and uses it as a bearer credential, but the registry metadata declares no required environment variables and no primary credential.
