Centralstationcrm

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill is a coherent CRM connector, but it should be reviewed because it can use delegated CRM access to create, update, delete, and send raw authenticated API requests without clear guardrails.

Before installing, verify the Membrane CLI source, connect only the intended CentralStationCRM account, and require manual confirmation for any create, update, delete, or raw proxy request. Prefer predefined read or query actions unless you specifically need a change.

Findings (3)

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.

ConcernMedium Confidence
ASI02: Tool Misuse and Exploitation
What this means

If used incorrectly, the agent could change or delete CRM business records or call API endpoints beyond the safer predefined actions.

Why it was flagged

The skill documents authenticated create/update/delete actions and a raw proxy that can send arbitrary CentralStationCRM API requests, including DELETE, without visible confirmation or scoping safeguards.

Skill content
Create Person ... Update Person ... Delete Person ... membrane request CONNECTION_ID /path/to/endpoint ... HTTP method (GET, POST, PUT, PATCH, DELETE)
Recommendation

Require explicit user approval before create, update, delete, or proxy requests; prefer predefined Membrane actions; preview the target record, method, path, and payload before running.

What this means

The connected account may allow the agent to read and modify customer or business records available through that CRM connection.

Why it was flagged

The integration relies on delegated Membrane/CentralStationCRM authentication and credential refresh. This is expected for the stated purpose, but it grants account-level access to CRM data.

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

Connect only the intended CRM account, use the least-privileged account available, and disconnect or revoke the Membrane connection when no longer needed.

What this means

Installing a global CLI gives that package code execution on the local system during installation and use.

Why it was flagged

The skill asks users to install a global, unpinned npm CLI package. This is central to the Membrane integration, but package source and version should be verified.

Skill content
npm install -g @membranehq/cli
Recommendation

Install the CLI only from the official package source, consider pinning a trusted version, and review the package provenance before use.