Lob

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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.

What this means

A user may install or authorize the skill thinking it is for one class of data while it can operate on Lob resources with different real-world and financial implications.

Why it was flagged

The skill description names CRM-style objects that do not match the Lob capabilities described later, which include direct mail, address verification, bank accounts, and checks.

Skill content
description: ... Manage Persons, Organizations, Deals, Leads, Projects, Activities ... Lob provides APIs for automating direct mail and address verification.
Recommendation

Correct the description to accurately list Lob capabilities and clearly call out sensitive operations such as bank accounts, checks, and sending physical mail.

What this means

The agent could use authenticated Lob API calls to create, modify, or delete Lob resources, potentially including mail, checks, or bank-account-related records.

Why it was flagged

The skill exposes a raw authenticated API proxy with mutating and deleting methods. The provided instructions do not bound this escape-hatch by endpoint, operation type, or explicit user confirmation.

Skill content
send requests directly to the Lob API through Membrane's proxy... injects the correct authentication headers ... HTTP method (GET, POST, PUT, PATCH, DELETE)
Recommendation

Prefer discovered Membrane actions, and require explicit user confirmation before any create, update, delete, send-mail, check, or bank-account operation.

What this means

Connecting the skill grants Membrane-mediated access to the user's Lob account until the connection is revoked or expires.

Why it was flagged

The integration depends on delegated account access and automatic credential refresh, which is expected for a Lob integration but sensitive.

Skill content
Membrane handles authentication and credentials refresh automatically ... The user completes authentication in the browser.
Recommendation

Use the least-privileged Lob account available, review what Membrane can access, and revoke the connection when it is no longer needed.

What this means

The CLI behavior can change after this skill review, and users are trusting the current npm package at install time.

Why it was flagged

The skill instructs installing and running the latest Membrane CLI from npm rather than a pinned reviewed version.

Skill content
npm install -g @membranehq/cli@latest ... npx @membranehq/cli@latest action list
Recommendation

Pin a specific CLI version when possible and install from the documented Membrane source.

What this means

Lob data handled through this skill may pass through Membrane as part of normal operation.

Why it was flagged

The skill routes Lob API calls through the Membrane proxy, so request data, responses, and credential use are mediated by an external service.

Skill content
send requests directly to the Lob API through Membrane's proxy ... Membrane automatically appends the base URL ... and injects the correct authentication headers
Recommendation

Only connect Lob accounts and send data that you are comfortable routing through Membrane, and review Membrane's access and retention policies.