CRM-in-a-Box

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

Users may wrongly trust the CRM as tamper-evident or audit-secure when the provided artifacts only show ordinary editable JSON files.

Why it was flagged

This is a strong integrity and tamper-evidence claim, but the provided CRM schemas and files do not include hash fields, hash-chain verification steps, or code that would cryptographically link entries.

Skill content
**Hash-chained** — every entry is cryptographically linked
Recommendation

Do not rely on hash-chain or tamper-evidence claims unless you add or verify an actual hashing and verification mechanism.

What this means

An agent using this skill can add or change contact, pipeline, and interaction records in the chosen CRM directory.

Why it was flagged

The skill tells the agent to write to CRM data files. This is expected for a CRM, but it is still mutation authority over business records.

Skill content
- **Log a contact:** append a JSON line to `contacts.ndjson`
- **Update a stage:** append an updated entry to `pipeline.ndjson`
Recommendation

Use this only in a designated CRM folder, keep backups or version control, and ask the agent to show diffs before important updates.

What this means

Private contact and sales information could remain in local files or be exposed if the CRM directory is synced, committed, or shared.

Why it was flagged

The CRM stores personal contact details and business notes in persistent local files that may later be searched or reused by an agent.

Skill content
"email": "jane@example.com", "phone": "+1-555-0100", "notes": "Referred by John."
Recommendation

Keep CRM repositories private, avoid committing sensitive records to public remotes, and define retention or redaction practices.

What this means

If users rely on the external repository, they may run or import content that was not part of this reviewed artifact set.

Why it was flagged

The README points users to an external repository, while this package itself has no install spec or reviewed executable code. The clone command is user-directed, not automatic.

Skill content
git clone https://github.com/taylorhou/crm-in-a-box
Recommendation

Verify the external repository and its files before cloning, running commands, or using it as the source of CRM templates.